Bug 179750 - New port: devel/p5-AnyEvent-Worker Manage blocking task in external process
Summary: New port: devel/p5-AnyEvent-Worker Manage blocking task in external process
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-perl (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-06-20 10:30 UTC by Anes Mukhametov
Modified: 2013-07-02 17:55 UTC (History)
0 users

See Also:


Attachments
p5-AnyEvent-Worker.shar (2.67 KB, text/plain)
2013-06-20 10:30 UTC, Anes Mukhametov
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Anes Mukhametov 2013-06-20 10:30:00 UTC
	New port: devel/p5-AnyEvent-Worker
	Manage blocking task in external process
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-06-20 10:30:20 UTC
Responsible Changed
From-To: freebsd-ports-bugs->perl

perl@ wants this port PRs (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-07-02 16:38:50 UTC
Author: danfe
Date: Tue Jul  2 15:38:36 2013
New Revision: 322177
URL: http://svnweb.freebsd.org/changeset/ports/322177

Log:
  Add p5-AnyEvent-Worker, to manage blocking task in external process.
  
  PR:	ports/179750

Added:
  head/devel/p5-AnyEvent-Worker/
  head/devel/p5-AnyEvent-Worker/Makefile   (contents, props changed)
  head/devel/p5-AnyEvent-Worker/distinfo   (contents, props changed)
  head/devel/p5-AnyEvent-Worker/pkg-descr   (contents, props changed)
  head/devel/p5-AnyEvent-Worker/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Jul  2 15:24:11 2013	(r322176)
+++ head/devel/Makefile	Tue Jul  2 15:38:36 2013	(r322177)
@@ -1420,6 +1420,7 @@
     SUBDIR += p5-AnyEvent-RPC
     SUBDIR += p5-AnyEvent-Run
     SUBDIR += p5-AnyEvent-Subprocess
+    SUBDIR += p5-AnyEvent-Worker
     SUBDIR += p5-AnyMQ
     SUBDIR += p5-App-Build
     SUBDIR += p5-App-CLI

Added: head/devel/p5-AnyEvent-Worker/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-AnyEvent-Worker/Makefile	Tue Jul  2 15:38:36 2013	(r322177)
@@ -0,0 +1,24 @@
+# Created by: Anes Mukhametov <anes@anes.su>
+# $FreeBSD$
+
+PORTNAME=	AnyEvent-Worker
+PORTVERSION=	0.06
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	anes@anes.su
+COMMENT=	Manage blocking task in external process
+
+BUILD_DEPENDS=	p5-AnyEvent>=5:${PORTSDIR}/devel/p5-AnyEvent \
+		p5-Storable>=0:${PORTSDIR}/devel/p5-Storable \
+		p5-common-sense>=2:${PORTSDIR}/devel/p5-common-sense \
+		p5-Test-NoWarnings>=1.03:${PORTSDIR}/devel/p5-Test-NoWarnings \
+		p5-Test-TCP>=0.14:${PORTSDIR}/devel/p5-Test-TCP \
+		p5-lib-abs>=0.90:${PORTSDIR}/devel/p5-lib-abs
+RUN_DEPENDS:=	${BUILD_DEPENDS}
+
+PERL_CONFIGURE=	yes
+MAN3=		AnyEvent::Worker.3 AnyEvent::Worker::Pool.3
+
+.include <bsd.port.mk>

Added: head/devel/p5-AnyEvent-Worker/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-AnyEvent-Worker/distinfo	Tue Jul  2 15:38:36 2013	(r322177)
@@ -0,0 +1,2 @@
+SHA256 (AnyEvent-Worker-0.06.tar.gz) = 4c7b765c7c3f5a0141fcc220914b8c4634f8a16fb314075952720269861d0824
+SIZE (AnyEvent-Worker-0.06.tar.gz) = 32666

Added: head/devel/p5-AnyEvent-Worker/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-AnyEvent-Worker/pkg-descr	Tue Jul  2 15:38:36 2013	(r322177)
@@ -0,0 +1,3 @@
+Manage blocking task in external process.
+
+WWW: http://search.cpan.org/dist/AnyEvent-Worker/

Added: head/devel/p5-AnyEvent-Worker/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-AnyEvent-Worker/pkg-plist	Tue Jul  2 15:38:36 2013	(r322177)
@@ -0,0 +1,8 @@
+%%SITE_PERL%%/AnyEvent/Worker.pm
+%%SITE_PERL%%/AnyEvent/Worker/Pool.pm
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/AnyEvent/Worker/.packlist
+@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/AnyEvent/Worker
+@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/AnyEvent
+@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto
+@dirrmtry %%SITE_PERL%%/AnyEvent/Worker
+@dirrmtry %%SITE_PERL%%/AnyEvent
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Alexey Dokuchaev freebsd_committer freebsd_triage 2013-07-02 17:55:14 UTC
State Changed
From-To: open->closed

Committed with minor modifications, thanks!