]> git.pld-linux.org Git - packages/perl-SNMP_Session.git/commitdiff
Fix conflicts with new Socket6 module auto/th/perl-SNMP_Session-1.13-1
authorJacek Konieczny <jajcus@jajcus.net>
Thu, 19 Sep 2013 18:45:42 +0000 (20:45 +0200)
committerJacek Konieczny <jajcus@jajcus.net>
Thu, 19 Sep 2013 18:53:39 +0000 (20:53 +0200)
The conflicts cause errors in mrtg cron job output.

http://code.google.com/p/snmp-session/issues/detail?id=5

perl-SNMP_Session-Socket6_conflict.patch [new file with mode: 0644]
perl-SNMP_Session.spec

diff --git a/perl-SNMP_Session-Socket6_conflict.patch b/perl-SNMP_Session-Socket6_conflict.patch
new file mode 100644 (file)
index 0000000..9017647
--- /dev/null
@@ -0,0 +1,21 @@
+$OpenBSD: patch-lib_SNMP_Session_pm,v 1.2 2010/03/20 23:05:17 sthen Exp $
+--- lib/SNMP_Session.pm.orig   Fri Nov 21 05:25:17 2008
++++ lib/SNMP_Session.pm        Tue Mar 16 16:14:22 2010
+@@ -146,7 +146,7 @@ BEGIN {
+     if (eval {local $SIG{__DIE__};require Socket6;} &&
+        eval {local $SIG{__DIE__};require IO::Socket::INET6; IO::Socket::INET6->VERSION("1.26");}) {
+-      import Socket6;
++      Socket6->import(qw(inet_pton getaddrinfo));
+       $ipv6_addr_len = length(pack_sockaddr_in6(161, inet_pton(AF_INET6(), "::1")));
+       $SNMP_Session::ipv6available = 1;
+     }
+@@ -605,7 +605,7 @@ use Carp;
+ BEGIN {
+     if($SNMP_Session::ipv6available) {
+       import IO::Socket::INET6;
+-      import Socket6;
++      Socket6->import(qw(inet_pton getaddrinfo));
+     }
+ }
index 6598d146ed086077e5ad28a796e6bc25eda35318..dbf1a9a9d002cd9b582a00225b20e2e83fcb689d 100644 (file)
@@ -27,6 +27,7 @@ License:      Artistic
 Group:         Development/Languages/Perl
 Source0:       http://snmp-session.googlecode.com/files/SNMP_Session-%{version}.tar.gz
 # Source0-md5: 055e1065babf55f1f8606329c6bdb947
+Patch0:                %{name}-Socket6_conflict.patch
 URL:           http://code.google.com/p/snmp-session/
 BuildRequires: perl-devel >= 1:5.8.0
 BuildRequires: rpm-perlprov >= 4.1-13
@@ -44,6 +45,7 @@ używane wspólnie, dają dostęp do zewnętrznych serwisów SNMP (v1/v2).
 
 %prep
 %setup -q -n SNMP_Session-%{version}
+%patch0 -p0
 
 %build
 %{__perl} Makefile.PL \
This page took 0.094125 seconds and 4 git commands to generate.