r50863 - in /branches/upstream/libb-utils-perl/current: .gitignore Changes MANIFEST MANIFEST.SKIP META.yml Utils.xs lib/B/Utils.pm lib/B/Utils/OP.pm xt/ppport.t xt/version.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed Jan 13 19:02:53 UTC 2010


Author: jawnsy-guest
Date: Wed Jan 13 19:02:19 2010
New Revision: 50863

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=50863
Log:
[svn-upgrade] Integrating new upstream version, libb-utils-perl (0.11)

Added:
    branches/upstream/libb-utils-perl/current/.gitignore
    branches/upstream/libb-utils-perl/current/MANIFEST.SKIP
    branches/upstream/libb-utils-perl/current/xt/ppport.t
    branches/upstream/libb-utils-perl/current/xt/version.t
Modified:
    branches/upstream/libb-utils-perl/current/Changes
    branches/upstream/libb-utils-perl/current/MANIFEST
    branches/upstream/libb-utils-perl/current/META.yml
    branches/upstream/libb-utils-perl/current/Utils.xs
    branches/upstream/libb-utils-perl/current/lib/B/Utils.pm
    branches/upstream/libb-utils-perl/current/lib/B/Utils/OP.pm

Added: branches/upstream/libb-utils-perl/current/.gitignore
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-utils-perl/current/.gitignore?rev=50863&op=file
==============================================================================
--- branches/upstream/libb-utils-perl/current/.gitignore (added)
+++ branches/upstream/libb-utils-perl/current/.gitignore Wed Jan 13 19:02:19 2010
@@ -1,0 +1,16 @@
+blib*
+Makefile
+MANIFEST.bak
+OP.c
+OP.o
+Utils.bs
+Utils.c
+Utils.def
+Utils.o
+dll.base
+dll.exp
+pm_to_blib
+*~
+.#*
+B-Utils-*
+

Modified: branches/upstream/libb-utils-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-utils-perl/current/Changes?rev=50863&op=diff
==============================================================================
--- branches/upstream/libb-utils-perl/current/Changes (original)
+++ branches/upstream/libb-utils-perl/current/Changes Wed Jan 13 19:02:19 2010
@@ -1,4 +1,13 @@
 Revision history for Perl extension B::Utils.
+
+0.11 Tue Jan 12 2010
+   - Repackaged using environment variables COPYFILE_DISABLE=1 and COPYFILE_EXTENDED_ATTRIBUTES_DISABLE=1
+   - Silenced PROTOTYPES warning on compilation
+   - Update manifest
+
+0.10 Sun Dec 20 2009
+   - Fixed B::OP::siblings
+   - Updated docs
 
 0.09 Sun Dec 06 21:36:00 PDT 2009
    - Add ExtUtils::CBuilder to prequisite list to hopefully quench any

Modified: branches/upstream/libb-utils-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-utils-perl/current/MANIFEST?rev=50863&op=diff
==============================================================================
--- branches/upstream/libb-utils-perl/current/MANIFEST (original)
+++ branches/upstream/libb-utils-perl/current/MANIFEST Wed Jan 13 19:02:19 2010
@@ -1,3 +1,4 @@
+.gitignore
 build/IFiles.pm
 BUtils.h
 BUtils_op.h
@@ -6,8 +7,10 @@
 lib/B/Utils/OP.pm
 Makefile.PL
 MANIFEST			This list of files
+MANIFEST.SKIP
 META.yml
 OP.xs
+ppport.h
 README
 t/10use.t
 t/11export.t
@@ -31,6 +34,7 @@
 t/utils/51croak.t
 typemap
 Utils.xs
+xt/pod.t
+xt/ppport.t
 xt/signature.t
-xt/pod.t
-ppport.h
+xt/version.t

Added: branches/upstream/libb-utils-perl/current/MANIFEST.SKIP
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-utils-perl/current/MANIFEST.SKIP?rev=50863&op=file
==============================================================================
--- branches/upstream/libb-utils-perl/current/MANIFEST.SKIP (added)
+++ branches/upstream/libb-utils-perl/current/MANIFEST.SKIP Wed Jan 13 19:02:19 2010
@@ -1,0 +1,17 @@
+^blib
+^Makefile$
+^Makefile\.old$
+^MANIFEST\.bak$
+^OP\.c$
+^OP\.o$
+^Utils\.bs$
+^Utils\.c$
+^Utils\.def$
+^Utils\.o$
+^dll\.base$
+^dll\.exp$
+^pm_to_blib$
+~$
+^\.#
+^B-Utils-
+^\.git/

Modified: branches/upstream/libb-utils-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-utils-perl/current/META.yml?rev=50863&op=diff
==============================================================================
--- branches/upstream/libb-utils-perl/current/META.yml (original)
+++ branches/upstream/libb-utils-perl/current/META.yml Wed Jan 13 19:02:19 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               B-Utils
-version:            0.10
+version:            0.11
 abstract:           Helper functions for op tree manipulation
 author:
     - Joshua b. Jore <jjore at cpan.org>
@@ -24,7 +24,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.56
+generated_by:       ExtUtils::MakeMaker version 6.55_02
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

Modified: branches/upstream/libb-utils-perl/current/Utils.xs
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-utils-perl/current/Utils.xs?rev=50863&op=diff
==============================================================================
--- branches/upstream/libb-utils-perl/current/Utils.xs (original)
+++ branches/upstream/libb-utils-perl/current/Utils.xs Wed Jan 13 19:02:19 2010
@@ -257,3 +257,4 @@
 }
 
 MODULE = B::Utils           PACKAGE = B::Utils
+PROTOTYPES: DISABLE

Modified: branches/upstream/libb-utils-perl/current/lib/B/Utils.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-utils-perl/current/lib/B/Utils.pm?rev=50863&op=diff
==============================================================================
--- branches/upstream/libb-utils-perl/current/lib/B/Utils.pm (original)
+++ branches/upstream/libb-utils-perl/current/lib/B/Utils.pm Wed Jan 13 19:02:19 2010
@@ -28,11 +28,11 @@
 
 =head1 VERSION
 
-0.10
-
-=cut
-
-$VERSION = '0.10';
+0.11
+
+=cut
+
+$VERSION = '0.11';
 
 
 

Modified: branches/upstream/libb-utils-perl/current/lib/B/Utils/OP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-utils-perl/current/lib/B/Utils/OP.pm?rev=50863&op=diff
==============================================================================
--- branches/upstream/libb-utils-perl/current/lib/B/Utils/OP.pm (original)
+++ branches/upstream/libb-utils-perl/current/lib/B/Utils/OP.pm Wed Jan 13 19:02:19 2010
@@ -8,7 +8,7 @@
 
 our @ISA = 'Exporter';
 require Exporter;
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 our @EXPORT = qw(parent_op return_op);
 
 

Added: branches/upstream/libb-utils-perl/current/xt/ppport.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-utils-perl/current/xt/ppport.t?rev=50863&op=file
==============================================================================
--- branches/upstream/libb-utils-perl/current/xt/ppport.t (added)
+++ branches/upstream/libb-utils-perl/current/xt/ppport.t Wed Jan 13 19:02:19 2010
@@ -1,0 +1,12 @@
+#!perl
+use strict;
+use warnings;
+use Test::More;
+
+plan( skip_all => "Require a version of Test::PPPort that takes arguments to ppport_ok" );
+#if ( eval "use Test::PPPort; 1" ) {
+#    ppport_ok( '--compat-version=5.006' );
+#}
+#else {
+#    plan( skip_all => "Test::PPPort required for testing ppport.h" );
+#}

Added: branches/upstream/libb-utils-perl/current/xt/version.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-utils-perl/current/xt/version.t?rev=50863&op=file
==============================================================================
--- branches/upstream/libb-utils-perl/current/xt/version.t (added)
+++ branches/upstream/libb-utils-perl/current/xt/version.t Wed Jan 13 19:02:19 2010
@@ -1,0 +1,35 @@
+#!perl
+use strict;
+use warnings;
+use Test::More tests => 6;
+
+
+open my $fh, '<', 'lib/B/Utils.pm'
+  or die "Can't open lib/B/Utils.pm: $!";
+undef $/;
+my $doc = <$fh>;
+close $fh;
+
+ok( my ( $pod_version ) = $doc =~ /^=head1\s+VERSION\s+([\d._]+)/m,
+    "Extract version from pod in lib/B/Utils.pm" );
+ok( my ( $b_utils_pm_version ) = $doc =~ /^\$VERSION\s+=\s+'([\d._]+)';/m,
+    "Extract version from code in lib/B/Utils.pm" );
+is( $pod_version, $b_utils_pm_version, 'Documentation & $VERSION are the same' );
+
+
+open $fh, '<', 'lib/B/Utils/OP.pm'
+    or die "Can't open lib/B/Utils/OP.pm: $!";
+$doc = <$fh>;
+close $fh;
+ok( my( $b_utils_op_pm_version ) = $doc =~ /^our\s+\$VERSION\s+=\s+'([\d._]+)';/
+    "Extract version from code in lib/B/Utils/OP.pm" );
+
+
+open $fh, '<', 'README'
+  or die "Can't open README: $!";
+$doc = <$fh>;
+close $fh;
+ok( my ( $readme_version ) = $doc =~ /^VERSION\s+([\d._]+)/m,
+    "Extract version from README" );
+
+is( $readme_version, $pm_version, 'README & $VERSION are the same' );




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