Your message dated Tue, 17 Jun 2008 13:32:07 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#471531: fixed in libpadwalker-perl 1.7-1
has caused the Debian Bug report #471531,
regarding libpadwalker-perl: diff for NMU version 1.6-0.1
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)
--
471531: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=471531
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: libpadwalker-perl
Version: 1.5-1
Severity: normal
Tags: patch
Hi,
Attached is the diff for my libpadwalker-perl 1.6-0.1 NMU, which I
just uploaded to 7-day DELAYED.
Cheers,
--
Niko Tyni [EMAIL PROTECTED]
diff -Nru libpadwalker-perl-1.5/Changes libpadwalker-perl-1.6/Changes
--- libpadwalker-perl-1.5/Changes 2007-01-05 18:22:48.000000000 +0200
+++ libpadwalker-perl-1.6/Changes 2008-01-14 12:50:22.000000000 +0200
@@ -111,3 +111,9 @@
1.5 Fri Jan 5 16:22:27 GMT 2007
- Fix egregrious bug in 1.4 :-(
+
+1.6 Mon Jan 14 10:48:09 GMT 2008
+ - Make _upcontext work in 64-bit architectures.
+ (http://rt.cpan.org/Ticket/Display.html?id=32287)
+ Thanks to Niko Tyni.
+
diff -Nru /tmp/rFw4F8srPv/libpadwalker-perl-1.5/debian/changelog /tmp/Y1HYI2CMKv/libpadwalker-perl-1.6/debian/changelog
--- libpadwalker-perl-1.5/debian/changelog 2008-03-18 21:15:15.000000000 +0200
+++ libpadwalker-perl-1.6/debian/changelog 2008-03-18 21:15:15.000000000 +0200
@@ -1,3 +1,15 @@
+libpadwalker-perl (1.6-0.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * New upstream release.
+ + the only change fixes pointer truncation on 64-bit architectures.
+ (Closes: #458195)
+ * Fix build failure with Perl 5.10: don't try to remove /usr/share/perl5 if
+ it does not exist. (Closes: #463546)
+ * Update debian/watch. (Closes: #450230)
+
+ -- Niko Tyni <[EMAIL PROTECTED]> Tue, 18 Mar 2008 20:43:45 +0200
+
libpadwalker-perl (1.5-1) unstable; urgency=low
* New upstream release (Closes: #438569).
diff -Nru /tmp/rFw4F8srPv/libpadwalker-perl-1.5/debian/rules /tmp/Y1HYI2CMKv/libpadwalker-perl-1.6/debian/rules
--- libpadwalker-perl-1.5/debian/rules 2008-03-18 21:15:15.000000000 +0200
+++ libpadwalker-perl-1.6/debian/rules 2008-03-18 21:15:15.000000000 +0200
@@ -37,7 +37,7 @@
dh_clean -k
$(MAKE) test
$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
- rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/share/perl5
+ [ ! -d $(TMP)/usr/share/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/share/perl5
touch install-stamp
# Build architecture-independent files here.
diff -Nru /tmp/rFw4F8srPv/libpadwalker-perl-1.5/debian/watch /tmp/Y1HYI2CMKv/libpadwalker-perl-1.6/debian/watch
--- libpadwalker-perl-1.5/debian/watch 2008-03-18 21:15:15.000000000 +0200
+++ libpadwalker-perl-1.6/debian/watch 2008-03-18 21:15:15.000000000 +0200
@@ -1,3 +1,3 @@
-# format version number, currently 2; this line is compulsory!
-version=2
-http://www.cpan.org/modules/by-module/PadWalker-(.*)(.tar.gz|.tar|.tgz)
+# format version number, currently 3; this line is compulsory!
+version=3
+http://search.cpan.org/dist/PadWalker/ .*/PadWalker-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)
diff -Nru /tmp/rFw4F8srPv/libpadwalker-perl-1.5/META.yml /tmp/Y1HYI2CMKv/libpadwalker-perl-1.6/META.yml
--- libpadwalker-perl-1.5/META.yml 2007-01-05 18:22:23.000000000 +0200
+++ libpadwalker-perl-1.6/META.yml 2008-01-14 12:52:45.000000000 +0200
@@ -1,7 +1,7 @@
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: PadWalker
-version: 1.5
+version: 1.6
license: perl
version_from: PadWalker.pm
installdirs: site
diff -Nru /tmp/rFw4F8srPv/libpadwalker-perl-1.5/PadWalker.pm /tmp/Y1HYI2CMKv/libpadwalker-perl-1.6/PadWalker.pm
--- libpadwalker-perl-1.5/PadWalker.pm 2007-01-05 18:22:16.000000000 +0200
+++ libpadwalker-perl-1.6/PadWalker.pm 2008-01-14 12:48:07.000000000 +0200
@@ -12,7 +12,7 @@
@EXPORT_OK = qw(peek_my peek_our closed_over peek_sub var_name);
%EXPORT_TAGS = (all => [EMAIL PROTECTED]);
-$VERSION = '1.5';
+$VERSION = '1.6';
bootstrap PadWalker $VERSION;
diff -Nru /tmp/rFw4F8srPv/libpadwalker-perl-1.5/PadWalker.xs /tmp/Y1HYI2CMKv/libpadwalker-perl-1.6/PadWalker.xs
--- libpadwalker-perl-1.5/PadWalker.xs 2007-01-05 18:20:11.000000000 +0200
+++ libpadwalker-perl-1.6/PadWalker.xs 2008-01-14 10:58:48.000000000 +0200
@@ -532,6 +532,5 @@
_upcontext(uplevel)
I32 uplevel
PPCODE:
- /* I'm not sure why this is here, but I'll leave it in case
- * somebody is using it in an insanely evil way. */
- XPUSHs(sv_2mortal(newSViv((U32)upcontext(aTHX_ uplevel, 0, 0, 0, 0))));
+ /* This is used by Devel::Caller. */
+ XPUSHs(sv_2mortal(newSViv((IV)upcontext(aTHX_ uplevel, 0, 0, 0, 0))));
diff -Nru /tmp/rFw4F8srPv/libpadwalker-perl-1.5/README /tmp/Y1HYI2CMKv/libpadwalker-perl-1.6/README
--- libpadwalker-perl-1.5/README 2007-01-05 18:20:53.000000000 +0200
+++ libpadwalker-perl-1.6/README 2008-01-14 10:59:27.000000000 +0200
@@ -1,12 +1,7 @@
-----------------------------------------------------------------------------
-| PadWalker v1.5 - Robin Houston
+| PadWalker v1.6 - Robin Houston
-----------------------------------------------------------------------------
-[ Note: versions 1.3-1.5 are forward-compatibility releases, designed to
- make PadWalker compatible with the development version of Perl, and with
- Perl 5.10 when it is released. There is no reason for most users to upgrade
- immediately. ]
-
NAME
PadWalker - play with other peoples' lexical variables
--- End Message ---
--- Begin Message ---
Source: libpadwalker-perl
Source-Version: 1.7-1
We believe that the bug you reported is fixed in the latest version of
libpadwalker-perl, which is due to be installed in the Debian FTP archive:
libpadwalker-perl_1.7-1.diff.gz
to pool/main/libp/libpadwalker-perl/libpadwalker-perl_1.7-1.diff.gz
libpadwalker-perl_1.7-1.dsc
to pool/main/libp/libpadwalker-perl/libpadwalker-perl_1.7-1.dsc
libpadwalker-perl_1.7-1_i386.deb
to pool/main/libp/libpadwalker-perl/libpadwalker-perl_1.7-1_i386.deb
libpadwalker-perl_1.7.orig.tar.gz
to pool/main/libp/libpadwalker-perl/libpadwalker-perl_1.7.orig.tar.gz
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Martín Ferrari <[EMAIL PROTECTED]> (supplier of updated libpadwalker-perl
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Tue, 17 Jun 2008 10:20:18 -0300
Source: libpadwalker-perl
Binary: libpadwalker-perl
Architecture: source i386
Version: 1.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group <[EMAIL PROTECTED]>
Changed-By: Martín Ferrari <[EMAIL PROTECTED]>
Description:
libpadwalker-perl - play with other peoples' lexical variables
Closes: 471531
Changes:
libpadwalker-perl (1.7-1) unstable; urgency=low
.
[ gregor herrmann ]
* Take over for the Debian Perl Group with maintainer's permission
(http://lists.debian.org/debian-perl/2008/06/msg00039.html)
* debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
field (source stanza); Homepage field (source stanza). Changed:
Maintainer set to Debian Perl Group <pkg-perl-
[EMAIL PROTECTED]> (was: Florian Ragwitz
<[EMAIL PROTECTED]>); Florian Ragwitz <[EMAIL PROTECTED]> moved to
Uploaders.
* Ack NMU (closes: #471531).
.
[ Martín Ferrari ]
* New upstream release.
* debian/control: Added myself to Uploaders, bumped Standards-Version: no
changes, upgraded debhelper version to 5, upgraded perl dependency to
match META.yaml, corrected short Description case.
* debian/rules: refreshed from templates, removed README as it's a dump of
the manpage.
* debian/copyright: new format, added packaging copyright.
Checksums-Sha1:
904da5c69a9aad58c7c770f0079dd20038c58948 1317 libpadwalker-perl_1.7-1.dsc
3a480830f6717003fb720e1af5dcae6a2403e783 13418
libpadwalker-perl_1.7.orig.tar.gz
2a3feedb4257894deb97740106c52dddbda26241 2685 libpadwalker-perl_1.7-1.diff.gz
bd6c1cd0545c35f356c8d2afdd5a6465e5e33415 19538 libpadwalker-perl_1.7-1_i386.deb
Checksums-Sha256:
fa9fc5938a84844ddc7d0f4a6724c1b4ca0a3155dd524803496d658faa8528d1 1317
libpadwalker-perl_1.7-1.dsc
a6acb5e5d3ffacb2b36cd299624fe3ed7ce4d4ed181347fe9a741455b58d5ba6 13418
libpadwalker-perl_1.7.orig.tar.gz
721e5a9725c893321e5b6cab696e456c004405879013a7fa5c702f4b5575f962 2685
libpadwalker-perl_1.7-1.diff.gz
5574b66e8c66abadffe83d4fdc518a173b362140836ea29a6cb2ca4a792302c8 19538
libpadwalker-perl_1.7-1_i386.deb
Files:
1133cdf49900d915af285b8a1ba1a333 1317 perl optional libpadwalker-perl_1.7-1.dsc
0844dcf349349b793cd7a095784e738c 13418 perl optional
libpadwalker-perl_1.7.orig.tar.gz
66f45008c2659abbbc15664577b44720 2685 perl optional
libpadwalker-perl_1.7-1.diff.gz
f8a682fd1f32c25b93d78fd3ec43268b 19538 perl optional
libpadwalker-perl_1.7-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFIV7wzaWQ2v1ddCnYRAuceAJ0bxieEzKqKHBgzt2cMTiVrpne9dwCdGLK+
m/ZmRFwK4RvU/CXp8n4+hlc=
=p+fM
-----END PGP SIGNATURE-----
--- End Message ---