From owner-svn-ports-head@freebsd.org Mon Dec 9 00:09:55 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D0FA51BF3BD; Mon, 9 Dec 2019 00:09:55 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47WNqR5979z42J7; Mon, 9 Dec 2019 00:09:55 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AC74DA369; Mon, 9 Dec 2019 00:09:55 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xB909tk7043745; Mon, 9 Dec 2019 00:09:55 GMT (envelope-from zi@FreeBSD.org) Received: (from zi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xB909s5w043741; Mon, 9 Dec 2019 00:09:54 GMT (envelope-from zi@FreeBSD.org) Message-Id: <201912090009.xB909s5w043741@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zi set sender to zi@FreeBSD.org using -f From: Ryan Steinmetz Date: Mon, 9 Dec 2019 00:09:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r519588 - in head/databases: . p5-Redis-JobQueue X-SVN-Group: ports-head X-SVN-Commit-Author: zi X-SVN-Commit-Paths: in head/databases: . p5-Redis-JobQueue X-SVN-Commit-Revision: 519588 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2019 00:09:55 -0000 Author: zi Date: Mon Dec 9 00:09:54 2019 New Revision: 519588 URL: https://svnweb.freebsd.org/changeset/ports/519588 Log: New port: databases/p5-Redis-JobQueue: The Redis::JobQueue package is a set of Perl modules which allows creation of a simple job queue based on Redis server capabilities. * Supports the automatic creation of job queues, job status monitoring, updating the job data set, obtaining a consistent job from the queue, removing jobs, and the classification of possible errors. * Contains various reusable components that can be used separately or together. * Provides an object oriented API. * Support of storing arbitrary job-related data structures. * Simple methods for organizing producer, worker, and consumer clients. WWW: https://metacpan.org/release/Redis-JobQueue Added: head/databases/p5-Redis-JobQueue/ head/databases/p5-Redis-JobQueue/Makefile (contents, props changed) head/databases/p5-Redis-JobQueue/distinfo (contents, props changed) head/databases/p5-Redis-JobQueue/pkg-descr (contents, props changed) head/databases/p5-Redis-JobQueue/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Mon Dec 9 00:05:18 2019 (r519587) +++ head/databases/Makefile Mon Dec 9 00:09:54 2019 (r519588) @@ -477,6 +477,7 @@ SUBDIR += p5-Redis SUBDIR += p5-Redis-Fast SUBDIR += p5-Redis-hiredis + SUBDIR += Redis-JobQueue SUBDIR += p5-RedisDB SUBDIR += p5-RedisDB-Parser SUBDIR += p5-Relations Added: head/databases/p5-Redis-JobQueue/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Redis-JobQueue/Makefile Mon Dec 9 00:09:54 2019 (r519588) @@ -0,0 +1,32 @@ +# Created by: Ryan Steinmetz +# $FreeBSD$ + +PORTNAME= Redis-JobQueue +PORTVERSION= 1.19 +CATEGORIES= databases perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Job queue management implemented using Redis server + +LICENSE= ARTPERL10 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-UUID>0:devel/p5-Data-UUID \ + p5-Digest-SHA1>0:security/p5-Digest-SHA1 \ + p5-Data-UUID>0:devel/p5-Data-UUID \ + p5-List-MoreUtils>0:lang/p5-List-MoreUtils \ + p5-Mouse>0:devel/p5-Mouse \ + p5-Params-Util>0:devel/p5-Params-Util \ + p5-Redis>0:databases/p5-Redis \ + p5-Storable>0:devel/p5-Storable \ + p5-Try-Tiny>=0.24:lang/p5-Try-Tiny + +USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes + +.include Added: head/databases/p5-Redis-JobQueue/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Redis-JobQueue/distinfo Mon Dec 9 00:09:54 2019 (r519588) @@ -0,0 +1,3 @@ +TIMESTAMP = 1575849374 +SHA256 (Redis-JobQueue-1.19.tar.gz) = 090f078e30b834824acbcd98708e1ae416de16d5b775b27454a964cc6a94d50d +SIZE (Redis-JobQueue-1.19.tar.gz) = 48931 Added: head/databases/p5-Redis-JobQueue/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Redis-JobQueue/pkg-descr Mon Dec 9 00:09:54 2019 (r519588) @@ -0,0 +1,12 @@ +The Redis::JobQueue package is a set of Perl modules which allows creation of +a simple job queue based on Redis server capabilities. + +* Supports the automatic creation of job queues, job status monitoring, + updating the job data set, obtaining a consistent job from the queue, + removing jobs, and the classification of possible errors. +* Contains various reusable components that can be used separately or together. +* Provides an object oriented API. +* Support of storing arbitrary job-related data structures. +* Simple methods for organizing producer, worker, and consumer clients. + +WWW: https://metacpan.org/release/Redis-JobQueue Added: head/databases/p5-Redis-JobQueue/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Redis-JobQueue/pkg-plist Mon Dec 9 00:09:54 2019 (r519588) @@ -0,0 +1,6 @@ +%%SITE_PERL%%/Redis/JobQueue.pm +%%SITE_PERL%%/Redis/JobQueue/Job.pm +%%SITE_PERL%%/Redis/JobQueue/Util.pm +%%PERL5_MAN3%%/Redis::JobQueue.3.gz +%%PERL5_MAN3%%/Redis::JobQueue::Job.3.gz +%%PERL5_MAN3%%/Redis::JobQueue::Util.3.gz