X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=rebuild;h=60d1db070e416be08b38f81dc138d22d53708111;hb=468c04aedfcff8394549bf7d71a60bc9497fdfdf;hp=326175aa4c7e472cf0b42415ae6e05f7fc3a65a3;hpb=6a85dfdab76f899eaaa36ecd7e8c4dad0ad045c3;p=apt-repository.git diff --git a/rebuild b/rebuild index 326175a..60d1db0 100755 --- a/rebuild +++ b/rebuild @@ -1,5 +1,5 @@ #!/bin/sh -SOURCES=sources +SOURCES=sources/equivs PACKAGES=public/packages mkdir -p $PACKAGES @@ -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 ../..