r70602 - in /trunk/libauthen-sasl-cyrus-perl/debian: changelog patches/numeric-version patches/series

rra at users.alioth.debian.org rra at users.alioth.debian.org
Sun Mar 6 03:31:27 UTC 2011


Author: rra
Date: Sun Mar  6 03:31:14 2011
New Revision: 70602

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=70602
Log:
Change the internal module version to be numeric

* Change the internal module version to 0.13.1 as a Debian-specific
  workaround to avoid warnings in Perl 5.10 and more serious problems
  with Perl 5.12 with non-numeric versions.  When upstream releases a
  new version without the -server suffix, this change can be dropped.
  (Closes: #578551)

Added:
    trunk/libauthen-sasl-cyrus-perl/debian/patches/numeric-version
Modified:
    trunk/libauthen-sasl-cyrus-perl/debian/changelog
    trunk/libauthen-sasl-cyrus-perl/debian/patches/series

Modified: trunk/libauthen-sasl-cyrus-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-sasl-cyrus-perl/debian/changelog?rev=70602&op=diff
==============================================================================
--- trunk/libauthen-sasl-cyrus-perl/debian/changelog (original)
+++ trunk/libauthen-sasl-cyrus-perl/debian/changelog Sun Mar  6 03:31:14 2011
@@ -1,5 +1,10 @@
 libauthen-sasl-cyrus-perl (0.13-server-6) UNRELEASED; urgency=low
 
+  * Change the internal module version to 0.13.1 as a Debian-specific
+    workaround to avoid warnings in Perl 5.10 and more serious problems
+    with Perl 5.12 with non-numeric versions.  When upstream releases a
+    new version without the -server suffix, this change can be dropped.
+    (Closes: #578551)
   * Update debhelper compatibility level to V8.
     - Use overrides instead of partial rule implementations.
   * Change to Debian source format 3.0 (quilt).

Added: trunk/libauthen-sasl-cyrus-perl/debian/patches/numeric-version
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-sasl-cyrus-perl/debian/patches/numeric-version?rev=70602&op=file
==============================================================================
--- trunk/libauthen-sasl-cyrus-perl/debian/patches/numeric-version (added)
+++ trunk/libauthen-sasl-cyrus-perl/debian/patches/numeric-version Sun Mar  6 03:31:14 2011
@@ -1,0 +1,20 @@
+Author: Russ Allbery <rra at debian.org>
+Description: Change version number to be numeric
+
+Change the version number from 0.13-server to 0.13.1 so that it's numeric.
+Perl warns (in 5.10) and fails (in 5.12) with the previous non-numeric
+version.
+
+--- libauthen-sasl-cyrus-perl.orig/Cyrus.pm
++++ libauthen-sasl-cyrus-perl/Cyrus.pm
+@@ -5,7 +5,9 @@
+ 
+ @ISA = qw(DynaLoader);# Exporter);
+ 
+-$VERSION = "0.13-server";
++# Modified for Debian from 0.13-server to avoid Perl 5.12 problems with
++# non-numeric versions.
++$VERSION = "0.13.1";
+ 
+ bootstrap Authen::SASL::Cyrus $VERSION;
+ 

Modified: trunk/libauthen-sasl-cyrus-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-sasl-cyrus-perl/debian/patches/series?rev=70602&op=diff
==============================================================================
--- trunk/libauthen-sasl-cyrus-perl/debian/patches/series (original)
+++ trunk/libauthen-sasl-cyrus-perl/debian/patches/series Sun Mar  6 03:31:14 2011
@@ -1,2 +1,3 @@
 encode-no-more-than-MAX_OUTBUF
 correct-write-return-value
+numeric-version




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