r35549 - in /branches/upstream/libacme-damn-perl/current: Damn.pm Damn.xs META.yml Makefile.PL

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun May 17 04:32:32 UTC 2009


Author: jawnsy-guest
Date: Sun May 17 04:32:26 2009
New Revision: 35549

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=35549
Log:
[svn-upgrade] Integrating new upstream version, libacme-damn-perl (0.04)

Modified:
    branches/upstream/libacme-damn-perl/current/Damn.pm
    branches/upstream/libacme-damn-perl/current/Damn.xs
    branches/upstream/libacme-damn-perl/current/META.yml
    branches/upstream/libacme-damn-perl/current/Makefile.PL

Modified: branches/upstream/libacme-damn-perl/current/Damn.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libacme-damn-perl/current/Damn.pm?rev=35549&op=diff
==============================================================================
--- branches/upstream/libacme-damn-perl/current/Damn.pm (original)
+++ branches/upstream/libacme-damn-perl/current/Damn.pm Sun May 17 04:32:26 2009
@@ -1,4 +1,3 @@
-# $Id: Damn.pm,v 1.10 2006-02-05 00:03:42 ian Exp $
 package Acme::Damn;
 
 use 5.000;
@@ -9,7 +8,7 @@
 
 use vars qw( $VERSION @ISA @EXPORT @EXPORT_OK );
 
-  $VERSION    = '0.03';
+  $VERSION    = '0.04';
   @ISA        = qw( Exporter DynaLoader );
   @EXPORT     = qw( damn                );
 

Modified: branches/upstream/libacme-damn-perl/current/Damn.xs
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libacme-damn-perl/current/Damn.xs?rev=35549&op=diff
==============================================================================
--- branches/upstream/libacme-damn-perl/current/Damn.xs (original)
+++ branches/upstream/libacme-damn-perl/current/Damn.xs Sun May 17 04:32:26 2009
@@ -1,13 +1,10 @@
-/* $Id: Damn.xs,v 1.10 2006-02-05 00:03:42 ian Exp $ */
-
 /*
 ** Damn.xs
 **
 ** Define the damn() method of Acme::Damn.
 **
 ** Author:        I. Brayshaw <ian at onemore.org>
-** Revision:      $Revision: 1.10 $
-** Last modified: $Date: 2006-02-05 00:03:42 $
+** Last modified: Fri May 15 18:01:41 BST 2009
 */
 
 #include "EXTERN.h"
@@ -70,7 +67,11 @@
     ** the programmer's wrist; who know's what might happen otherwise
     */
     if ( SvREADONLY( sv ) )
-      croak( PL_no_modify );
+      /*
+      ** use "%s" rather than just PL_no_modify to satisfy gcc's -Wformat
+      **   see https://rt.cpan.org/Ticket/Display.html?id=45778
+      */
+      croak( "%s" , PL_no_modify );
 
     SvREFCNT_dec( SvSTASH( sv ) );  /* remove the reference to the stash */
     SvSTASH( sv ) = NULL;

Modified: branches/upstream/libacme-damn-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libacme-damn-perl/current/META.yml?rev=35549&op=diff
==============================================================================
--- branches/upstream/libacme-damn-perl/current/META.yml (original)
+++ branches/upstream/libacme-damn-perl/current/META.yml Sun May 17 04:32:26 2009
@@ -1,12 +1,15 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
-name:         Acme-Damn
-version:      0.03
-version_from: Damn.pm
-installdirs:  site
-requires:
+--- #YAML:1.0
+name:                Acme-Damn
+version:             0.04
+abstract:            ~
+license:             ~
+author:              
+    - Ian Brayshaw <ian at onemore.org>
+generated_by:        ExtUtils::MakeMaker version 6.42
+distribution_type:   module
+requires:     
     Test::Exception:               0
     Test::More:                    0
-
-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/libacme-damn-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libacme-damn-perl/current/Makefile.PL?rev=35549&op=diff
==============================================================================
--- branches/upstream/libacme-damn-perl/current/Makefile.PL (original)
+++ branches/upstream/libacme-damn-perl/current/Makefile.PL Sun May 17 04:32:26 2009
@@ -13,10 +13,10 @@
     'NAME'         => 'Acme::Damn'                            ,
     'VERSION_FROM' => 'Damn.pm'                               ,
     'PREREQ_PM'    => { 'Test::More'      => 0 ,
-	                    'Test::Exception' => 0 }              ,
+                        'Test::Exception' => 0 }              ,
     ($] >= 5.005 ?
       ( AUTHOR     => 'Ian Brayshaw <ian at onemore.org>') : ()) ,
     'LIBS'         => ['']                                    ,
     'DEFINE'       => ''                                      ,
-    'INC'	   	=> '-I.'
+    'INC'          => '-I.'
 );




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