2021-08-31 16:23:09 +00:00
|
|
|
#!/bin/bash
|
2014-08-12 21:06:52 +00:00
|
|
|
|
2014-08-13 11:28:11 +00:00
|
|
|
BASEDIR=/var/lib/reprepro
|
|
|
|
INCOMING=/docker/incoming
|
2014-11-16 12:56:50 +00:00
|
|
|
OUTDIR=/repository/debian
|
2014-08-12 21:06:52 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Make sure we're in the apt/ directory
|
|
|
|
#
|
|
|
|
cd $INCOMING
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
#set -x
|
2021-08-31 14:22:07 +00:00
|
|
|
|
|
|
|
# Check for EASYREPO_SUITES to create symlinks
|
|
|
|
EASYREPO_SUITES="${EASYREPO_SUITES:-unstable,sid/stable,buster/testing,bullseye}"
|
|
|
|
|
2021-08-31 16:38:54 +00:00
|
|
|
for k in $(echo ${EASYREPO_SUITES} | sed "s/\// /g")
|
2021-08-31 14:22:07 +00:00
|
|
|
do
|
2021-08-31 16:38:54 +00:00
|
|
|
g=($(echo $k | sed "s/\,/ /g"))
|
2021-08-31 14:22:07 +00:00
|
|
|
reprepro -V --basedir $BASEDIR --outdir $OUTDIR createsymlinks ${g[0]}
|
|
|
|
done
|
|
|
|
|
|
|
|
|
2014-08-12 21:06:52 +00:00
|
|
|
#
|
|
|
|
# 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
|
2014-08-13 11:28:11 +00:00
|
|
|
chown -R www-data:www-data $OUTDIR
|