From 3d85ecc049505911f72191f3b74700c0da28b569 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Tue, 12 Aug 2014 23:06:52 +0200 Subject: [PATCH] Add reprepro.sh --- scripts/reprepro.sh | 65 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 scripts/reprepro.sh diff --git a/scripts/reprepro.sh b/scripts/reprepro.sh new file mode 100644 index 0000000..2b91b8c --- /dev/null +++ b/scripts/reprepro.sh @@ -0,0 +1,65 @@ +#!/bin/sh + +BASEDIR=$HOME/debian +INCOMING=$BASEDIR/incoming +OUTDIR=$HOME/public_html/debian + +# +# Make sure we're in the apt/ directory +# +cd $INCOMING +cd .. + +#set -x +reprepro -V --basedir $BASEDIR --outdir $OUTDIR createsymlinks testing +reprepro -V --basedir $BASEDIR --outdir $OUTDIR createsymlinks wheezy +reprepro -V --basedir $BASEDIR --outdir $OUTDIR createsymlinks unstable +reprepro -V --basedir $BASEDIR --outdir $OUTDIR createsymlinks sid +# +# See if we found any new packages +# +found=0 +for i in $INCOMING/*.changes; do + if [ -e $i ]; then + found=`expr $found + 1` + fi +done +# +# If we found none then exit +# +if [ "$found" -lt 1 ]; then + exit +fi + + +# +# Now import each new package that we *did* find +# +for i in $INCOMING/*.changes; do + + # Import package to 'sarge' distribution. + reprepro -V --basedir $BASEDIR \ + --keepunreferencedfiles \ + --outdir $OUTDIR include unstable $i + + # Delete the referenced files + sed '1,/Files:/d' $i | sed '/BEGIN PGP SIGNATURE/,$d' \ + | while read MD SIZE SECTION PRIORITY NAME; do + + if [ -z "$NAME" ]; then + continue + fi + + + # + # Delete the referenced file + # + if [ -f "$INCOMING/$NAME" ]; then + rm "$INCOMING/$NAME" || exit 1 + fi + done + + # Finally delete the .changes file itself. + rm $i +done +