Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 2 Jul 2015 16:20:19 +0000 (UTC)
From:      Steven Kreuzer <skreuzer@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r391170 - in head/sysutils: . py-crontab
Message-ID:  <201507021620.t62GKJnO048241@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: skreuzer
Date: Thu Jul  2 16:20:19 2015
New Revision: 391170
URL: https://svnweb.freebsd.org/changeset/ports/391170

Log:
  Module for reading and writing crontab files and accessing the system cron
  automatically and simply using a direct API.
  
  WWW: http://pypi.python.org/pypi/crontab/

Added:
  head/sysutils/py-crontab/
  head/sysutils/py-crontab/Makefile   (contents, props changed)
  head/sysutils/py-crontab/distinfo   (contents, props changed)
  head/sysutils/py-crontab/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Thu Jul  2 16:01:06 2015	(r391169)
+++ head/sysutils/Makefile	Thu Jul  2 16:20:19 2015	(r391170)
@@ -743,6 +743,7 @@
     SUBDIR += py-analyzemft
     SUBDIR += py-bcfg2
     SUBDIR += py-croniter
+    SUBDIR += py-crontab
     SUBDIR += py-danzfs
     SUBDIR += py-drmaa
     SUBDIR += py-execnet

Added: head/sysutils/py-crontab/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/py-crontab/Makefile	Thu Jul  2 16:20:19 2015	(r391170)
@@ -0,0 +1,22 @@
+# Created by: Steven Kreuzer <skreuzer@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	crontab
+PORTVERSION=	1.9.3
+CATEGORIES=	sysutils python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	python-${PORTNAME}-${PORTVERSION}
+
+MAINTAINER=	skreuzer@FreeBSD.org
+COMMENT=	Read and write crontab files using a direct API
+
+LICENSE=	GPLv3
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}dateutil>=1.5:${PORTSDIR}/devel/py-dateutil \
+		${PYTHON_PKGNAMEPREFIX}croniter>0:${PORTSDIR}/sysutils/py-croniter
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/sysutils/py-crontab/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/py-crontab/distinfo	Thu Jul  2 16:20:19 2015	(r391170)
@@ -0,0 +1,2 @@
+SHA256 (python-crontab-1.9.3.tar.gz) = d639116beccef488fee9778bb095096b5a4020fea2f3a82a1405535a625374f7
+SIZE (python-crontab-1.9.3.tar.gz) = 40479

Added: head/sysutils/py-crontab/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/py-crontab/pkg-descr	Thu Jul  2 16:20:19 2015	(r391170)
@@ -0,0 +1,4 @@
+Module for reading and writing crontab files and accessing the system cron
+automatically and simply using a direct API.
+
+WWW: http://pypi.python.org/pypi/crontab/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507021620.t62GKJnO048241>