svn commit: r304579 - in head/net: . p5-Net-STOMP-Client

Tom Judge tj at FreeBSD.org
Thu Sep 20 14:21:35 UTC 2012


Author: tj
Date: Thu Sep 20 14:21:34 2012
New Revision: 304579
URL: http://svn.freebsd.org/changeset/ports/304579

Log:
  This module provides an object oriented client interface to interact
  with servers supporting STOMP (Streaming Text Orientated Messaging
  Protocol). It supports the major features of messaging brokers: SSL,
  asynchronous I/O, receipts and transactions.
  
  For details on the protocol see http://stomp.codehaus.org/Protocol.
  
  WWW: http://search.cpan.org/dist/Net-STOMP-Client/
  
  Approved by:	db (mentor)

Added:
  head/net/p5-Net-STOMP-Client/
  head/net/p5-Net-STOMP-Client/Makefile   (contents, props changed)
  head/net/p5-Net-STOMP-Client/distinfo   (contents, props changed)
  head/net/p5-Net-STOMP-Client/pkg-descr   (contents, props changed)
  head/net/p5-Net-STOMP-Client/pkg-plist   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Thu Sep 20 14:15:11 2012	(r304578)
+++ head/net/Makefile	Thu Sep 20 14:21:34 2012	(r304579)
@@ -663,6 +663,7 @@
     SUBDIR += p5-Net-SSH-Expect
     SUBDIR += p5-Net-SSH-Perl
     SUBDIR += p5-Net-SSH2
+    SUBDIR += p5-Net-STOMP-Client
     SUBDIR += p5-Net-Server
     SUBDIR += p5-Net-Server-Coro
     SUBDIR += p5-Net-Server-SS-PreFork

Added: head/net/p5-Net-STOMP-Client/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/p5-Net-STOMP-Client/Makefile	Thu Sep 20 14:21:34 2012	(r304579)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+PORTNAME=	Net-STOMP-Client
+PORTVERSION=	1.7
+CATEGORIES=	net-im perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	tj at FreeBSD.org
+COMMENT=	Streaming Text Orientated Messaging Protocol Client
+
+LICENSE=	ART10 GPLv1
+LICENSE_COMB=	dual
+
+PERL_CONFIGURE=	yes
+
+MAN3=	Net::STOMP::Client.3 \
+	Net::STOMP::Client::Connection.3 \
+	Net::STOMP::Client::Debug.3 \
+	Net::STOMP::Client::Error.3 \
+	Net::STOMP::Client::Frame.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
+
+.include <bsd.port.mk>

Added: head/net/p5-Net-STOMP-Client/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/p5-Net-STOMP-Client/distinfo	Thu Sep 20 14:21:34 2012	(r304579)
@@ -0,0 +1,2 @@
+SHA256 (Net-STOMP-Client-1.7.tar.gz) = 1f7ec8ea5d67063028590b269dcde558f47faae78ae5ede0f842a2ba899e9d7c
+SIZE (Net-STOMP-Client-1.7.tar.gz) = 38502

Added: head/net/p5-Net-STOMP-Client/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/p5-Net-STOMP-Client/pkg-descr	Thu Sep 20 14:21:34 2012	(r304579)
@@ -0,0 +1,8 @@
+This module provides an object oriented client interface to interact
+with servers supporting STOMP (Streaming Text Orientated Messaging
+Protocol). It supports the major features of messaging brokers: SSL,
+asynchronous I/O, receipts and transactions.
+
+For details on the protocol see http://stomp.codehaus.org/Protocol.
+
+WWW: http://search.cpan.org/dist/Net-STOMP-Client/

Added: head/net/p5-Net-STOMP-Client/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/p5-Net-STOMP-Client/pkg-plist	Thu Sep 20 14:21:34 2012	(r304579)
@@ -0,0 +1,17 @@
+%%SITE_PERL%%/Net/STOMP/Client.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/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/Tutorial.pod
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/STOMP/Client/.packlist
+ at dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/STOMP/Client
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/STOMP
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net
+ at dirrm %%SITE_PERL%%/Net/STOMP/Client
+ at dirrmtry %%SITE_PERL%%/Net/STOMP
+ at dirrmtry %%SITE_PERL%%/Net



More information about the svn-ports-all mailing list