commitpkg2any: New script

Added a script to convert an i686/x86_64 package to
an 'any' architecutre package in the SVN repos

Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
This commit is contained in:
François Charette 2009-05-06 12:38:40 -07:00 committed by Aaron Griffin
parent 2269e5c9c8
commit 1401d57115
1 changed files with 33 additions and 0 deletions

33
commitpkg2any Normal file
View File

@ -0,0 +1,33 @@
#!/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"