From owner-svn-ports-head@FreeBSD.ORG Tue Mar 10 06:12:13 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5C0E5DF7; Tue, 10 Mar 2015 06:12:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 46CD231F; Tue, 10 Mar 2015 06:12:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2A6CDQr015848; Tue, 10 Mar 2015 06:12:13 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2A6CBa8015842; Tue, 10 Mar 2015 06:12:11 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201503100612.t2A6CBa8015842@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Tue, 10 Mar 2015 06:12:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r380894 - in head/devel: . p5-Algorithm-Cron X-SVN-Group: ports-head 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.18-1 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: Tue, 10 Mar 2015 06:12:13 -0000 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 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 +# $FreeBSD$ + +PORTNAME= Algorithm-Cron +PORTVERSION= 0.09 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= dgeo@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 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