From owner-svn-ports-head@FreeBSD.ORG Sun Jun 15 08:39:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4D020152; Sun, 15 Jun 2014 08:39:49 +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 2FAAA2ED7; Sun, 15 Jun 2014 08:39:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5F8dnHl007060; Sun, 15 Jun 2014 08:39:49 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5F8dmrS007056; Sun, 15 Jun 2014 08:39:48 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201406150839.s5F8dmrS007056@svn.freebsd.org> From: Martin Wilke Date: Sun, 15 Jun 2014 08:39:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357843 - in head/devel: . py-plan 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 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: Sun, 15 Jun 2014 08:39:49 -0000 Author: miwi Date: Sun Jun 15 08:39:47 2014 New Revision: 357843 URL: http://svnweb.freebsd.org/changeset/ports/357843 QAT: https://qat.redports.org/buildarchive/r357843/ Log: Plan is a Python package for writing and deploying cron jobs. Plan will convert Python code to cron syntax. You can easily manage your cron jobs with Plan like a charm. It is designed for elegancy and writing cron jobs with as little amount of code as possible. It's extensible but comes with serveral good useful job types out of the box. WWW: https://github.com/fengsp/plan PR: ports/190948 Submitted by: Bartek Rutkowski Added: head/devel/py-plan/ head/devel/py-plan/Makefile (contents, props changed) head/devel/py-plan/distinfo (contents, props changed) head/devel/py-plan/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 15 08:38:41 2014 (r357842) +++ head/devel/Makefile Sun Jun 15 08:39:47 2014 (r357843) @@ -3752,6 +3752,7 @@ SUBDIR += py-phpserialize SUBDIR += py-pika SUBDIR += py-pip + SUBDIR += py-plan SUBDIR += py-plex SUBDIR += py-ply SUBDIR += py-polib Added: head/devel/py-plan/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-plan/Makefile Sun Jun 15 08:39:47 2014 (r357843) @@ -0,0 +1,21 @@ +# Created by: Bartek Rutkowski +# $FreeBSD$ + +PORTNAME= plan +PORTVERSION= 0.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ports@robakdesign.com +COMMENT= Python package for writing and deploying cron jobs + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=1.1:${PORTSDIR}/devel/py-click + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/devel/py-plan/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-plan/distinfo Sun Jun 15 08:39:47 2014 (r357843) @@ -0,0 +1,2 @@ +SHA256 (plan-0.1.tar.gz) = 2fb3a1811661f3f24dd80fcf41b1d88a02dbb069392a7d8ddbb9fccb1ba1d37b +SIZE (plan-0.1.tar.gz) = 14140 Added: head/devel/py-plan/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-plan/pkg-descr Sun Jun 15 08:39:47 2014 (r357843) @@ -0,0 +1,7 @@ +Plan is a Python package for writing and deploying cron jobs. Plan will +convert Python code to cron syntax. You can easily manage your cron jobs +with Plan like a charm. It is designed for elegancy and writing cron jobs +with as little amount of code as possible. It's extensible but comes with +serveral good useful job types out of the box. + +WWW: https://github.com/fengsp/plan