diff options
author | Justin Davis <jrcd83@gmail.com> | 2012-06-01 19:45:37 +0200 |
---|---|---|
committer | Justin Davis <jrcd83@gmail.com> | 2012-06-01 19:45:37 +0200 |
commit | e776ba2864c91696503443282958675501826678 (patch) | |
tree | caf31b9dd8b83580667bab9883b589424e82595c /misc | |
parent | d69b44bc8391f8adc3353e3778e291ff54e82e47 (diff) | |
download | genpkg-e776ba2864c91696503443282958675501826678.tar.gz genpkg-e776ba2864c91696503443282958675501826678.tar.xz |
Move pushpkgs helper script into misc/.
Diffstat (limited to 'misc')
-rwxr-xr-x | misc/pushpkgs | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/misc/pushpkgs b/misc/pushpkgs new file mode 100755 index 0000000..d8be2f3 --- /dev/null +++ b/misc/pushpkgs @@ -0,0 +1,59 @@ +#!/bin/sh + +prependid() +{ + sed -e '/^#/!{ + i\ +\# $Id$ + :loop + n + b loop + }' PKGBUILD >PKGBUILD.new + mv PKGBUILD.new PKGBUILD +} + +# Make sure that the package directories are added to the SVN repo. +svnadd() +{ + svn add --parents PKGBUILD ../repos + # Make sure that the Id keyword-property is active. + svn propset svn:keywords Id PKGBUILD +} + + +if [ -z "$REPODIR" ] +then + echo "Specify the destination directory with the REPODIR env var." 1>&2 + exit 1 +fi + +[ "$PKGDEST" ] || PKGDEST=~/pkg/dest + +cd "$PKGDEST" || exit $? +pkgdir=$(pwd) + +for pkg +do + if [ ! -d "$pkg" ] + then + echo "pkg/$pkg was not found." 1>&2 + continue + fi + + cd "$REPODIR" || exit 1 + svn update "$pkg" >/dev/null 2>&1 + if [ -d "$pkg" ] + then + rm -rf "$pkg/trunk/"* + fi + + mkdir -p "$pkg/"{trunk,repos} + cp -r -t "$pkg/trunk" "$PKGDEST/$pkg"/* + + cd "$pkg/trunk" + prependid + svnadd >/dev/null 2>&1 + echo "$REPODIR/$pkg" + + cd "$pkgdir" +done |