r66196 - in /branches/upstream/libcpan-distnameinfo-perl/current: Changes META.yml SIGNATURE lib/CPAN/DistnameInfo.pm t/path.t
jawnsy-guest at users.alioth.debian.org
jawnsy-guest at users.alioth.debian.org
Fri Dec 24 19:37:46 UTC 2010
Author: jawnsy-guest
Date: Fri Dec 24 19:37:30 2010
New Revision: 66196
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=66196
Log:
[svn-upgrade] new version libcpan-distnameinfo-perl (0.11)
Modified:
branches/upstream/libcpan-distnameinfo-perl/current/Changes
branches/upstream/libcpan-distnameinfo-perl/current/META.yml
branches/upstream/libcpan-distnameinfo-perl/current/SIGNATURE
branches/upstream/libcpan-distnameinfo-perl/current/lib/CPAN/DistnameInfo.pm
branches/upstream/libcpan-distnameinfo-perl/current/t/path.t
Modified: branches/upstream/libcpan-distnameinfo-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcpan-distnameinfo-perl/current/Changes?rev=66196&op=diff
==============================================================================
--- branches/upstream/libcpan-distnameinfo-perl/current/Changes (original)
+++ branches/upstream/libcpan-distnameinfo-perl/current/Changes Fri Dec 24 19:37:30 2010
@@ -1,3 +1,7 @@
+0.11 -- Tue Dec 14 08:52:15 CST 2010
+
+ * Remove potential -withoutworldwriteables suffix [Vincent Pit]
+
0.10 -- Sat Mar 27 15:04:54 CDT 2010
* Support -TRAIL in distribution version to indicate developer release
Modified: branches/upstream/libcpan-distnameinfo-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcpan-distnameinfo-perl/current/META.yml?rev=66196&op=diff
==============================================================================
--- branches/upstream/libcpan-distnameinfo-perl/current/META.yml (original)
+++ branches/upstream/libcpan-distnameinfo-perl/current/META.yml Fri Dec 24 19:37:30 2010
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: CPAN-DistnameInfo
-version: 0.10
+version: 0.11
abstract: Extract distribution name and version from a distribution filename
author:
- Graham Barr <gbarr at cpan.org>
Modified: branches/upstream/libcpan-distnameinfo-perl/current/SIGNATURE
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcpan-distnameinfo-perl/current/SIGNATURE?rev=66196&op=diff
==============================================================================
--- branches/upstream/libcpan-distnameinfo-perl/current/SIGNATURE (original)
+++ branches/upstream/libcpan-distnameinfo-perl/current/SIGNATURE Fri Dec 24 19:37:30 2010
@@ -1,5 +1,5 @@
This file contains message digests of all files listed in MANIFEST,
-signed via the Module::Signature module, version 0.55.
+signed via the Module::Signature module, version 0.64.
To verify the content in this distribution, first make sure you have
Module::Signature installed, then type:
@@ -14,18 +14,18 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
-SHA1 3c5cd7b6aecbfca27add19bde5e71b53c0687a41 Changes
+SHA1 1984003d6d56deaf9dd778af345fe5c4873f49e0 Changes
SHA1 49d042e197b5c18b654acd4bd9c1d22d7014d174 MANIFEST
-SHA1 b8e100338e7e6bb1834ac8d49b088ec0657c394d META.yml
+SHA1 23cd794bff82ab1ad8a6a37ea3eab575d21aee18 META.yml
SHA1 da8ac89bf8cf1d7b58fdc28503b380d94cebf6a3 Makefile.PL
SHA1 75225b292ce4d6d6bb0212fa8f249aaa8ee41ae8 README
-SHA1 53baf9e53d4195a53046d16977390e785752d718 lib/CPAN/DistnameInfo.pm
+SHA1 70a94c365f32e7ace66f4ea039cb003103cc1865 lib/CPAN/DistnameInfo.pm
SHA1 ddc339a19d1ded18dc0f6d958904348a8141e2be t/ext.t
-SHA1 8d17d389f6a2200376ca8ad2bb23196ac2f7597d t/path.t
+SHA1 00af0a1012e1af4536120eab70958e51218c3b72 t/path.t
-----BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.10 (Darwin)
+Version: GnuPG v1.4.11 (Darwin)
-iEYEARECAAYFAkuuZW4ACgkQR0BL4gbYw3SZkQCeIS4RS3kDHQK+T9Gbu+QZrA+U
-CmYAniuJS5fCaqW+th+K46j6hqL/9Xpe
-=DnWV
+iEYEARECAAYFAk0H05YACgkQR0BL4gbYw3SKTQCdGZXbTSmg7UgoDORjT1eJygIf
+XYoAnRZ/gFsnFQMPV5Xqgj6q8cixMQH7
+=3Gxk
-----END PGP SIGNATURE-----
Modified: branches/upstream/libcpan-distnameinfo-perl/current/lib/CPAN/DistnameInfo.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcpan-distnameinfo-perl/current/lib/CPAN/DistnameInfo.pm?rev=66196&op=diff
==============================================================================
--- branches/upstream/libcpan-distnameinfo-perl/current/lib/CPAN/DistnameInfo.pm (original)
+++ branches/upstream/libcpan-distnameinfo-perl/current/lib/CPAN/DistnameInfo.pm Fri Dec 24 19:37:30 2010
@@ -1,7 +1,7 @@
package CPAN::DistnameInfo;
-$VERSION = "0.10";
+$VERSION = "0.11";
use strict;
sub distname_info {
@@ -20,6 +20,9 @@
if ($dist =~ /-undef\z/ and ! length $version) {
$dist =~ s/-undef\z//;
}
+
+ # Remove potential -withoutworldwriteables suffix
+ $version =~ s/-withoutworldwriteables$//;
if ($version =~ /^(-[Vv].*)-(\d.*)/) {
Modified: branches/upstream/libcpan-distnameinfo-perl/current/t/path.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcpan-distnameinfo-perl/current/t/path.t?rev=66196&op=diff
==============================================================================
--- branches/upstream/libcpan-distnameinfo-perl/current/t/path.t (original)
+++ branches/upstream/libcpan-distnameinfo-perl/current/t/path.t Fri Dec 24 19:37:30 2010
@@ -1,5 +1,5 @@
-use Test::More tests => 260;
+use Test::More tests => 269;
use Data::Dumper;
use CPAN::DistnameInfo;
@@ -280,3 +280,12 @@
version 2.100860-TRIAL
cpanid RJBS
extension tar.gz
+
+CPAN/authors/id/M/MI/MINGYILIU/Bio-ASN1-EntrezGene-1.10-withoutworldwriteables.tar.gz
+ filename Bio-ASN1-EntrezGene-1.10-withoutworldwriteables.tar.gz
+ dist Bio-ASN1-EntrezGene
+ maturity released
+ distvname Bio-ASN1-EntrezGene-1.10-withoutworldwriteables
+ version 1.10
+ cpanid MINGYILIU
+ extension tar.gz
More information about the Pkg-perl-cvs-commits
mailing list