r35397 - in /trunk/libdevel-refcount-perl: Changes META.yml Makefile.PL debian/changelog debian/copyright lib/Devel/Refcount.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Thu May 14 17:40:45 UTC 2009


Author: jawnsy-guest
Date: Thu May 14 17:40:39 2009
New Revision: 35397

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=35397
Log:
Upgraded to the new upstream version, which includes a clear license/copyright statement.

Modified:
    trunk/libdevel-refcount-perl/Changes
    trunk/libdevel-refcount-perl/META.yml
    trunk/libdevel-refcount-perl/Makefile.PL
    trunk/libdevel-refcount-perl/debian/changelog
    trunk/libdevel-refcount-perl/debian/copyright
    trunk/libdevel-refcount-perl/lib/Devel/Refcount.pm

Modified: trunk/libdevel-refcount-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-refcount-perl/Changes?rev=35397&op=diff
==============================================================================
--- trunk/libdevel-refcount-perl/Changes (original)
+++ trunk/libdevel-refcount-perl/Changes Thu May 14 17:40:39 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: trunk/libdevel-refcount-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-refcount-perl/META.yml?rev=35397&op=diff
==============================================================================
--- trunk/libdevel-refcount-perl/META.yml (original)
+++ trunk/libdevel-refcount-perl/META.yml Thu May 14 17:40:39 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: trunk/libdevel-refcount-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-refcount-perl/Makefile.PL?rev=35397&op=diff
==============================================================================
--- trunk/libdevel-refcount-perl/Makefile.PL (original)
+++ trunk/libdevel-refcount-perl/Makefile.PL Thu May 14 17:40:39 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: trunk/libdevel-refcount-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-refcount-perl/debian/changelog?rev=35397&op=diff
==============================================================================
--- trunk/libdevel-refcount-perl/debian/changelog (original)
+++ trunk/libdevel-refcount-perl/debian/changelog Thu May 14 17:40:39 2009
@@ -1,7 +1,4 @@
-libdevel-refcount-perl (0.04-1) UNRELEASED; urgency=low
-
-  TODO:
-  - I don't find any copyright statement anywhere in the code
+libdevel-refcount-perl (0.05-1) unstable; urgency=low
 
   * Initial Release. (Closes: #527107)
 

Modified: trunk/libdevel-refcount-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-refcount-perl/debian/copyright?rev=35397&op=diff
==============================================================================
--- trunk/libdevel-refcount-perl/debian/copyright (original)
+++ trunk/libdevel-refcount-perl/debian/copyright Thu May 14 17:40:39 2009
@@ -5,7 +5,7 @@
 Upstream-Name: Devel-Refcount
 
 Files: *
-Copyright: Paul Evans <leonerd at leonerd.org.uk>
+Copyright: 2008, Paul Evans <leonerd at leonerd.org.uk>
 License-Alias: Perl
 License: Artistic | GPL-1+
 

Modified: trunk/libdevel-refcount-perl/lib/Devel/Refcount.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-refcount-perl/lib/Devel/Refcount.pm?rev=35397&op=diff
==============================================================================
--- trunk/libdevel-refcount-perl/lib/Devel/Refcount.pm (original)
+++ trunk/libdevel-refcount-perl/lib/Devel/Refcount.pm Thu May 14 17:40:39 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