remove reprepro

Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
Jessica Frazelle 2015-09-03 13:17:21 -07:00
parent 9d0eef55ea
commit e7cf75c103
1 changed files with 4 additions and 5 deletions

View File

@ -105,19 +105,18 @@ for dir in contrib/builder/deb/*/; do
version="$(basename "$dir")" version="$(basename "$dir")"
codename="${version//debootstrap-}" codename="${version//debootstrap-}"
# add the deb for each component for the distro version with reprepro
DEBFILE=( "bundles/$VERSION/build-deb/$version/docker-engine"*.deb ) DEBFILE=( "bundles/$VERSION/build-deb/$version/docker-engine"*.deb )
# if we have a $GPG_PASSPHRASE we may as well # if we have a $GPG_PASSPHRASE we may as well
# dpkg-sign before reprepro # dpkg-sign before copying the deb into the pool
if [ ! -z "$GPG_PASSPHRASE" ]; then if [ ! -z "$GPG_PASSPHRASE" ]; then
dpkg-sig -g "--passphrase $GPG_PASSPHRASE" \ dpkg-sig -g "--passphrase $GPG_PASSPHRASE" \
-k releasedocker --sign builder "${DEBFILE[@]}" -k releasedocker --sign builder "${DEBFILE[@]}"
fi fi
reprepro -v $options \ # add the deb for each component for the distro version into the pool
-S docker-engine -P "$priority" -C "$component" \ mkdir -p "$APTDIR/pool/$component/d/docker-engine/"
-b "$APTDIR" includedeb "$codename" "${DEBFILE[@]}" cp "${DEBFILE[@]}" "$APTDIR/pool/$component/d/docker-engine/"
# update the filelist for this codename/component # update the filelist for this codename/component
find "$APTDIR/pool/$component" \ find "$APTDIR/pool/$component" \