From owner-svn-ports-head@freebsd.org Thu Oct 12 17:53:14 2017 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 422DBE30515; Thu, 12 Oct 2017 17:53:14 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 0F4AF188F; Thu, 12 Oct 2017 17:53:13 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9CHrDtE016133; Thu, 12 Oct 2017 17:53:13 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9CHrCmm016129; Thu, 12 Oct 2017 17:53:12 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201710121753.v9CHrCmm016129@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 12 Oct 2017 17:53:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451920 - in head/devel: . py-pid X-SVN-Group: ports-head X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in head/devel: . py-pid X-SVN-Commit-Revision: 451920 X-SVN-Commit-Repository: ports 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.23 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, 12 Oct 2017 17:53:14 -0000 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 +# $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 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