r31182 - in /branches/upstream/libreadonly-xs-perl/current: Changes META.yml README XS.pm XS.xs

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Sat Feb 28 01:37:21 UTC 2009


Author: ryan52-guest
Date: Sat Feb 28 01:37:17 2009
New Revision: 31182

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=31182
Log:
[svn-upgrade] Integrating new upstream version, libreadonly-xs-perl (1.05)

Modified:
    branches/upstream/libreadonly-xs-perl/current/Changes
    branches/upstream/libreadonly-xs-perl/current/META.yml
    branches/upstream/libreadonly-xs-perl/current/README
    branches/upstream/libreadonly-xs-perl/current/XS.pm
    branches/upstream/libreadonly-xs-perl/current/XS.xs

Modified: branches/upstream/libreadonly-xs-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libreadonly-xs-perl/current/Changes?rev=31182&op=diff
==============================================================================
--- branches/upstream/libreadonly-xs-perl/current/Changes (original)
+++ branches/upstream/libreadonly-xs-perl/current/Changes Sat Feb 28 01:37:17 2009
@@ -1,4 +1,8 @@
 Revision history for Perl extension Readonly::XS.
+
+1.05  2009 February 24
+        - Fix minor syntax error that had been plaguing many people.
+          Thanks to Chris Dolan for shaming me into fixing this.
 
 1.04  2005 December 6
         - No code changes; updated Makefile.PL to require Readonly.

Modified: branches/upstream/libreadonly-xs-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libreadonly-xs-perl/current/META.yml?rev=31182&op=diff
==============================================================================
--- branches/upstream/libreadonly-xs-perl/current/META.yml (original)
+++ branches/upstream/libreadonly-xs-perl/current/META.yml Sat Feb 28 01:37:17 2009
@@ -1,11 +1,14 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
-name:         Readonly-XS
-version:      1.04
-version_from: XS.pm
-installdirs:  site
-requires:
+--- #YAML:1.0
+name:                Readonly-XS
+version:             1.05
+abstract:            ~
+license:             ~
+author:              
+    - Eric Roode <roode at cpan.org>
+generated_by:        ExtUtils::MakeMaker version 6.42
+distribution_type:   module
+requires:     
     Readonly:                      1.02
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.17
+meta-spec:
+    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
+    version: 1.3

Modified: branches/upstream/libreadonly-xs-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libreadonly-xs-perl/current/README?rev=31182&op=diff
==============================================================================
--- branches/upstream/libreadonly-xs-perl/current/README (original)
+++ branches/upstream/libreadonly-xs-perl/current/README Sat Feb 28 01:37:17 2009
@@ -1,4 +1,4 @@
-Readonly/XS version 1.04
+Readonly/XS version 1.05
 ========================
 
 This is a companion module to Readonly.pm.  You do not use
@@ -24,7 +24,7 @@
 
 Eric J. Roode, roode at cpan.org
 
-Copyright (c) 2003-2004 by Eric J. Roode. All Rights Reserved.  This
+Copyright (c) 2003-2009 by Eric J. Roode. All Rights Reserved.  This
 module is free software; you can redistribute it and/or modify it under
 the same terms as Perl itself.
 

Modified: branches/upstream/libreadonly-xs-perl/current/XS.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libreadonly-xs-perl/current/XS.pm?rev=31182&op=diff
==============================================================================
--- branches/upstream/libreadonly-xs-perl/current/XS.pm (original)
+++ branches/upstream/libreadonly-xs-perl/current/XS.pm Sat Feb 28 01:37:17 2009
@@ -1,7 +1,3 @@
-=for gpg
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
 =head1 NAME
 
 Readonly::XS - Companion module for Readonly.pm, to speed up read-only
@@ -9,7 +5,7 @@
 
 =head1 VERSION
 
-This document describes version 1.04 of Readonly::XS, December 6, 2005.
+This document describes version 1.05 of Readonly::XS, February 24, 2009.
 
 =cut
 
@@ -17,9 +13,9 @@
 
 use strict;
 use warnings;
-use vars qw($VERSION $MAGIC_COOKIE %PL_COMPAT);
+use vars qw($VERSION $MAGIC_COOKIE);
 
-$VERSION = '1.04';
+$VERSION = '1.05';
 
 require XSLoader;
 XSLoader::load('Readonly::XS', $VERSION);
@@ -33,7 +29,7 @@
     if ($MAGIC_COOKIE ne "Do NOT use or require Readonly::XS unless you're me.")
     {
         require Carp;
-        Carp::croak "Readonly::XS is not a standalone module. You should not use it directly.";
+        Carp::croak("Readonly::XS is not a standalone module. You should not use it directly.");
     }
 }
 
@@ -106,7 +102,7 @@
 
 Eric Roode, roode at cpan.org
 
-Copyright (c) 2003-2005 by Eric J. Roode. All Rights Reserved.
+Copyright (c) 2003-2009 by Eric J. Roode. All Rights Reserved.
 This module is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
 
@@ -115,15 +111,3 @@
 message.
 
 =cut
-
-=begin gpg
-
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.1 (Cygwin)
-
-iD8DBQFDlfagY96i4h5M0egRAmXoAJkBZAkcF+66S6d6Ay0Tnb0DYi1KLwCgkfTP
-5D83z+YoANwU9IcN+zS5OvM=
-=6TLK
------END PGP SIGNATURE-----
-
-=end gpg

Modified: branches/upstream/libreadonly-xs-perl/current/XS.xs
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libreadonly-xs-perl/current/XS.xs?rev=31182&op=diff
==============================================================================
--- branches/upstream/libreadonly-xs-perl/current/XS.xs (original)
+++ branches/upstream/libreadonly-xs-perl/current/XS.xs Sat Feb 28 01:37:17 2009
@@ -1,9 +1,3 @@
-=for gpg
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-=cut
-
 #include "EXTERN.h"
 #include "perl.h"
 #include "XSUB.h"
@@ -28,17 +22,3 @@
 PROTOTYPE: $
 CODE:
     SvREADONLY_on(sv);
-
-=begin gpg
-
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.2.1 (GNU/Linux)
-
-iD8DBQE+wOWGY96i4h5M0egRAjBaAKDvEihLkvuJZv3zqbzaa09JHmbLGACaA0di
-jJLNeedS+HAADlX0o8Nl8tA=
-=zZ/c
------END PGP SIGNATURE-----
-
-=end gpg
-
-=cut




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