X-Git-Url: https://git.stderr.nl/gitweb?p=apt-repository.git;a=blobdiff_plain;f=rebuild;fp=rebuild;h=95f7699d2c031de0123269b3bc5a759fbd6a1a9a;hp=326175aa4c7e472cf0b42415ae6e05f7fc3a65a3;hb=b04eb9d625d594481f2940a4e4c97bf6b4667430;hpb=17cf18c47b2ea2ea653a21147590230c54021a23 diff --git a/rebuild b/rebuild index 326175a..95f7699 100755 --- a/rebuild +++ b/rebuild @@ -7,15 +7,34 @@ mkdir -p $PACKAGES cd $PACKAGES for i in ../../$SOURCES/*; do + BASE=`basename "$i"` + if [ -d "$i" ]; then + echo "Skipping directory '$BASE'" + continue; + fi + if [ ! -f "$i" ]; then + echo "Skipping special file file '$BASE'" + continue; + fi + if [ ! -r "$i" ]; then + echo "Skipping non-readable file '$BASE'" + continue; + fi + VERSION=`cat $i | grep "^Version:" | sed "s/^Version: //"` PACKAGE=`cat $i | grep "^Package:" | sed "s/^Package: //"` - - if [ ! -f "${PACKAGE}_${VERSION}_all.deb" ]; then - echo "Building version $VERSION of $PACKAGE" - equivs-build $i - else + + if [ -z "${PACKAGE}" -o -z "${VERSION}" ]; then + echo "Skipping non-equivs file '$BASE'" + continue; + fi + if [ -f "${PACKAGE}_${VERSION}_all.deb" ]; then echo "Skipping $PACKAGE, version $VERSION already built" + continue; fi + + echo "Building version $VERSION of $PACKAGE" + equivs-build $i done cd ../..