svn commit: r311625 - head/net/p5-Net-STOMP-Client
Tom Judge
tj at FreeBSD.org
Mon Feb 4 14:50:31 UTC 2013
Author: tj
Date: Mon Feb 4 14:50:30 2013
New Revision: 311625
URL: http://svnweb.freebsd.org/changeset/ports/311625
Log:
Update to 2.0.
Changes:
* Major code refactoring, see README.2.x for more information.
* Cleanup code to please Perl::Critic.
* Removed support for blocking I/O, only non-blocking I/O is supported.
* Now using the No::Worries and Params::Validate modules from CPAN.
* Added STOMP 1.2 support.
* Added the queue_message() and send_message() methods for convenience.
* Added optional authentication support via Authen::Credential.
Modified:
head/net/p5-Net-STOMP-Client/Makefile
head/net/p5-Net-STOMP-Client/distinfo
head/net/p5-Net-STOMP-Client/pkg-plist
Modified: head/net/p5-Net-STOMP-Client/Makefile
==============================================================================
--- head/net/p5-Net-STOMP-Client/Makefile Mon Feb 4 14:42:47 2013 (r311624)
+++ head/net/p5-Net-STOMP-Client/Makefile Mon Feb 4 14:50:30 2013 (r311625)
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= Net-STOMP-Client
-PORTVERSION= 1.8
+PORTVERSION= 2.0
CATEGORIES= net perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@@ -9,20 +9,24 @@ PKGNAMEPREFIX= p5-
MAINTAINER= tj at FreeBSD.org
COMMENT= Streaming Text Orientated Messaging Protocol Client
+BUILD_DEPENDS= p5-No-Worries>=0:${PORTSDIR}/devel/p5-No-Worries \
+ p5-Params-Validate>=0:${PORTSDIR}/devel/p5-Params-Validate
+RUN_DEPENDS:= ${BUILD_DEPENDS}
+
LICENSE= ART10 GPLv1
LICENSE_COMB= dual
PERL_CONFIGURE= yes
MAN3= Net::STOMP::Client.3 \
+ Net::STOMP::Client::Auth.3 \
Net::STOMP::Client::Connection.3 \
- Net::STOMP::Client::Debug.3 \
- Net::STOMP::Client::Error.3 \
Net::STOMP::Client::Frame.3 \
+ Net::STOMP::Client::HeartBeat.3 \
Net::STOMP::Client::IO.3 \
- Net::STOMP::Client::OO.3 \
Net::STOMP::Client::Peer.3 \
- Net::STOMP::Client::Protocol.3 \
- Net::STOMP::Client::Tutorial.3
+ Net::STOMP::Client::Receipt.3 \
+ Net::STOMP::Client::Tutorial.3 \
+ Net::STOMP::Client::Version.3
.include <bsd.port.mk>
Modified: head/net/p5-Net-STOMP-Client/distinfo
==============================================================================
--- head/net/p5-Net-STOMP-Client/distinfo Mon Feb 4 14:42:47 2013 (r311624)
+++ head/net/p5-Net-STOMP-Client/distinfo Mon Feb 4 14:50:30 2013 (r311625)
@@ -1,2 +1,2 @@
-SHA256 (Net-STOMP-Client-1.8.tar.gz) = 77f079523df519f8b2eb8f3105984d34f134e7bbe6a76fdceb5e0c2fb1ca9b14
-SIZE (Net-STOMP-Client-1.8.tar.gz) = 39354
+SHA256 (Net-STOMP-Client-2.0.tar.gz) = 666b687269414c6b0b0bc864d14028fc751dc9d950674d383f00cec5bd3cac19
+SIZE (Net-STOMP-Client-2.0.tar.gz) = 40958
Modified: head/net/p5-Net-STOMP-Client/pkg-plist
==============================================================================
--- head/net/p5-Net-STOMP-Client/pkg-plist Mon Feb 4 14:42:47 2013 (r311624)
+++ head/net/p5-Net-STOMP-Client/pkg-plist Mon Feb 4 14:50:30 2013 (r311625)
@@ -1,13 +1,13 @@
%%SITE_PERL%%/Net/STOMP/Client.pm
+%%SITE_PERL%%/Net/STOMP/Client/Auth.pm
%%SITE_PERL%%/Net/STOMP/Client/Connection.pm
-%%SITE_PERL%%/Net/STOMP/Client/Debug.pm
-%%SITE_PERL%%/Net/STOMP/Client/Error.pm
%%SITE_PERL%%/Net/STOMP/Client/Frame.pm
+%%SITE_PERL%%/Net/STOMP/Client/HeartBeat.pm
%%SITE_PERL%%/Net/STOMP/Client/IO.pm
-%%SITE_PERL%%/Net/STOMP/Client/OO.pm
%%SITE_PERL%%/Net/STOMP/Client/Peer.pm
-%%SITE_PERL%%/Net/STOMP/Client/Protocol.pm
+%%SITE_PERL%%/Net/STOMP/Client/Receipt.pm
%%SITE_PERL%%/Net/STOMP/Client/Tutorial.pod
+%%SITE_PERL%%/Net/STOMP/Client/Version.pm
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/STOMP/Client/.packlist
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/STOMP/Client
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/STOMP
More information about the svn-ports-head
mailing list