svn commit: r380894 - in head/devel: . p5-Algorithm-Cron

Vanilla I. Shu vanilla at FreeBSD.org
Tue Mar 10 06:12:13 UTC 2015


Author: vanilla
Date: Tue Mar 10 06:12:11 2015
New Revision: 380894
URL: https://svnweb.freebsd.org/changeset/ports/380894
QAT: https://qat.redports.org/buildarchive/r380894/

Log:
  Add p5-Algorithm-Cron 0.09, abstract implementation of the cron(8)
  scheduling algorithm.
  
  PR:		198308
  Submitted by:	Geoffroy Desvernay <dgeo at centrale-marseille.fr>

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Mar 10 06:08:19 2015	(r380893)
+++ head/devel/Makefile	Tue Mar 10 06:12:11 2015	(r380894)
@@ -1452,6 +1452,7 @@
     SUBDIR += p5-Algorithm-C3
     SUBDIR += p5-Algorithm-ChooseSubsets
     SUBDIR += p5-Algorithm-Cluster
+    SUBDIR += p5-Algorithm-Cron
     SUBDIR += p5-Algorithm-Dependency
     SUBDIR += p5-Algorithm-Dependency-Objects
     SUBDIR += p5-Algorithm-Diff

Added: head/devel/p5-Algorithm-Cron/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Algorithm-Cron/Makefile	Tue Mar 10 06:12:11 2015	(r380894)
@@ -0,0 +1,22 @@
+# Created by: Geoffroy Desvernay <dgeo at centrale-marseille.fr>
+# $FreeBSD$
+
+PORTNAME=	Algorithm-Cron
+PORTVERSION=	0.09
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	dgeo at centrale-marseille.fr
+COMMENT=	Abstract implementation of the cron(8) scheduling algorithm
+
+LICENSE=	ART10 GPLv1
+LICENSE_COMB=	dual
+
+BUILD_DEPENDS:=	p5-Time-timegm>=0:${PORTSDIR}/devel/p5-Time-timegm
+RUN_DEPENDS:=	${BUILD_DEPENDS}
+
+USES=		perl5
+USE_PERL5=	configure
+
+.include <bsd.port.mk>

Added: head/devel/p5-Algorithm-Cron/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Algorithm-Cron/distinfo	Tue Mar 10 06:12:11 2015	(r380894)
@@ -0,0 +1,2 @@
+SHA256 (Algorithm-Cron-0.09.tar.gz) = 16ca57e6556c0cfa51e5634a91be97d2f0ebbccc52bada568021cb2be7e0602a
+SIZE (Algorithm-Cron-0.09.tar.gz) = 18233

Added: head/devel/p5-Algorithm-Cron/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Algorithm-Cron/pkg-descr	Tue Mar 10 06:12:11 2015	(r380894)
@@ -0,0 +1,7 @@
+Algorithm::Cron - abstract implementation of the cron(8) scheduling algorithm
+
+Objects in this class implement a time scheduling algorithm such as used by 
+cron(8). Objects are stateless once constructed, and represent a single schedule
+ as defined by a crontab(5) entry. The object implements a method next_time
+which returns an epoch timestamp value to indicate the next time included 
+in the crontab schedule.

Added: head/devel/p5-Algorithm-Cron/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Algorithm-Cron/pkg-plist	Tue Mar 10 06:12:11 2015	(r380894)
@@ -0,0 +1,2 @@
+%%PERL5_MAN3%%/Algorithm::Cron.3.gz
+%%SITE_PERL%%/Algorithm/Cron.pm


More information about the svn-ports-head mailing list