r50869 - in /trunk/libb-utils-perl: .gitignore Changes MANIFEST MANIFEST.SKIP META.yml Utils.xs debian/changelog 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:05:34 UTC 2010


Author: jawnsy-guest
Date: Wed Jan 13 19:05:17 2010
New Revision: 50869

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

Added:
    trunk/libb-utils-perl/.gitignore
      - copied unchanged from r50867, branches/upstream/libb-utils-perl/current/.gitignore
    trunk/libb-utils-perl/MANIFEST.SKIP
      - copied unchanged from r50867, branches/upstream/libb-utils-perl/current/MANIFEST.SKIP
    trunk/libb-utils-perl/xt/ppport.t
      - copied unchanged from r50867, branches/upstream/libb-utils-perl/current/xt/ppport.t
    trunk/libb-utils-perl/xt/version.t
      - copied unchanged from r50867, branches/upstream/libb-utils-perl/current/xt/version.t
Modified:
    trunk/libb-utils-perl/Changes
    trunk/libb-utils-perl/MANIFEST
    trunk/libb-utils-perl/META.yml
    trunk/libb-utils-perl/Utils.xs
    trunk/libb-utils-perl/debian/changelog
    trunk/libb-utils-perl/lib/B/Utils.pm
    trunk/libb-utils-perl/lib/B/Utils/OP.pm

Modified: trunk/libb-utils-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libb-utils-perl/Changes?rev=50869&op=diff
==============================================================================
--- trunk/libb-utils-perl/Changes (original)
+++ trunk/libb-utils-perl/Changes Wed Jan 13 19:05:17 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: trunk/libb-utils-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libb-utils-perl/MANIFEST?rev=50869&op=diff
==============================================================================
--- trunk/libb-utils-perl/MANIFEST (original)
+++ trunk/libb-utils-perl/MANIFEST Wed Jan 13 19:05:17 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

Modified: trunk/libb-utils-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libb-utils-perl/META.yml?rev=50869&op=diff
==============================================================================
--- trunk/libb-utils-perl/META.yml (original)
+++ trunk/libb-utils-perl/META.yml Wed Jan 13 19:05:17 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: trunk/libb-utils-perl/Utils.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libb-utils-perl/Utils.xs?rev=50869&op=diff
==============================================================================
--- trunk/libb-utils-perl/Utils.xs (original)
+++ trunk/libb-utils-perl/Utils.xs Wed Jan 13 19:05:17 2010
@@ -257,3 +257,4 @@
 }
 
 MODULE = B::Utils           PACKAGE = B::Utils
+PROTOTYPES: DISABLE

Modified: trunk/libb-utils-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libb-utils-perl/debian/changelog?rev=50869&op=diff
==============================================================================
--- trunk/libb-utils-perl/debian/changelog (original)
+++ trunk/libb-utils-perl/debian/changelog Wed Jan 13 19:05:17 2010
@@ -1,4 +1,4 @@
-libb-utils-perl (0.10-1) UNRELEASED; urgency=low
+libb-utils-perl (0.11-1) UNRELEASED; urgency=low
 
   This version has lots of lintian errors due to being packed
   by BSD tar rather than GNU tar.
@@ -18,7 +18,7 @@
   * Use new short rules format
   * Rewrote control file description
 
- -- Jonathan Yu <jawnsy at cpan.org>  Fri, 01 Jan 2010 22:41:26 -0500
+ -- Jonathan Yu <jawnsy at cpan.org>  Wed, 13 Jan 2010 14:09:34 -0500
 
 libb-utils-perl (0.07-1) unstable; urgency=low
 

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

Modified: trunk/libb-utils-perl/lib/B/Utils/OP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libb-utils-perl/lib/B/Utils/OP.pm?rev=50869&op=diff
==============================================================================
--- trunk/libb-utils-perl/lib/B/Utils/OP.pm (original)
+++ trunk/libb-utils-perl/lib/B/Utils/OP.pm Wed Jan 13 19:05:17 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);
 
 




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