From owner-svn-ports-head@freebsd.org Thu Jul 2 16:20:21 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2A53C9935D9; Thu, 2 Jul 2015 16:20:21 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from repo.freebsd.org (repo.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 F2948185C; Thu, 2 Jul 2015 16:20:20 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t62GKKtW048250; Thu, 2 Jul 2015 16:20:20 GMT (envelope-from skreuzer@FreeBSD.org) Received: (from skreuzer@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t62GKJnO048241; Thu, 2 Jul 2015 16:20:19 GMT (envelope-from skreuzer@FreeBSD.org) Message-Id: <201507021620.t62GKJnO048241@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: skreuzer set sender to skreuzer@FreeBSD.org using -f From: Steven Kreuzer Date: Thu, 2 Jul 2015 16:20:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391170 - in head/sysutils: . py-crontab 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.20 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: Thu, 02 Jul 2015 16:20:21 -0000 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 +# $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 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/