r30164 - in /trunk/libsub-install-perl: Changes MANIFEST META.yml Makefile.PL debian/changelog lib/Sub/Install.pm

bricas-guest at users.alioth.debian.org bricas-guest at users.alioth.debian.org
Tue Jan 27 12:59:10 UTC 2009


Author: bricas-guest
Date: Tue Jan 27 12:59:07 2009
New Revision: 30164

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

Modified:
    trunk/libsub-install-perl/Changes
    trunk/libsub-install-perl/MANIFEST
    trunk/libsub-install-perl/META.yml
    trunk/libsub-install-perl/Makefile.PL
    trunk/libsub-install-perl/debian/changelog
    trunk/libsub-install-perl/lib/Sub/Install.pm

Modified: trunk/libsub-install-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsub-install-perl/Changes?rev=30164&op=diff
==============================================================================
--- trunk/libsub-install-perl/Changes (original)
+++ trunk/libsub-install-perl/Changes Tue Jan 27 12:59:07 2009
@@ -1,4 +1,7 @@
 Revision history for Sub-Install
+
+0.925   2009-01-16
+        add repo loc to metadata
 
 0.924   2006-11-13
         packaging improvements

Modified: trunk/libsub-install-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsub-install-perl/MANIFEST?rev=30164&op=diff
==============================================================================
--- trunk/libsub-install-perl/MANIFEST (original)
+++ trunk/libsub-install-perl/MANIFEST Tue Jan 27 12:59:07 2009
@@ -1,19 +1,19 @@
 Changes
 lib/Sub/Install.pm
+LICENSE
 Makefile.PL
-MANIFEST
+MANIFEST			This list of files
 README
 t/00-load.t
 t/auto_as.t
 t/export.t
+t/inst-blessed.t
 t/install.t
-t/inst-blessed.t
 t/misc_errors.t
+t/perl-critic.t
 t/pod-coverage.t
 t/pod.t
 t/reinstall.t
 t/SI_install.t
 t/SI_reinstall.t
-t/perl-critic.t
-LICENSE
 META.yml                                 Module meta-data (added by MakeMaker)

Modified: trunk/libsub-install-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsub-install-perl/META.yml?rev=30164&op=diff
==============================================================================
--- trunk/libsub-install-perl/META.yml (original)
+++ trunk/libsub-install-perl/META.yml Tue Jan 27 12:59:07 2009
@@ -1,15 +1,23 @@
 --- #YAML:1.0
-name:                Sub-Install
-version:             0.924
-abstract:            install subroutines into packages easily
-license:             perl
-generated_by:        ExtUtils::MakeMaker version 6.31
-distribution_type:   module
-requires:     
-    Scalar::Util:                  0
-    Test::More:                    0
-meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.2.html
-    version: 1.2
+name:               Sub-Install
+version:            0.925
+abstract:           install subroutines into packages easily
 author:
     - Ricardo Signes <rjbs at cpan.org>
+license:            perl
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    Scalar::Util:  0
+    Test::More:    0
+resources:
+    Repository:  http://github.com/rjbs/sub-install
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.48
+meta-spec:
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: trunk/libsub-install-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsub-install-perl/Makefile.PL?rev=30164&op=diff
==============================================================================
--- trunk/libsub-install-perl/Makefile.PL (original)
+++ trunk/libsub-install-perl/Makefile.PL Tue Jan 27 12:59:07 2009
@@ -13,6 +13,14 @@
         'Scalar::Util' => 0,
         'Test::More'   => 0,
     },
+    (eval { ExtUtils::MakeMaker->VERSION(6.46) }
+      ? (META_MERGE => {
+          resources => {
+            Repository => 'http://github.com/rjbs/sub-install'
+          }
+        })
+      : ()
+    ),
     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
     clean               => { FILES => 'Sub-Install-* cover_db' },
 );

Modified: trunk/libsub-install-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsub-install-perl/debian/changelog?rev=30164&op=diff
==============================================================================
--- trunk/libsub-install-perl/debian/changelog (original)
+++ trunk/libsub-install-perl/debian/changelog Tue Jan 27 12:59:07 2009
@@ -1,4 +1,7 @@
-libsub-install-perl (0.924-3) UNRELEASED; urgency=low
+libsub-install-perl (0.925-1) UNRELEASED; urgency=low
+
+  [ Brian Cassidy ]
+  * New upstream release
 
   [ gregor herrmann ]
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
@@ -7,7 +10,7 @@
   [ Rene Mayorga ]
   * debian/control: update my email address.
 
- -- Rene Mayorga <rmayorga at debian.org>  Tue, 20 Jan 2009 01:28:57 -0600
+ -- Brian Cassidy <brian.cassidy at gmail.com>  Tue, 27 Jan 2009 08:57:38 -0400
 
 libsub-install-perl (0.924-2) unstable; urgency=low
 

Modified: trunk/libsub-install-perl/lib/Sub/Install.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsub-install-perl/lib/Sub/Install.pm?rev=30164&op=diff
==============================================================================
--- trunk/libsub-install-perl/lib/Sub/Install.pm (original)
+++ trunk/libsub-install-perl/lib/Sub/Install.pm Tue Jan 27 12:59:07 2009
@@ -12,13 +12,11 @@
 
 =head1 VERSION
 
-version 0.924
-
- $Id: /my/cs/projects/subinst/trunk/lib/Sub/Install.pm 27898 2006-11-13T15:29:46.377747Z rjbs  $
-
-=cut
-
-our $VERSION = '0.924';
+version 0.925
+
+=cut
+
+our $VERSION = '0.925';
 
 =head1 SYNOPSIS
 
@@ -315,10 +313,9 @@
 
 =head1 BUGS
 
-Please report any bugs or feature requests to C<bug-sub-install at rt.cpan.org>,
-or through the web interface at L<http://rt.cpan.org>.  I will be notified, and
-then you'll automatically be notified of progress on your bug as I make
-changes.
+Please report any bugs or feature requests through the web interface at
+L<http://rt.cpan.org>.  I will be notified, and then you'll automatically be
+notified of progress on your bug as I make changes.
 
 =head1 COPYRIGHT
 




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