r74123 - in /trunk/libcrypt-openssl-x509-perl: Changes META.yml README X509.pm X509.xs debian/changelog

carnil at users.alioth.debian.org carnil at users.alioth.debian.org
Sun May 8 06:58:55 UTC 2011


Author: carnil
Date: Sun May  8 06:58:25 2011
New Revision: 74123

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=74123
Log:
* New upstream release
  - Fix warnings under gcc 4.6 (Closes: #625361).

Modified:
    trunk/libcrypt-openssl-x509-perl/Changes
    trunk/libcrypt-openssl-x509-perl/META.yml
    trunk/libcrypt-openssl-x509-perl/README
    trunk/libcrypt-openssl-x509-perl/X509.pm
    trunk/libcrypt-openssl-x509-perl/X509.xs
    trunk/libcrypt-openssl-x509-perl/debian/changelog

Modified: trunk/libcrypt-openssl-x509-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-openssl-x509-perl/Changes?rev=74123&op=diff
==============================================================================
--- trunk/libcrypt-openssl-x509-perl/Changes (original)
+++ trunk/libcrypt-openssl-x509-perl/Changes Sun May  8 06:58:25 2011
@@ -1,4 +1,7 @@
 Revision history for Perl extension Crypt::OpenSSL::X509.
+
+1.8.2  Sat May  7 20:19:58 PDT 2011
+	- Fix warnings under gcc 4.6
 
 1.8.1  Sun Apr 17 06:57:09 PDT 2011
 	- Fix OpenSSL version check.

Modified: trunk/libcrypt-openssl-x509-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-openssl-x509-perl/META.yml?rev=74123&op=diff
==============================================================================
--- trunk/libcrypt-openssl-x509-perl/META.yml (original)
+++ trunk/libcrypt-openssl-x509-perl/META.yml Sun May  8 06:58:25 2011
@@ -23,4 +23,4 @@
   bugtracker: https://github.com/dsully/perl-crypt-openssl-x509/issues
   homepage: https://github.com/dsully/perl-crypt-openssl-x509
   license: http://dev.perl.org/licenses/
-version: 1.800.1
+version: 1.800.2

Modified: trunk/libcrypt-openssl-x509-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-openssl-x509-perl/README?rev=74123&op=diff
==============================================================================
--- trunk/libcrypt-openssl-x509-perl/README (original)
+++ trunk/libcrypt-openssl-x509-perl/README Sun May  8 06:58:25 2011
@@ -1,4 +1,4 @@
-Crypt/OpenSSL/X509 version 1.8.1
+Crypt/OpenSSL/X509 version 1.8.2
 ===============================
 
 The README is used to introduce the module and provide instructions on

Modified: trunk/libcrypt-openssl-x509-perl/X509.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-openssl-x509-perl/X509.pm?rev=74123&op=diff
==============================================================================
--- trunk/libcrypt-openssl-x509-perl/X509.pm (original)
+++ trunk/libcrypt-openssl-x509-perl/X509.pm Sun May  8 06:58:25 2011
@@ -5,7 +5,7 @@
 use Exporter;
 use base qw(Exporter);
 
-$VERSION = '1.800.1';
+$VERSION = '1.800.2';
 
 @EXPORT_OK = qw(
   FORMAT_UNDEF FORMAT_ASN1 FORMAT_TEXT FORMAT_PEM FORMAT_NETSCAPE

Modified: trunk/libcrypt-openssl-x509-perl/X509.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-openssl-x509-perl/X509.xs?rev=74123&op=diff
==============================================================================
--- trunk/libcrypt-openssl-x509-perl/X509.xs (original)
+++ trunk/libcrypt-openssl-x509-perl/X509.xs Sun May  8 06:58:25 2011
@@ -853,13 +853,11 @@
 
   PREINIT:
   BASIC_CONSTRAINTS *bs;
-  const X509V3_EXT_METHOD *method;
   int ret = 0;
 
   CODE:
 
   /* retrieve the value of CA or pathlen in basicConstraints */
-  method = X509V3_EXT_get(ext);
   bs = X509V3_EXT_d2i(ext);
 
   if (strcmp(value, "ca") == 0) {
@@ -1017,7 +1015,6 @@
 
   PREINIT:
   char buf[128];
-  int r;
 
   CODE:
 
@@ -1025,7 +1022,7 @@
     croak("No ObjectID supplied\n");
   }
 
-  r = OBJ_obj2txt(buf, 128, obj, 0);
+  (void)OBJ_obj2txt(buf, 128, obj, 0);
 
   RETVAL = buf;
 
@@ -1038,7 +1035,6 @@
 
   PREINIT:
   char buf[128];
-  int r;
 
   CODE:
 
@@ -1046,7 +1042,7 @@
     croak("No ObjectID supplied\n");
   }
 
-  r = OBJ_obj2txt(buf, 128, obj, 1);
+  (void)OBJ_obj2txt(buf, 128, obj, 1);
 
   RETVAL = buf;
 

Modified: trunk/libcrypt-openssl-x509-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-openssl-x509-perl/debian/changelog?rev=74123&op=diff
==============================================================================
--- trunk/libcrypt-openssl-x509-perl/debian/changelog (original)
+++ trunk/libcrypt-openssl-x509-perl/debian/changelog Sun May  8 06:58:25 2011
@@ -1,3 +1,10 @@
+libcrypt-openssl-x509-perl (1.8.2-1) UNRELEASED; urgency=low
+
+  * New upstream release
+    - Fix warnings under gcc 4.6 (Closes: #625361).
+
+ -- Salvatore Bonaccorso <carnil at debian.org>  Sun, 08 May 2011 08:57:01 +0200
+
 libcrypt-openssl-x509-perl (1.8.1-1) unstable; urgency=low
 
   * New upstream release




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