diff options
author | tj <tj@FreeBSD.org> | 2013-02-04 22:50:30 +0800 |
---|---|---|
committer | tj <tj@FreeBSD.org> | 2013-02-04 22:50:30 +0800 |
commit | fbd510a32ac47fa17c15795aea1111393e440658 (patch) | |
tree | 6d95d53a5bcf2fedd550a0222294f3c6cae387d2 /net | |
parent | 7d71b455269177d38fc419cd1d06b117f28566e2 (diff) | |
download | freebsd-ports-gnome-fbd510a32ac47fa17c15795aea1111393e440658.tar.gz freebsd-ports-gnome-fbd510a32ac47fa17c15795aea1111393e440658.tar.zst freebsd-ports-gnome-fbd510a32ac47fa17c15795aea1111393e440658.zip |
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.
Diffstat (limited to 'net')
-rw-r--r-- | net/p5-Net-STOMP-Client/Makefile | 16 | ||||
-rw-r--r-- | net/p5-Net-STOMP-Client/distinfo | 4 | ||||
-rw-r--r-- | net/p5-Net-STOMP-Client/pkg-plist | 8 |
3 files changed, 16 insertions, 12 deletions
diff --git a/net/p5-Net-STOMP-Client/Makefile b/net/p5-Net-STOMP-Client/Makefile index c5cef4eb0f6c..6221d9c7aa6a 100644 --- a/net/p5-Net-STOMP-Client/Makefile +++ b/net/p5-Net-STOMP-Client/Makefile @@ -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@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> diff --git a/net/p5-Net-STOMP-Client/distinfo b/net/p5-Net-STOMP-Client/distinfo index cd76c8d3713f..8c9fec2e2f15 100644 --- a/net/p5-Net-STOMP-Client/distinfo +++ b/net/p5-Net-STOMP-Client/distinfo @@ -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 diff --git a/net/p5-Net-STOMP-Client/pkg-plist b/net/p5-Net-STOMP-Client/pkg-plist index e6665fdf0ab1..08d53fd108b8 100644 --- a/net/p5-Net-STOMP-Client/pkg-plist +++ b/net/p5-Net-STOMP-Client/pkg-plist @@ -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 |