svn commit: r357843 - in head/devel: . py-plan
Martin Wilke
miwi at FreeBSD.org
Sun Jun 15 08:39:49 UTC 2014
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 <ports at robakdesign.com>
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 <ports at robakdesign.com>
+# $FreeBSD$
+
+PORTNAME= plan
+PORTVERSION= 0.1
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= ports at 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 <bsd.port.mk>
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
More information about the svn-ports-all
mailing list