index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
author | Jason Chu <jason@archlinux.org> | 2004-07-19 05:16:56 +0000 |
---|---|---|
committer | Jason Chu <jason@archlinux.org> | 2004-07-19 05:16:56 +0000 |
commit | c059be5326603350d4cd9f92decfce8f7c0f0056 (patch) | |
tree | 42470432a4186d676c3d780d6c9c3b64fa225c29 | |
parent | d023ac639b4c2b243c326fa5d167763b5f3a71fb (diff) |
-rwxr-xr-x | extrapkg | 39 |
diff --git a/extrapkg b/extrapkg new file mode 100755 index 0000000..1c641fc --- /dev/null +++ b/extrapkg @@ -0,0 +1,39 @@ +#!/bin/bash + +source /etc/makepkg.conf + +cmd=`basename $0` + +if echo *.pkg.tar.gz | grep ' ' >/dev/null 2>&1; then + echo "Too many packages in current dir" + exit 1 +fi + +if [ ! -f *.pkg.tar.gz ]; then + echo "No package file" + exit 1 +fi + +pkgfile=`echo *.pkg.tar.gz` +pkg=`echo *.pkg.tar.gz | rev | cut -d- -f 3- | rev` +ver=`echo *.pkg.tar.gz | rev | cut -d- -f -2 | rev | sed 's/\.pkg\.tar\.gz//'` +if [ "$cmd" == "extrapkg" ]; then + repo="extra" + tag="CURRENT" +elif [ "$cmd" == "currentpkg" ]; then + repo="current" + tag="CURRENT" +elif [ "$cmd" == "testingpkg" ]; then + repo="testing" + tag="TESTING" +elif [ "$cmd" == "unstablepkg" ]; then + repo="unstable" + tag="CURRENT" +fi + +scp $pkgfile archlinux.org:/home/ftp/$repo/os/$CARCH +echo "===> Uploaded $pkgfile" +cvs commit -m "upgpkg: $pkg $ver" > /dev/null +echo "===> Commited with \"upgpkg: $pkg $ver\" message" +cvs tag -c -F -R $tag > /dev/null +echo "===> Tagged as $tag" |