r74858 - in /branches/upstream/libzeromq-perl/current: Changes META.yml README lib/ZeroMQ.pm lib/ZeroMQ/Raw.pm tools/detect_zmq.pl

ghedo-guest at users.alioth.debian.org ghedo-guest at users.alioth.debian.org
Tue May 24 18:11:50 UTC 2011


Author: ghedo-guest
Date: Tue May 24 18:11:40 2011
New Revision: 74858

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=74858
Log:
[svn-upgrade] new version libzeromq-perl (0.15)

Modified:
    branches/upstream/libzeromq-perl/current/Changes
    branches/upstream/libzeromq-perl/current/META.yml
    branches/upstream/libzeromq-perl/current/README
    branches/upstream/libzeromq-perl/current/lib/ZeroMQ.pm
    branches/upstream/libzeromq-perl/current/lib/ZeroMQ/Raw.pm
    branches/upstream/libzeromq-perl/current/tools/detect_zmq.pl

Modified: branches/upstream/libzeromq-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libzeromq-perl/current/Changes?rev=74858&op=diff
==============================================================================
--- branches/upstream/libzeromq-perl/current/Changes (original)
+++ branches/upstream/libzeromq-perl/current/Changes Tue May 24 18:11:40 2011
@@ -1,4 +1,12 @@
 Changelog for Perl module ZeroMQ.
+
+0.15 Mon May 23 2011 17:30 JST
+  - Do not use PKG_CONFIG_PATH as the path to pkg-config binary.
+    If for some reason you want to use a different pkg-config than
+    in your PATH, use PKGCONFIG_CMD environmental variable.
+    Reported by Johan Ström (rt #68108)
+  - Doc tweaks
+  - Fix/update autobuild tools used in Jenkins tests.
 
 0.14 Thu May 12 2011 17:05 JST
   - Argh, forgot to change all the occurances of pkg-config to $pkg_config

Modified: branches/upstream/libzeromq-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libzeromq-perl/current/META.yml?rev=74858&op=diff
==============================================================================
--- branches/upstream/libzeromq-perl/current/META.yml (original)
+++ branches/upstream/libzeromq-perl/current/META.yml Tue May 24 18:11:40 2011
@@ -38,4 +38,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: http://github.com/lestrrat/ZeroMQ-Perl
-version: 0.14
+version: 0.15

Modified: branches/upstream/libzeromq-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libzeromq-perl/current/README?rev=74858&op=diff
==============================================================================
--- branches/upstream/libzeromq-perl/current/README (original)
+++ branches/upstream/libzeromq-perl/current/README Tue May 24 18:11:40 2011
@@ -263,7 +263,7 @@
 
     <http://zeromq.org>
 
-    <http://github.com/lestrrat/ZoroMQ-Perl>
+    <http://github.com/lestrrat/ZeroMQ-Perl>
 
 AUTHOR
     Daisuke Maki "<daisuke at endeworks.jp>"

Modified: branches/upstream/libzeromq-perl/current/lib/ZeroMQ.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libzeromq-perl/current/lib/ZeroMQ.pm?rev=74858&op=diff
==============================================================================
--- branches/upstream/libzeromq-perl/current/lib/ZeroMQ.pm (original)
+++ branches/upstream/libzeromq-perl/current/lib/ZeroMQ.pm Tue May 24 18:11:40 2011
@@ -1,7 +1,7 @@
 package ZeroMQ;
 use strict;
 BEGIN {
-    our $VERSION = '0.14';
+    our $VERSION = '0.15';
     our @ISA = qw(Exporter);
 }
 use ZeroMQ::Raw ();
@@ -314,7 +314,7 @@
 
 L<http://zeromq.org>
 
-L<http://github.com/lestrrat/ZoroMQ-Perl>
+L<http://github.com/lestrrat/ZeroMQ-Perl>
 
 =head1 AUTHOR
 

Modified: branches/upstream/libzeromq-perl/current/lib/ZeroMQ/Raw.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libzeromq-perl/current/lib/ZeroMQ/Raw.pm?rev=74858&op=diff
==============================================================================
--- branches/upstream/libzeromq-perl/current/lib/ZeroMQ/Raw.pm (original)
+++ branches/upstream/libzeromq-perl/current/lib/ZeroMQ/Raw.pm Tue May 24 18:11:40 2011
@@ -7,7 +7,7 @@
     # XXX it's a hassle, but keep it in sync with ZeroMQ.pm
     # by loading this here, we can make ZeroMQ::Raw independent
     # of ZeroMQ while keeping the dist name as ZeroMQ
-    XSLoader::load('ZeroMQ', '0.14');
+    XSLoader::load('ZeroMQ', '0.15');
 }
 
 our @EXPORT = qw(

Modified: branches/upstream/libzeromq-perl/current/tools/detect_zmq.pl
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libzeromq-perl/current/tools/detect_zmq.pl?rev=74858&op=diff
==============================================================================
--- branches/upstream/libzeromq-perl/current/tools/detect_zmq.pl (original)
+++ branches/upstream/libzeromq-perl/current/tools/detect_zmq.pl Tue May 24 18:11:40 2011
@@ -65,7 +65,7 @@
 # Note: At this point probe_envvars should have taken care merging
 # deprecated INCLUDES/LIBS into %ENV
 sub probe_pkgconfig {
-    my $pkg_config = $ENV{ PKG_CONFIG_PATH } || 'pkg-config';
+    my $pkg_config = $ENV{ PKGCONFIG_CMD } || 'pkg-config';
     foreach my $pkg ( qw(libzmq zeromq2) ) {
         print "Probing $pkg via $pkg_config ...\n";
         my $version = qx/$pkg_config --modversion $pkg/;




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