tags 459705 pending tags 512539 pending thanks Hi,
I've uploaded the following NMU to DELAYED/5-day. If you'd rather do the upload yourself, and need more time, please let me know so I can cancel it. -- Robert Millan The DRM opt-in fallacy: "Your data belongs to us. We will decide when (and how) you may access your data; but nobody's threatening your freedom: we still allow you to remove your data and not access it at all."
Binary files /tmp/MrffbybHbM/pike7.6-7.6.112/bundles/nettle-1.14.tar.gz and /tmp/UJWo0af5L2/pike7.6-7.6.112.dfsg/bundles/nettle-1.14.tar.gz differ diff -Nru /tmp/MrffbybHbM/pike7.6-7.6.112/debian/changelog /tmp/UJWo0af5L2/pike7.6-7.6.112.dfsg/debian/changelog --- /tmp/MrffbybHbM/pike7.6-7.6.112/debian/changelog 2009-01-21 17:17:22.000000000 +0100 +++ /tmp/UJWo0af5L2/pike7.6-7.6.112.dfsg/debian/changelog 2009-01-21 17:17:30.000000000 +0100 @@ -1,3 +1,13 @@ +pike7.6 (7.6.112.dfsg-0.1) unstable; urgency=high + + * Non-maintainer upload. + * Remove file with non-free IETF license (and document this in + debian/copyright). (Closes: #459705) + * 12_perl_init.dpatch: Fix unapply when building twice in a row. + (Closes: #512539) + + -- Robert Millan <r...@aybabtu.com> Wed, 21 Jan 2009 16:55:24 +0100 + pike7.6 (7.6.112-3) unstable; urgency=medium * 12_perl_init.dpatch (new): Fix silent build failure on hppa (Closes: diff -Nru /tmp/MrffbybHbM/pike7.6-7.6.112/debian/copyright /tmp/UJWo0af5L2/pike7.6-7.6.112.dfsg/debian/copyright --- /tmp/MrffbybHbM/pike7.6-7.6.112/debian/copyright 2009-01-21 17:17:22.000000000 +0100 +++ /tmp/UJWo0af5L2/pike7.6-7.6.112.dfsg/debian/copyright 2009-01-21 17:17:30.000000000 +0100 @@ -22,6 +22,10 @@ On Debian GNU/Linux systems, the complete text of the GNU Lesser General Public License can be found in `/usr/share/common-licenses/LGPL'. +The file nettle-1.14/testsuite/rfc1750.txt inside the archive in +bundles/nettle-1.14.tar.gz was licensed under non-free terms and had to +be removed from the package (see bug #459705). + The full text of the Mozilla Public License 1.1 follows. MOZILLA PUBLIC LICENSE diff -Nru /tmp/MrffbybHbM/pike7.6-7.6.112/debian/patches/12_perl_init.dpatch /tmp/UJWo0af5L2/pike7.6-7.6.112.dfsg/debian/patches/12_perl_init.dpatch --- /tmp/MrffbybHbM/pike7.6-7.6.112/debian/patches/12_perl_init.dpatch 2009-01-21 17:17:22.000000000 +0100 +++ /tmp/UJWo0af5L2/pike7.6-7.6.112.dfsg/debian/patches/12_perl_init.dpatch 2009-01-21 17:17:30.000000000 +0100 @@ -7,9 +7,9 @@ FILE=src/modules/Perl/configure dpatch_patch() { - [ ! -e ${FILE}.bak ] || return 1 + [ ! -e ${FILE}.backup ] || return 1 - sed -i.bak -f - ${FILE} <<'END_SED' + sed -i.backup -f - ${FILE} <<'END_SED' /my_perl = perl_alloc();/i\ PERL_SYS_INIT3(&argc,&argv,&env); /perl_free(my_perl);/a\ @@ -21,7 +21,7 @@ } dpatch_unpatch() { - patch -p1 -R $* && [ -e ${FILE}.bak ] && mv -f ${FILE}.bak ${FILE} + patch -p1 -R $* && [ -e ${FILE}.backup ] && mv -f ${FILE}.backup ${FILE} } diff -Nru /tmp/MrffbybHbM/pike7.6-7.6.112/debian/rules /tmp/UJWo0af5L2/pike7.6-7.6.112.dfsg/debian/rules --- /tmp/MrffbybHbM/pike7.6-7.6.112/debian/rules 2009-01-21 17:17:22.000000000 +0100 +++ /tmp/UJWo0af5L2/pike7.6-7.6.112.dfsg/debian/rules 2009-01-21 17:17:30.000000000 +0100 @@ -73,7 +73,7 @@ MACHINE_OPTS=--without-machine-code endif -DEBVERSION:=$(shell dpkg-parsechangelog | sed -ne 's/Version: *\(.*\)-.*$$/\1/p') +DEBVERSION:=$(shell dpkg-parsechangelog | sed -ne 's/Version: *\(.*\)-.*$$/\1/p' | sed -e 's/\.dfsg$$//g') MAJOR:=$(shell sed -ne 's/major://p' buildid.txt) MINOR:=$(shell sed -ne 's/minor://p' buildid.txt) BUILD:=$(shell sed -ne 's/build://p' buildid.txt)