Add py-schedule 0.6.0

An in-process scheduler for periodic jobs that uses the builder pattern for
configuration. Schedule lets you run Python functions (or any other callable)
periodically at pre-determined intervals using a simple, human-friendly syntax.

WWW: https://github.com/dbader/schedule
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2019-02-28 21:34:45 +00:00
parent ce60bd0f88
commit 630177565a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=494189
4 changed files with 30 additions and 0 deletions

View File

@ -5129,6 +5129,7 @@
SUBDIR += py-rx
SUBDIR += py-sanetime
SUBDIR += py-sarge
SUBDIR += py-schedule
SUBDIR += py-schema
SUBDIR += py-schematics-patched
SUBDIR += py-scripttest

View File

@ -0,0 +1,21 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= schedule
PORTVERSION= 0.6.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Python job scheduling for humans
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= python
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1551336645
SHA256 (schedule-0.6.0.tar.gz) = f9fb5181283de4db6e701d476dd01b6a3dd81c38462a54991ddbb9d26db857c9
SIZE (schedule-0.6.0.tar.gz) = 12300

View File

@ -0,0 +1,5 @@
An in-process scheduler for periodic jobs that uses the builder pattern for
configuration. Schedule lets you run Python functions (or any other callable)
periodically at pre-determined intervals using a simple, human-friendly syntax.
WWW: https://github.com/dbader/schedule