r57672 - in /branches/upstream/libgtk2-unique-perl/current: Changes META.yml Makefile.PL README lib/Gtk2/Unique.pm xs/UniqueApp.xs

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat May 8 12:37:17 UTC 2010


Author: jawnsy-guest
Date: Sat May  8 12:37:05 2010
New Revision: 57672

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=57672
Log:
[svn-upgrade] Integrating new upstream version, libgtk2-unique-perl (0.05)

Modified:
    branches/upstream/libgtk2-unique-perl/current/Changes
    branches/upstream/libgtk2-unique-perl/current/META.yml
    branches/upstream/libgtk2-unique-perl/current/Makefile.PL
    branches/upstream/libgtk2-unique-perl/current/README
    branches/upstream/libgtk2-unique-perl/current/lib/Gtk2/Unique.pm
    branches/upstream/libgtk2-unique-perl/current/xs/UniqueApp.xs

Modified: branches/upstream/libgtk2-unique-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgtk2-unique-perl/current/Changes?rev=57672&op=diff
==============================================================================
--- branches/upstream/libgtk2-unique-perl/current/Changes (original)
+++ branches/upstream/libgtk2-unique-perl/current/Changes Sat May  8 12:37:05 2010
@@ -1,7 +1,12 @@
 Revision history for Gtk2::Unique
 
-0.04 Tue Nov  3 22:27:54 CET 2009
-	The signal Gtk2::UniqueApp::message-received now receives command name
+
+0.05 Wed May  5 19:48:14 CEST 2010
+	Minor XS update: the length of a string was computed twice.
+
+
+0.04 Tue Nov  3 22:27:54 CEST 2009
+	The signal Gtk2::UniqueApp::message-received now receives the command name
 	instaed of the command id.
 	The macro UNIQUE_CHECK_VERSION will be fixed in 1.1.0.
 

Modified: branches/upstream/libgtk2-unique-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgtk2-unique-perl/current/META.yml?rev=57672&op=diff
==============================================================================
--- branches/upstream/libgtk2-unique-perl/current/META.yml (original)
+++ branches/upstream/libgtk2-unique-perl/current/META.yml Sat May  8 12:37:05 2010
@@ -1,14 +1,23 @@
 --- #YAML:1.0
-name:                Gtk2-Unique
-version:             0.04
-abstract:            Use single instance applications
-license:             perl, lgpl
-author:              
+name:               Gtk2-Unique
+version:            0.05
+abstract:           Use single instance applications
+author:
     - Emmanuel Rodriguez <potyl at cpan.org>
-generated_by:        ExtUtils::MakeMaker version 6.42
-distribution_type:   module
-requires:     
-    Gtk2:                          1.161
+license:            perl, lgpl
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    Gtk2:  1.161
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.55_02
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4
+repository:         http://github.com/potyl/gtk2-unique/tree/master

Modified: branches/upstream/libgtk2-unique-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgtk2-unique-perl/current/Makefile.PL?rev=57672&op=diff
==============================================================================
--- branches/upstream/libgtk2-unique-perl/current/Makefile.PL (original)
+++ branches/upstream/libgtk2-unique-perl/current/Makefile.PL Sat May  8 12:37:05 2010
@@ -105,7 +105,7 @@
 	$postamble .= Glib::MakeHelper->postamble_docs_full(
 		DEPENDS   => $DEPENDS,
 		XS_FILES  => [ @XS_FILES ],
-		COPYRIGHT => 'Copyright (C) 2009 by Emmanuel Rodriguez'
+		COPYRIGHT => 'Copyright (C) 2009-2010 by Emmanuel Rodriguez'
 	);
 	
 	return $postamble;

Modified: branches/upstream/libgtk2-unique-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgtk2-unique-perl/current/README?rev=57672&op=diff
==============================================================================
--- branches/upstream/libgtk2-unique-perl/current/README (original)
+++ branches/upstream/libgtk2-unique-perl/current/README Sat May  8 12:37:05 2010
@@ -41,7 +41,7 @@
 
 COPYRIGHT AND LICENCE
 
-Copyright (C) 2009 Emmanuel Rodriguez
+Copyright (C) 2009-2010 Emmanuel Rodriguez
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Modified: branches/upstream/libgtk2-unique-perl/current/lib/Gtk2/Unique.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgtk2-unique-perl/current/lib/Gtk2/Unique.pm?rev=57672&op=diff
==============================================================================
--- branches/upstream/libgtk2-unique-perl/current/lib/Gtk2/Unique.pm (original)
+++ branches/upstream/libgtk2-unique-perl/current/lib/Gtk2/Unique.pm Sat May  8 12:37:05 2010
@@ -77,7 +77,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2009 by Emmanuel Rodriguez.
+Copyright (C) 2009-2010 by Emmanuel Rodriguez.
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.8.8 or,
@@ -91,7 +91,7 @@
 
 use Gtk2;
 
-our $VERSION = '0.04';
+our $VERSION = '0.05';
 
 sub dl_load_flags { $^O eq 'darwin' ? 0x00 : 0x01 }
 

Modified: branches/upstream/libgtk2-unique-perl/current/xs/UniqueApp.xs
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgtk2-unique-perl/current/xs/UniqueApp.xs?rev=57672&op=diff
==============================================================================
--- branches/upstream/libgtk2-unique-perl/current/xs/UniqueApp.xs (original)
+++ branches/upstream/libgtk2-unique-perl/current/xs/UniqueApp.xs Sat May  8 12:37:05 2010
@@ -348,7 +348,6 @@
 				STRLEN length;
 				char *data;
 
-				length = sv_len(sv_data);
 				data = SvPV(sv_data, length);
 				unique_message_data_set(message, data, length);
 			}




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