# HG changeset patch # User Antoine Bodin # Date 1323488569 -3600 # Node ID ab5bfe22ed1da54e5acf2ece8cb15bf91bfca37f # Parent eb512922693f2ec572a83f77a9240e1084e04e65 Compat: ensure that pam WGET_URL is non-https. Otherwise tazwok can't download it at cook-toolchain time diff -r eb512922693f -r ab5bfe22ed1d pam/receipt --- a/pam/receipt Sat Dec 10 04:36:45 2011 +0100 +++ b/pam/receipt Sat Dec 10 04:42:49 2011 +0100 @@ -8,10 +8,14 @@ SOURCE="Linux-PAM" TARBALL="$SOURCE-$VERSION.tar.bz2" WEB_SITE="http://www.us.kernel.org/pub/linux/libs/pam/" -WGET_URL="https://fedorahosted.org/releases/l/i/linux-pam/$TARBALL" +# Download sources from a non-https mirror so that tazwok can +# cook the toolchain (pam is a build-depend of busybox). +# It's because at this moment tazwok doesn't have access to https +# compatible wget. +WGET_URL="http://gentoo.osuosl.org/distfiles/$TARBALL" DEPENDS="glibc-base libdb" -BUILD_DEPENDS="wget flex db db-dev" +BUILD_DEPENDS="flex db db-dev" # Rules to configure and make the package. compile_rules()