remove commitpkg2any

Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
This commit is contained in:
Francois Charette 2009-09-18 21:48:59 +02:00 committed by Aaron Griffin
parent a5651376b4
commit e1b0d23027
1 changed files with 0 additions and 33 deletions

View File

@ -1,33 +0,0 @@
#!/bin/bash
# This script commits an existing package as an 'any'
# package. It is simply to help aid in the conversion
# to any-based packages
if [ $# -ne 1 ]; then
echo "Syntax: $(basename $0) <repo>"
exit 1
fi
repo=$1
source PKGBUILD
sed -i 's|^arch=.\+$|arch=(any)|' PKGBUILD
svn commit -m "upgpkg: $pkgname $pkgver-$pkgrel
Converted to arch=any" > /dev/null
archrelease $repo-any
if [ $? -ne 0 ]; then
echo "Cancelled"
exit 1
fi
echo "===> Tagged for $repo-any"
pushd ..
svn rm $repo-i686
svn rm $repo-x86_64
svn commit -m "removed $repo-i686 and $repo-x86_64 for $pkgname"
popd
echo "Don't forget to run \"/arch/db-update $repo\" on gerolde"