r35395 - in /branches/upstream/libdevel-refcount-perl/current: Changes META.yml Makefile.PL lib/Devel/Refcount.pm
jawnsy-guest at users.alioth.debian.org
jawnsy-guest at users.alioth.debian.org
Thu May 14 17:38:28 UTC 2009
Author: jawnsy-guest
Date: Thu May 14 17:38:24 2009
New Revision: 35395
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=35395
Log:
[svn-upgrade] Integrating new upstream version, libdevel-refcount-perl (0.05)
Modified:
branches/upstream/libdevel-refcount-perl/current/Changes
branches/upstream/libdevel-refcount-perl/current/META.yml
branches/upstream/libdevel-refcount-perl/current/Makefile.PL
branches/upstream/libdevel-refcount-perl/current/lib/Devel/Refcount.pm
Modified: branches/upstream/libdevel-refcount-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-refcount-perl/current/Changes?rev=35395&op=diff
==============================================================================
--- branches/upstream/libdevel-refcount-perl/current/Changes (original)
+++ branches/upstream/libdevel-refcount-perl/current/Changes Thu May 14 17:38:24 2009
@@ -1,4 +1,8 @@
Revision history for Devel-Refcount
+
+0.05 CHANGES:
+ * use warnings
+ * Added (C) declaration to main file
0.04 BUGFIXES:
* Declare ExtUtils::CBuilder and Module::Build as configure_requires
Modified: branches/upstream/libdevel-refcount-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-refcount-perl/current/META.yml?rev=35395&op=diff
==============================================================================
--- branches/upstream/libdevel-refcount-perl/current/META.yml (original)
+++ branches/upstream/libdevel-refcount-perl/current/META.yml Thu May 14 17:38:24 2009
@@ -1,6 +1,6 @@
---
name: Devel-Refcount
-version: 0.04
+version: 0.05
author:
- 'Paul Evans E<lt>leonerd at leonerd.org.ukE<gt>'
abstract: obtain the REFCNT value of a referent
@@ -18,8 +18,8 @@
provides:
Devel::Refcount:
file: lib/Devel/Refcount.pm
- version: 0.04
-generated_by: Module::Build version 0.280801
+ version: 0.05
+generated_by: Module::Build version 0.3
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.2.html
version: 1.2
Modified: branches/upstream/libdevel-refcount-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-refcount-perl/current/Makefile.PL?rev=35395&op=diff
==============================================================================
--- branches/upstream/libdevel-refcount-perl/current/Makefile.PL (original)
+++ branches/upstream/libdevel-refcount-perl/current/Makefile.PL Thu May 14 17:38:24 2009
@@ -1,4 +1,4 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.2808_01
+# Note: this file was auto-generated by Module::Build::Compat version 0.30
use Module::Build::Compat 0.02;
Module::Build::Compat->run_build_pl(args => \@ARGV);
Modified: branches/upstream/libdevel-refcount-perl/current/lib/Devel/Refcount.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-refcount-perl/current/lib/Devel/Refcount.pm?rev=35395&op=diff
==============================================================================
--- branches/upstream/libdevel-refcount-perl/current/lib/Devel/Refcount.pm (original)
+++ branches/upstream/libdevel-refcount-perl/current/lib/Devel/Refcount.pm Thu May 14 17:38:24 2009
@@ -1,13 +1,19 @@
+# You may distribute under the terms of either the GNU General Public License
+# or the Artistic License (the same terms as Perl itself)
+#
+# (C) Paul Evans, 2008 -- leonerd at leonerd.org.uk
+
package Devel::Refcount;
use strict;
+use warnings;
use base qw( Exporter );
use base qw( DynaLoader );
our @EXPORT_OK = qw( refcount );
-our $VERSION = '0.04';
+our $VERSION = '0.05';
__PACKAGE__->bootstrap( $VERSION );
@@ -110,5 +116,4 @@
=head1 AUTHOR
-
Paul Evans E<lt>leonerd at leonerd.org.ukE<gt>
More information about the Pkg-perl-cvs-commits
mailing list