Package: release.debian.org Severity: normal User: [email protected] Usertags: unblock
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Please unblock package apt-move Involved bug: 692342 [1]. Perl 5.12 removed the use of implicit calls to split. apt-move was using that in the script to copy files. The result is that the cache build by apt-get is removed instead of moved. Please find attached the debdiff for 4.2.27-3 as just uploaded by me. [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=692342 unblock apt-move/4.2.27-3 - -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (500, 'testing'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.2.0-4-amd64 (SMP w/1 CPU core) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iEYEARECAAYFAlCc6/0ACgkQHNUte6r+CGp28gCffFyhnl2obtd5UyTSqurrUikz kEkAnjFApQSsnWdfdD6WZEb5/J7upxep =qPzn -----END PGP SIGNATURE-----
diff -Nru apt-move-4.2.27/debian/changelog apt-move-4.2.27/debian/changelog --- apt-move-4.2.27/debian/changelog 2012-01-07 20:39:43.000000000 +0100 +++ apt-move-4.2.27/debian/changelog 2012-11-09 12:05:23.000000000 +0100 @@ -1,3 +1,12 @@ +apt-move (4.2.27-3) unstable; urgency=low + + * QA upload + * debian/patches: + - fix_perl_implicit_split_deprecation.patch: Fix implicit split which was + deprecated in Perl long time ago and removed in 5.12 (closes: #692342) + + -- Paul Gevers <[email protected]> Fri, 09 Nov 2012 10:41:39 +0100 + apt-move (4.2.27-2) unstable; urgency=low * QA upload. diff -Nru apt-move-4.2.27/debian/patches/fix_perl_implicit_split_deprecation.patch apt-move-4.2.27/debian/patches/fix_perl_implicit_split_deprecation.patch --- apt-move-4.2.27/debian/patches/fix_perl_implicit_split_deprecation.patch 1970-01-01 01:00:00.000000000 +0100 +++ apt-move-4.2.27/debian/patches/fix_perl_implicit_split_deprecation.patch 2012-11-09 11:54:46.000000000 +0100 @@ -0,0 +1,17 @@ +Description: The use of implicit split call has been removed from perl + in version 5.12 as it had been deprecated for 15 years +Author: Paul Gevers <[email protected]> +Bug-Debian: http://bugs.debian.org/692342 +Forwarded: no + +--- a/move3 ++++ b/move3 +@@ -42,7 +42,7 @@ + } + + while (<>) { +- split; ++ @_=split; + + if ($_[0] eq "D") { + if (fileno(MKDIR) == undef) { diff -Nru apt-move-4.2.27/debian/patches/series apt-move-4.2.27/debian/patches/series --- apt-move-4.2.27/debian/patches/series 2012-01-07 20:39:43.000000000 +0100 +++ apt-move-4.2.27/debian/patches/series 2012-11-09 10:40:13.000000000 +0100 @@ -1,3 +1,4 @@ csum-uncompressed-Packages.patch fix-dpkg-option.patch add-copydir.patch +fix_perl_implicit_split_deprecation.patch

