diff --git a/pbuilder/pbuilderrc b/pbuilder/pbuilderrc index 9cd901e..ce38930 100644 --- a/pbuilder/pbuilderrc +++ b/pbuilder/pbuilderrc @@ -18,13 +18,9 @@ case "$distribution" in # cowdancer is in universe COMPONENTS="main universe" ;; - lenny) + lenny|squeeze) MIRRORSITE="http://archive.debian.org/debian/" ;; - squeeze) - # lacks eatmydata package, so explicitely configure it - MIRRORSITE="http://archive.debian.org/debian" - ;; jessie) MIRRORSITE="http://${DEBIAN_MIRROR}/debian" # package install speedup diff --git a/scripts/jdg-build-package b/scripts/jdg-build-package index 1cd0e5a..3e11da4 100755 --- a/scripts/jdg-build-package +++ b/scripts/jdg-build-package @@ -14,9 +14,9 @@ case "$distribution" in export MIRRORSITE="http://at.archive.ubuntu.com/ubuntu/" echo "*** Building for Ubuntu release ${distribution}, using mirror $MIRRORSITE ***" ;; - lenny) + lenny|squeeze) export MIRRORSITE="http://archive.debian.org/debian/" - echo "*** Building for Debian release lenny, using mirror $MIRRORSITE ***" + echo "*** Building for Debian release ${distribution}, using mirror $MIRRORSITE ***" ;; esac diff --git a/scripts/jdg-piuparts b/scripts/jdg-piuparts index 8ecdf92..4940103 100755 --- a/scripts/jdg-piuparts +++ b/scripts/jdg-piuparts @@ -6,9 +6,9 @@ case "$distribution" in export MIRROR="http://ie.archive.ubuntu.com/ubuntu/" echo "*** Building for Ubuntu release ${distribution}, using mirror $MIRROR ***" ;; - lenny) + lenny|squeeze) export MIRROR="http://archive.debian.org/debian/" - echo "*** Building for Debian release lenny, using mirror $MIRROR ***" + echo "*** Building for Debian release ${distribution}, using mirror $MIRROR ***" esac # sadly piuparts always returns with exit code 1 :((