r63161 - in /trunk/libperl-version-perl: Build.PL Changes MANIFEST META.yml Makefile.PL Notes.txt README SIGNATURE debian/changelog debian/copyright inc/ lib/Perl/Version.pm t/manifest.t

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Fri Oct 1 20:43:55 UTC 2010


Author: periapt-guest
Date: Fri Oct  1 20:43:40 2010
New Revision: 63161

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=63161
Log:
* New upstream release
* Refreshed copyright

Added:
    trunk/libperl-version-perl/Build.PL
      - copied unchanged from r63160, branches/upstream/libperl-version-perl/current/Build.PL
    trunk/libperl-version-perl/inc/
      - copied from r63160, branches/upstream/libperl-version-perl/current/inc/
    trunk/libperl-version-perl/t/manifest.t
      - copied unchanged from r63160, branches/upstream/libperl-version-perl/current/t/manifest.t
Modified:
    trunk/libperl-version-perl/Changes
    trunk/libperl-version-perl/MANIFEST
    trunk/libperl-version-perl/META.yml
    trunk/libperl-version-perl/Makefile.PL
    trunk/libperl-version-perl/Notes.txt
    trunk/libperl-version-perl/README
    trunk/libperl-version-perl/SIGNATURE
    trunk/libperl-version-perl/debian/changelog
    trunk/libperl-version-perl/debian/copyright
    trunk/libperl-version-perl/lib/Perl/Version.pm

Modified: trunk/libperl-version-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libperl-version-perl/Changes?rev=63161&op=diff
==============================================================================
--- trunk/libperl-version-perl/Changes (original)
+++ trunk/libperl-version-perl/Changes Fri Oct  1 20:43:40 2010
@@ -79,3 +79,5 @@
         files and not getting confused by unstructured files (like
         README). See #43946.
 
+1.010   2010-09-19
+        Install perl-reversion by default.

Modified: trunk/libperl-version-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libperl-version-perl/MANIFEST?rev=63161&op=diff
==============================================================================
--- trunk/libperl-version-perl/MANIFEST (original)
+++ trunk/libperl-version-perl/MANIFEST Fri Oct  1 20:43:40 2010
@@ -1,5 +1,7 @@
+Build.PL
 Changes
 examples/perl-reversion
+inc/MyBuilder.pm
 lib/Perl/Version.pm
 Makefile.PL
 MANIFEST
@@ -11,6 +13,7 @@
 t/20.compare.t
 t/30.vstring.t
 t/40.perl-reversion.t
+t/manifest.t
 t/pod-coverage.t
 t/pod.t
 META.yml                                 Module meta-data (added by MakeMaker)

Modified: trunk/libperl-version-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libperl-version-perl/META.yml?rev=63161&op=diff
==============================================================================
--- trunk/libperl-version-perl/META.yml (original)
+++ trunk/libperl-version-perl/META.yml Fri Oct  1 20:43:40 2010
@@ -1,12 +1,14 @@
 --- #YAML:1.0
 name:               Perl-Version
-version:            1.009
+version:            1.010
 abstract:           Parse and manipulate Perl version strings
 author:
     - Andy Armstrong <andy at hexten.net>
 license:            perl
 distribution_type:  module
 configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
     ExtUtils::MakeMaker:  0
 requires:
     File::Slurp:   9999.12
@@ -18,7 +20,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.48
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

Modified: trunk/libperl-version-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libperl-version-perl/Makefile.PL?rev=63161&op=diff
==============================================================================
--- trunk/libperl-version-perl/Makefile.PL (original)
+++ trunk/libperl-version-perl/Makefile.PL Fri Oct  1 20:43:40 2010
@@ -3,17 +3,6 @@
 use ExtUtils::MakeMaker;
 
 eval 'use ExtUtils::MakeMaker::Coverage';
-
-my %EXE = (
-  'perl-reversion' => {
-    PREREQ_PM => {
-      'Getopt::Long' => '2.34',
-      'Pod::Usage'   => '1.3',
-      'File::Slurp'  => '9999.12',
-    },
-    EXE_FILES => ['examples/perl-reversion'],
-  }
-);
 
 my %ARGS = (
   license( 'perl' ),
@@ -25,29 +14,16 @@
   PREREQ_PM     => {
     'Test::More'   => 0,
     'Scalar::Util' => 0,
+    'Getopt::Long' => '2.34',
+    'Pod::Usage'   => '1.3',
+    'File::Slurp'  => '9999.12',
   },
-  dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
-  clean => { FILES    => 'Perl-Version-*' },
+  EXE_FILES => ['examples/perl-reversion'],
+  dist      => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
+  clean => { FILES => 'Perl-Version-*' },
 );
 
 $ARGS{SIGN} = 1 if MM->can( 'signature_target' );
-
-while ( my ( $exe, $spec ) = each %EXE ) {
-  my $yn = prompt( "Install $exe script?", "N" );
-  if ( $yn =~ /^y/i ) {
-    while ( my ( $key, $val ) = each %$spec ) {
-      if ( ref $val eq 'HASH' ) {
-        $ARGS{$key} = { %{ $ARGS{$key} || {} }, %$val };
-      }
-      elsif ( ref $val eq 'ARRAY' ) {
-        push @{ $ARGS{$key} }, @$val;
-      }
-      else {
-        die "Can't merge $key: value not handled\n";
-      }
-    }
-  }
-}
 
 WriteMakefile( %ARGS );
 

Modified: trunk/libperl-version-perl/Notes.txt
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libperl-version-perl/Notes.txt?rev=63161&op=diff
==============================================================================
--- trunk/libperl-version-perl/Notes.txt (original)
+++ trunk/libperl-version-perl/Notes.txt Fri Oct  1 20:43:40 2010
@@ -1,3 +1,6 @@
 Bugs in version.pm
 
     1._1 produces garbage
+
+xdg: AndyA, as-tuple (or whatever you want to call it) should put the output in $version->normal() form
+xdg: AndyA, more specifically -- when bumping, it should convert the current version to normal() form and then bump it.

Modified: trunk/libperl-version-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libperl-version-perl/README?rev=63161&op=diff
==============================================================================
--- trunk/libperl-version-perl/README (original)
+++ trunk/libperl-version-perl/README Fri Oct  1 20:43:40 2010
@@ -1,4 +1,4 @@
-Perl-Version version 1.009
+Perl-Version version 1.010
 
 INSTALLATION
 

Modified: trunk/libperl-version-perl/SIGNATURE
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libperl-version-perl/SIGNATURE?rev=63161&op=diff
==============================================================================
--- trunk/libperl-version-perl/SIGNATURE (original)
+++ trunk/libperl-version-perl/SIGNATURE Fri Oct  1 20:43:40 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.66.
 
 To verify the content in this distribution, first make sure you have
 Module::Signature installed, then type:
@@ -14,26 +14,29 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
-SHA1 9339f9c6cee03d86c98e270abec031ad4593b793 Changes
-SHA1 5366d92fc4c901cba6f4875cfd8e0d1992f7d2b5 MANIFEST
-SHA1 4f63c1f80cb8f0f235c4b71e264c6299e921643e META.yml
-SHA1 ae204242f7d35bf167a1ec677fede33b1be7ba7c Makefile.PL
-SHA1 269f4419a576950afb71d1e9ad3418b2a90a824c Notes.txt
-SHA1 2e220d6fe04d7eaea9a5b242373ccf17a993adae README
+SHA1 83f5378a32733bd87552bf639e0466d6b88fe2a4 Build.PL
+SHA1 bcedf0013b936b55a1d3ce4cdf4360959db61f12 Changes
+SHA1 692f92ebb5701f09cc28c46a93423a59224b95ad MANIFEST
+SHA1 1fc366a2da7f07765ccc739bb48a80a21a635e92 META.yml
+SHA1 1b710a676c5e8b43f645d7fe9d4422a7a3c99d98 Makefile.PL
+SHA1 df4661cecee13af66d38c6db4f7a7c2f5543b011 Notes.txt
+SHA1 d480f9add98463f0600e26bded1cc3c7fd35cd9e README
 SHA1 04e504f60ee07a3e34c794736834e00bb7756479 examples/perl-reversion
-SHA1 ddbcc01e6c1b3370bc90023805512ba4860020eb lib/Perl/Version.pm
+SHA1 8c97bbeb63b586ee9c722313c2ad7858e32ff52c inc/MyBuilder.pm
+SHA1 9f7c53ace0322612f0f2a045207d103532dc6194 lib/Perl/Version.pm
 SHA1 971de73a2bff6e5c7540297c67abe34b44edcff6 t/00.load.t
 SHA1 bf558d22ecaeb972056f5f7688222de665557e1f t/05.misc.t
 SHA1 4921e1494d235523cfe2381cdba207cb8a3a78c5 t/10.regression.t
 SHA1 74d1747a052aeed0c9d5f56741366dac04ce4ff2 t/20.compare.t
 SHA1 b7f0172a33387d1c19d76ff118a75315c5db05be t/30.vstring.t
 SHA1 9a481567413161104cab15df09811c5a3b85775e t/40.perl-reversion.t
+SHA1 8c049d1fe65af78a4c01ebcc7d81f37b65b15738 t/manifest.t
 SHA1 cdb839a1f20c8c7f83565960e0da0b34ddbc87db t/pod-coverage.t
 SHA1 0190346d7072d458c8a10a45c19f86db641dcc48 t/pod.t
 -----BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.9 (Darwin)
+Version: GnuPG v1.4.10 (GNU/Linux)
 
-iEYEARECAAYFAkm1Qf4ACgkQwoknRJZQnCG2JgCgrNateRhwzJzHk4nQ6tfWMHbn
-EHEAniT/T3GB/sIIudwD72RAKQjAR1fr
-=TiaO
+iEYEARECAAYFAkyWLg4ACgkQwoknRJZQnCEywQCfW8fSiV6b1WPAAMcpKBsCKQtX
+QpwAn2HH0kM7SYeAVD08peDGNZDb9k1q
+=OZXW
 -----END PGP SIGNATURE-----

Modified: trunk/libperl-version-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libperl-version-perl/debian/changelog?rev=63161&op=diff
==============================================================================
--- trunk/libperl-version-perl/debian/changelog (original)
+++ trunk/libperl-version-perl/debian/changelog Fri Oct  1 20:43:40 2010
@@ -1,8 +1,10 @@
-libperl-version-perl (1.009-2) UNRELEASED; urgency=low
+libperl-version-perl (1.010-1) UNRELEASED; urgency=low
 
   * Added myself to Uploaders, upped standards version 
+  * New upstream release
+  * Refreshed copyright
 
- -- Nicholas Bamber <nicholas at periapt.co.uk>  Fri, 01 Oct 2010 21:13:26 +0100
+ -- Nicholas Bamber <nicholas at periapt.co.uk>  Fri, 01 Oct 2010 21:24:17 +0100
 
 libperl-version-perl (1.009-1) unstable; urgency=low
 

Modified: trunk/libperl-version-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libperl-version-perl/debian/copyright?rev=63161&op=diff
==============================================================================
--- trunk/libperl-version-perl/debian/copyright (original)
+++ trunk/libperl-version-perl/debian/copyright Fri Oct  1 20:43:40 2010
@@ -1,22 +1,24 @@
-Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=59
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
 Maintainer: Andy Armstrong <andy at hexten.net>
 Source: http://search.cpan.org/dist/Perl-Version/
 Name: Perl-Version
 
 Files: *
-Copyright: 2007, Andy Armstrong <andy at hexten.net>
+Copyright: Andy Armstrong <andy at hexten.net>
 License: Artistic or GPL-1+
 
 Files: debian/*
-Copyright: 2009, gregor herrmann <gregoa at debian.org>
+Copyright:
+ 2009, gregor herrmann <gregoa at debian.org>
+ 2010, Nicholas Bamber <nicholas at periapt.co.uk>
 License: Artistic or GPL-1+
 
 License: Artistic
  This program is free software; you can redistribute it and/or modify
  it under the terms of the Artistic License, which comes with Perl.
  .
- On Debian GNU/Linux systems, the complete text of the Artistic License
- can be found in `/usr/share/common-licenses/Artistic'
+ On Debian systems, the complete text of the Artistic License
+ can be found in `/usr/share/common-licenses/Artistic'.
 
 License: GPL-1+
  This program is free software; you can redistribute it and/or modify
@@ -24,5 +26,5 @@
  the Free Software Foundation; either version 1, or (at your option)
  any later version.
  .
- On Debian GNU/Linux systems, the complete text of the GNU General
- Public License can be found in `/usr/share/common-licenses/GPL'
+ On Debian systems, the complete text of version 1 of the
+ General Public License can be found in `/usr/share/common-licenses/GPL-1'.

Modified: trunk/libperl-version-perl/lib/Perl/Version.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libperl-version-perl/lib/Perl/Version.pm?rev=63161&op=diff
==============================================================================
--- trunk/libperl-version-perl/lib/Perl/Version.pm (original)
+++ trunk/libperl-version-perl/lib/Perl/Version.pm Fri Oct  1 20:43:40 2010
@@ -5,7 +5,7 @@
 use Carp;
 use Scalar::Util qw( blessed );
 
-our $VERSION = '1.009';
+our $VERSION = '1.010';
 
 use overload (
   '""'  => \&stringify,
@@ -371,7 +371,7 @@
 
 =head1 VERSION
 
-This document describes Perl::Version version 1.009
+This document describes Perl::Version version 1.010
 
 =head1 SYNOPSIS
 




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