[SCM] Debian packaging of libdata-alias-perl branch, master, updated. debian/1.15-2-5-gf60440d

Fabrizio Regalli fabreg at fabreg.it
Fri Nov 18 22:58:01 UTC 2011


The following commit has been merged in the master branch:
commit f60440d1282fccbae535229726fb2840becc254f
Author: Fabrizio Regalli <fabreg at fabreg.it>
Date:   Fri Nov 18 23:57:31 2011 +0100

    Removed 0001-Save-types-have-been-stored-in-UVs-on-the-save-stack.patch

diff --git a/debian/changelog b/debian/changelog
index c5e29a5..17f32d1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,8 @@
 libdata-alias-perl (1.16-1) UNRELEASED; urgency=low
 
   * Imported Upstream version 1.16
-  * Update d/copyright to latest .174 revision.
+  * Update d/copyright to latest .174 revision
+  * Removed 0001-Save-types-have-been-stored-in-UVs-on-the-save-stack.patch
 
  -- Fabrizio Regalli <fabreg at fabreg.it>  Fri, 18 Nov 2011 23:34:05 +0100
 
diff --git a/debian/patches/0001-Save-types-have-been-stored-in-UVs-on-the-save-stack.patch b/debian/patches/0001-Save-types-have-been-stored-in-UVs-on-the-save-stack.patch
deleted file mode 100644
index 7b57d13..0000000
--- a/debian/patches/0001-Save-types-have-been-stored-in-UVs-on-the-save-stack.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From 5886d259b3fa9c738696a37e0c302218af4805fe Mon Sep 17 00:00:00 2001
-From: Niko Tyni <ntyni at debian.org>
-Date: Thu, 17 Nov 2011 20:25:46 +0000
-Subject: [PATCH] Save types have been stored in UVs on the save stack since
- 5.13.1
-
-Upstream change c6bf6a65e4bf512beae58d59446 changed storage of
-save types on the stack from INT32s to UVs, so adapt accordingly.
-
-This probably only bites on big endian architectures with -Duse64bitint,
-where the UVs are bigger and the first byte doesn't contain the save
-type anymore.
----
- Alias.xs |    8 ++++++++
- 1 files changed, 8 insertions(+), 0 deletions(-)
-
-diff --git a/Alias.xs b/Alias.xs
-index e3c9f76..28e2ed4 100644
---- a/Alias.xs
-+++ b/Alias.xs
-@@ -371,7 +371,11 @@ STATIC void da_alias(pTHX_ SV *a1, SV *a2, SV *value) {
- 				SSPUSHDXPTR((void (*)(pTHX_ void *))
- 					da_restore_gvcv);
- 				SSPUSHPTR(SvREFCNT_inc_simple_NN((SV *) gv));
-+#if (PERL_COMBI_VERSION >= 5013001)
-+				SSPUSHUV(SAVEt_DESTRUCTOR_X);
-+#else
- 				SSPUSHINT(SAVEt_DESTRUCTOR_X);
-+#endif
- 				GvCV_set(gv,
- 					(CV *) SvREFCNT_inc_simple_NN(value));
- 			} else {
-@@ -447,7 +451,11 @@ STATIC void da_localize_gvar(pTHX_ GP *gp, SV **sptr) {
- 	SSPUSHPTR(*sptr);
- 	SSPUSHDXPTR((void (*)(pTHX_ void *)) da_unlocalize_gvar);
- 	SSPUSHPTR(gp);
-+#if (PERL_COMBI_VERSION >= 5013001)
-+	SSPUSHUV(SAVEt_DESTRUCTOR_X);
-+#else
- 	SSPUSHINT(SAVEt_DESTRUCTOR_X);
-+#endif
- 	++gp->gp_refcnt;
- 	*sptr = Nullsv;
- }
--- 
-1.7.7.3
-
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 48e35a9..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-0001-Save-types-have-been-stored-in-UVs-on-the-save-stack.patch

-- 
Debian packaging of libdata-alias-perl



More information about the Pkg-perl-cvs-commits mailing list