[libnet-ssh2-perl] 01/01: Imported Upstream version 0.51

Salvatore Bonaccorso carnil at debian.org
Sun Aug 4 15:49:30 UTC 2013


This is an automated email from the git hooks/post-receive script.

carnil pushed a commit to annotated tag upstream/0.51
in repository libnet-ssh2-perl.

commit 32fb200f60fe8a953cb30ca812c03dc9397a9252
Author: Salvatore Bonaccorso <carnil at debian.org>
Date:   Sun Aug 4 17:46:42 2013 +0200

    Imported Upstream version 0.51
---
 Changes         |    4 ++++
 META.yml        |    2 +-
 MYMETA.json     |    2 +-
 MYMETA.yml      |    2 +-
 Makefile.PL     |    3 ++-
 lib/Net/SSH2.pm |    2 +-
 6 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/Changes b/Changes
index 1684cf9..baf8fd9 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl extension Net::SSH2.
 
+0.51  2013-08-03 21:17:47
+        - turn off -std=c89 -pedantic-errors for all builds except authors not
+          on mingw or solaris
+
 0.50  2013-07-29 10:25:13
         - remove #warning, not standard C89, throws an error on non-threaded
           builds due to -pedantic-errors (RT#87398)
diff --git a/META.yml b/META.yml
index 951db78..67d151d 100644
--- a/META.yml
+++ b/META.yml
@@ -24,4 +24,4 @@ requires:
 resources:
   license: http://dev.perl.org/licenses/
   repository: git://github.com/rkitover/net-ssh2.git
-version: 0.50
+version: 0.51
diff --git a/MYMETA.json b/MYMETA.json
index 89f47a8..fe3b126 100644
--- a/MYMETA.json
+++ b/MYMETA.json
@@ -37,5 +37,5 @@
       }
    },
    "release_status" : "stable",
-   "version" : "0.50"
+   "version" : "0.51"
 }
diff --git a/MYMETA.yml b/MYMETA.yml
index 46c3ddb..063416e 100644
--- a/MYMETA.yml
+++ b/MYMETA.yml
@@ -19,4 +19,4 @@ no_index:
     - inc
 requires:
   perl: 5.006
-version: 0.50
+version: 0.51
diff --git a/Makefile.PL b/Makefile.PL
index 23b9797..651741e 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -129,7 +129,8 @@ inc "$inc -I.";
 
 makemaker_args 
     @define,
-    ($Config{cc} =~ /gcc/i ? (
+    # this is known to NOT work on mingw and solaris, and we only turn it on for devs
+    ($Module::Install::AUTHOR && $^O ne 'MSWin32' && $^O ne 'solaris' && $Config{cc} =~ /gcc/i ? (
         CCFLAGS => '-DPERL_GCC_PEDANTIC -std=c89 -pedantic-errors -Wno-long-long'
     ) : ())
 ;
diff --git a/lib/Net/SSH2.pm b/lib/Net/SSH2.pm
index c1c89bf..3c6e45f 100644
--- a/lib/Net/SSH2.pm
+++ b/lib/Net/SSH2.pm
@@ -208,7 +208,7 @@ our %EXPORT_TAGS = (
 
 our @EXPORT_OK = @{$EXPORT_TAGS{all}};
 
-our $VERSION = '0.50';
+our $VERSION = '0.51';
 
 # methods
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libnet-ssh2-perl.git



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