From 436fa72417f0d086347bcaa7256d5f83296bc6d6 Mon Sep 17 00:00:00 2001 From: Jameson Graef Rollins Date: Mon, 6 Apr 2009 21:59:59 -0700 Subject: add new util script to update the macports Portfile --- utils/build-macports-portfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 utils/build-macports-portfile (limited to 'utils') diff --git a/utils/build-macports-portfile b/utils/build-macports-portfile new file mode 100755 index 0000000..c5e6a48 --- /dev/null +++ b/utils/build-macports-portfile @@ -0,0 +1,9 @@ +#!/bin/bash -e + +PORTFILE="packaging/macports/Portfile" + +VERSION=`head -n1 packaging/debian/changelog | sed 's/.*(\([^-]*\)-.*/\1/'` +MD5=`md5sum monkeysphere_${VERSION}.orig.tar.gz | awk '{ print $1 }'` + +sed -i~ 's/^version.*$/version '"$VERSION"/ "$PORTFILE" +sed -i~ 's/^checksums.*$/checksums md5 '"$MD5"/ "$PORTFILE" -- cgit v1.2.3 From eb6efe735e1dbd7f5826998e3f88b6cc99c64d54 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Tue, 7 Apr 2009 02:41:01 -0400 Subject: additional notes to release manager about keeping track of non-debian ports. --- utils/build-releasenote | 2 ++ utils/preparing-release | 13 +++++++++++++ 2 files changed, 15 insertions(+) (limited to 'utils') diff --git a/utils/build-releasenote b/utils/build-releasenote index b25a87c..1dee649 100755 --- a/utils/build-releasenote +++ b/utils/build-releasenote @@ -39,3 +39,5 @@ set +e git add website/download.mdwn gpg --verify website/download.mdwn + +printf "please remember to add the new version to the bugtracker:\n https://labs.riseup.net/code/projects/settings/monkeysphere\n" diff --git a/utils/preparing-release b/utils/preparing-release index dd9d224..90dc200 100644 --- a/utils/preparing-release +++ b/utils/preparing-release @@ -14,3 +14,16 @@ * create debian-specific version tag: git tag -s -m 'Tagging Monkeysphere $whatever-1' monkeysphere_$whatever-1 + + * update FreeBSD and Macports info: + + make freebsd-distinfo + make macports-portsfile + + (probably should consider tagging these ports as well to make them + easy to recover) + + * remember to add the new version (n + 1) to the bugtracker if it's + not already: + + https://labs.riseup.net/code/projects/settings/monkeysphere -- cgit v1.2.3