Date: Thu, 12 Oct 2017 17:53:12 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451920 - in head/devel: . py-pid Message-ID: <201710121753.v9CHrCmm016129@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: feld Date: Thu Oct 12 17:53:12 2017 New Revision: 451920 URL: https://svnweb.freebsd.org/changeset/ports/451920 Log: Pidfile featuring stale detection and file-locking, can also be used as context-manager or decorator WWW: http://pypi.python.org/pypi/pid Added: head/devel/py-pid/ head/devel/py-pid/Makefile (contents, props changed) head/devel/py-pid/distinfo (contents, props changed) head/devel/py-pid/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 12 17:44:06 2017 (r451919) +++ head/devel/Makefile Thu Oct 12 17:53:12 2017 (r451920) @@ -4635,6 +4635,7 @@ SUBDIR += py-phonenumbers SUBDIR += py-phply SUBDIR += py-phpserialize + SUBDIR += py-pid SUBDIR += py-pika SUBDIR += py-pika-pool SUBDIR += py-pinocchio Added: head/devel/py-pid/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pid/Makefile Thu Oct 12 17:53:12 2017 (r451920) @@ -0,0 +1,22 @@ +# Created by: Mark Felder <feld@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= pid +PORTVERSION= 2.1.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= feld@FreeBSD.org +COMMENT= Pidfile management for Python + +LICENSE= APACHE20 + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose + +NO_ARCH= yes + +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/devel/py-pid/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pid/distinfo Thu Oct 12 17:53:12 2017 (r451920) @@ -0,0 +1,3 @@ +TIMESTAMP = 1507830508 +SHA256 (pid-2.1.1.tar.gz) = b443169d3dc21397695b4a82016fadb4cfdb0ed8b2ddb4aaa428e1701bb34e1f +SIZE (pid-2.1.1.tar.gz) = 9591 Added: head/devel/py-pid/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pid/pkg-descr Thu Oct 12 17:53:12 2017 (r451920) @@ -0,0 +1,4 @@ +Pidfile featuring stale detection and file-locking, can also be used as +context-manager or decorator + +WWW: http://pypi.python.org/pypi/pid
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710121753.v9CHrCmm016129>