Hi,

This diff updates p5-Net-XMPP to the latest release.
A new package p5-LWP-Online is necessary.

Comments ? OK ?

Cheers,
benoit

Attachment: p5-LWP-Online.tgz
Description: Binary data

Index: Makefile
===================================================================
RCS file: /cvs/ports/net/p5-Net-XMPP/Makefile,v
retrieving revision 1.8
diff -u -p -u -r1.8 Makefile
--- Makefile	21 Jan 2015 14:40:10 -0000	1.8
+++ Makefile	15 Jun 2015 09:00:55 -0000
@@ -2,19 +2,20 @@
 
 COMMENT=		XMPP perl library
 
-DISTNAME=		Net-XMPP-1.02
-REVISION=		1
+DISTNAME =		Net-XMPP-1.05
 CATEGORIES=		net
 
 MODULES=		cpan
 
-# LGPL
+# LGPL v2.1
 PERMIT_PACKAGE_CDROM=	Yes
 
 CONFIGURE_STYLE=	perl modbuild
 
 RUN_DEPENDS=		security/p5-Digest-SHA1 \
 			textproc/p5-XML-Stream
+TEST_DEPENDS =		devel/p5-YAML-Tiny \
+			www/p5-LWP-Online
 
 MODCPAN_EXAMPLES=	Yes
 
Index: distinfo
===================================================================
RCS file: /cvs/ports/net/p5-Net-XMPP/distinfo,v
retrieving revision 1.2
diff -u -p -u -r1.2 distinfo
--- distinfo	18 Jan 2015 03:14:48 -0000	1.2
+++ distinfo	15 Jun 2015 09:00:55 -0000
@@ -1,2 +1,2 @@
-SHA256 (Net-XMPP-1.02.tar.gz) = aXYUQeIUBCsQtmCK+v+7G1Ji5Kqt20sxXb8upIxHQuo=
-SIZE (Net-XMPP-1.02.tar.gz) = 121653
+SHA256 (Net-XMPP-1.05.tar.gz) = TAIgBXfCsjWhY6Cb+qFSvwAP5fFJmtgM4Wq2aAiUk2I=
+SIZE (Net-XMPP-1.05.tar.gz) = 103876
Index: patches/patch-lib_Net_XMPP_Debug_pm
===================================================================
RCS file: /cvs/ports/net/p5-Net-XMPP/patches/patch-lib_Net_XMPP_Debug_pm,v
retrieving revision 1.1
diff -u -p -u -r1.1 patch-lib_Net_XMPP_Debug_pm
--- patches/patch-lib_Net_XMPP_Debug_pm	12 Nov 2012 22:03:50 -0000	1.1
+++ patches/patch-lib_Net_XMPP_Debug_pm	15 Jun 2015 09:00:55 -0000
@@ -1,18 +0,0 @@
-$OpenBSD: patch-lib_Net_XMPP_Debug_pm,v 1.1 2012/11/12 22:03:50 jasper Exp $
-
-RT#58333 Check definedness of hash key before use
-This addresses a warning new to Perl 5.12.
-
-https://github.com/dap/Net-XMPP/commit/2d1164d7c50d7c034f3d1efb03ad9319b24dfd24
-
---- lib/Net/XMPP/Debug.pm.orig	Mon Nov 12 23:02:07 2012
-+++ lib/Net/XMPP/Debug.pm	Mon Nov 12 23:02:30 2012
-@@ -151,7 +151,7 @@ sub Init
-     my %args;
-     while($#_ >= 0) { $args{ lc pop(@_) } = pop(@_); }
- 
--    delete($args{file}) if (lc($args{file}) eq "stdout");
-+    delete($args{file}) if (defined $args{file} && lc($args{file}) eq "stdout");
- 
-     $args{time} = 0 if !exists($args{time});
-     $args{setdefault} = 0 if !exists($args{setdefault});

Reply via email to