r38851 - in /branches/upstream/libproc-simple-perl/current: .cvsignore MANIFEST.SKIP META.yml Makefile.PL README Simple.pm adm/ adm/release

nhandler-guest at users.alioth.debian.org nhandler-guest at users.alioth.debian.org
Sun Jun 28 03:24:19 UTC 2009


Author: nhandler-guest
Date: Sun Jun 28 03:24:13 2009
New Revision: 38851

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=38851
Log:
[svn-upgrade] Integrating new upstream version, libproc-simple-perl (1.25)

Added:
    branches/upstream/libproc-simple-perl/current/.cvsignore
    branches/upstream/libproc-simple-perl/current/adm/
    branches/upstream/libproc-simple-perl/current/adm/release   (with props)
Modified:
    branches/upstream/libproc-simple-perl/current/MANIFEST.SKIP
    branches/upstream/libproc-simple-perl/current/META.yml
    branches/upstream/libproc-simple-perl/current/Makefile.PL
    branches/upstream/libproc-simple-perl/current/README
    branches/upstream/libproc-simple-perl/current/Simple.pm

Added: branches/upstream/libproc-simple-perl/current/.cvsignore
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-simple-perl/current/.cvsignore?rev=38851&op=file
==============================================================================
--- branches/upstream/libproc-simple-perl/current/.cvsignore (added)
+++ branches/upstream/libproc-simple-perl/current/.cvsignore Sun Jun 28 03:24:13 2009
@@ -1,0 +1,3 @@
+blib
+pm_to_blib
+Makefile

Modified: branches/upstream/libproc-simple-perl/current/MANIFEST.SKIP
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-simple-perl/current/MANIFEST.SKIP?rev=38851&op=diff
==============================================================================
--- branches/upstream/libproc-simple-perl/current/MANIFEST.SKIP (original)
+++ branches/upstream/libproc-simple-perl/current/MANIFEST.SKIP Sun Jun 28 03:24:13 2009
@@ -1,3 +1,4 @@
+.git
 blib
 ^Makefile$
 ^Makefile.old$

Modified: branches/upstream/libproc-simple-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-simple-perl/current/META.yml?rev=38851&op=diff
==============================================================================
--- branches/upstream/libproc-simple-perl/current/META.yml (original)
+++ branches/upstream/libproc-simple-perl/current/META.yml Sun Jun 28 03:24:13 2009
@@ -1,13 +1,24 @@
 --- #YAML:1.0
-name:                Proc-Simple
-version:             1.24
-abstract:            ~
-license:             ~
-generated_by:        ExtUtils::MakeMaker version 6.31
-distribution_type:   module
-requires:     
-    IO::Handle:                    0
-    Test::More:                    0
+name:               Proc-Simple
+version:            1.25
+abstract:           ~
+author:  []
+license:            unknown
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    IO::Handle:  0
+    Test::More:  0
+resources:
+    repository:  http://github.com/mschilli/proc-simple-perl
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.50
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.2.html
-    version: 1.2
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: branches/upstream/libproc-simple-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-simple-perl/current/Makefile.PL?rev=38851&op=diff
==============================================================================
--- branches/upstream/libproc-simple-perl/current/Makefile.PL (original)
+++ branches/upstream/libproc-simple-perl/current/Makefile.PL Sun Jun 28 03:24:13 2009
@@ -9,4 +9,9 @@
 	    'Test::More' => 0,
 	    'IO::Handle' => 0,
 	},
+        META_MERGE          => {
+            resources       => {
+                repository  => 'http://github.com/mschilli/proc-simple-perl',
+            }
+        },
 	);

Modified: branches/upstream/libproc-simple-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-simple-perl/current/README?rev=38851&op=diff
==============================================================================
--- branches/upstream/libproc-simple-perl/current/README (original)
+++ branches/upstream/libproc-simple-perl/current/README Sun Jun 28 03:24:13 2009
@@ -1,5 +1,5 @@
 ######################################################################
-    Proc::Simple 1.24
+    Proc::Simple 1.25
 ######################################################################
 
 NAME
@@ -255,6 +255,10 @@
         I'd recommend using perl 5.6.0 although it might also run with 5.003
         -- if you don't have it, this is the time to upgrade!
 
+        LEGALESE Copyright 1996 by Mike Schilli, all rights reserved. This
+        program is free software, you can redistribute it and/or modify it
+        under the same terms as Perl itself.
+
 AUTHOR
         Michael Schilli <michael at perlmeister.com>
 

Modified: branches/upstream/libproc-simple-perl/current/Simple.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-simple-perl/current/Simple.pm?rev=38851&op=diff
==============================================================================
--- branches/upstream/libproc-simple-perl/current/Simple.pm (original)
+++ branches/upstream/libproc-simple-perl/current/Simple.pm Sun Jun 28 03:24:13 2009
@@ -117,7 +117,7 @@
 
 @ISA     = qw(Exporter AutoLoader);
 @EXPORT  = qw( );
-$VERSION = '1.24';
+$VERSION = '1.25';
 
 ######################################################################
 # Globals: Debug and the mysterious waitpid nohang constant.
@@ -722,6 +722,11 @@
 I'd recommend using perl 5.6.0 although it might also run with 5.003
 -- if you don't have it, this is the time to upgrade!
 
+LEGALESE
+Copyright 1996 by Mike Schilli, all rights reserved. This program is
+free software, you can redistribute it and/or modify it under the same
+terms as Perl itself.
+
 =head1 AUTHOR
 
 Michael Schilli <michael at perlmeister.com>

Added: branches/upstream/libproc-simple-perl/current/adm/release
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-simple-perl/current/adm/release?rev=38851&op=file
==============================================================================
--- branches/upstream/libproc-simple-perl/current/adm/release (added)
+++ branches/upstream/libproc-simple-perl/current/adm/release Sun Jun 28 03:24:13 2009
@@ -1,0 +1,12 @@
+#!/usr/bin/perl
+###########################################
+# release -- Release this module
+# Mike Schilli, 2002 (m at perlmeister.com)
+###########################################
+use warnings;
+use strict;
+
+    # Available at http://perlmeister.com/scripts
+use ModDevUtils;
+
+ModDevUtils::release() or exit 0;

Propchange: branches/upstream/libproc-simple-perl/current/adm/release
------------------------------------------------------------------------------
    svn:executable = *




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