diff options
| author | Marek Majkowski <marek@rabbitmq.net> | 2010-06-18 11:29:49 +0000 |
|---|---|---|
| committer | Marek Majkowski <marek@rabbitmq.net> | 2010-06-18 11:29:49 +0000 |
| commit | d4251f5c0014be4a268bef5eab98f924305f85b3 (patch) | |
| tree | 639ecfc38cc5c02f3358ae7fc56364233e67d585 | |
| parent | a189733917b84c08ffc8d0069f7e1f6c7fafbaad (diff) | |
| parent | 037caf0dc29a3f1b965a1c72727b299cee38c743 (diff) | |
| download | rabbitmq-server-git-d4251f5c0014be4a268bef5eab98f924305f85b3.tar.gz | |
Merged bug18062 into default (macports stuff)
| -rw-r--r-- | packaging/macports/Portfile.in | 3 | ||||
| -rwxr-xr-x | packaging/macports/make-port-diff.sh | 27 |
2 files changed, 28 insertions, 2 deletions
diff --git a/packaging/macports/Portfile.in b/packaging/macports/Portfile.in index 153727be9a..b0158ab097 100644 --- a/packaging/macports/Portfile.in +++ b/packaging/macports/Portfile.in @@ -4,9 +4,8 @@ PortSystem 1.0 name rabbitmq-server version @VERSION@ -revision 1 categories net -maintainers rabbitmq.com:tonyg +maintainers paperplanes.de:meyer rabbitmq.com:tonyg openmaintainer platforms darwin description The RabbitMQ AMQP Server long_description \ diff --git a/packaging/macports/make-port-diff.sh b/packaging/macports/make-port-diff.sh new file mode 100755 index 0000000000..3eb1b9f589 --- /dev/null +++ b/packaging/macports/make-port-diff.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +# This script grabs the latest rabbitmq-server bits from the main +# macports subversion repo, and from the rabbitmq.com macports repo, +# and produces a diff from the former to the latter for submission +# through the macports trac. + +set -e + +dir=/tmp/$(basename $0).$$ +mkdir -p $dir/macports $dir/rabbitmq + +# Get the files from the macports subversion repo +cd $dir/macports +svn checkout http://svn.macports.org/repository/macports/trunk/dports/net/rabbitmq-server/ 2>&1 >/dev/null + +# Clear out the svn $id tag +sed -i -e 's|^# \$.*$|# $Id$|' rabbitmq-server/Portfile + +# Get the files from the rabbitmq.com macports repo +cd ../rabbitmq +curl -s http://www.rabbitmq.com/releases/macports/net/rabbitmq-server.tgz | tar xzf - + +cd .. +diff -Naur --exclude=.svn macports rabbitmq +cd / +rm -rf $dir |
