svn commit: r475543 - in head/devel: . py-yg.lockfile
Martin Wilke
miwi at FreeBSD.org
Sat Jul 28 12:20:31 UTC 2018
Author: miwi
Date: Sat Jul 28 12:20:29 2018
New Revision: 475543
URL: https://svnweb.freebsd.org/changeset/ports/475543
Log:
This package provides a FileLock class that implements a context manager with
timeouts on top of zc.lockfile, an excellent, cross-platorm implementation of
file locking.
WWW: https://github.com/yougov/yg.lockfile
PR: 229500
Submitted by: freebsd_ports at k-worx.org
Sponsored by: iXsystems Inc.
Added:
head/devel/py-yg.lockfile/
head/devel/py-yg.lockfile/Makefile (contents, props changed)
head/devel/py-yg.lockfile/distinfo (contents, props changed)
head/devel/py-yg.lockfile/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sat Jul 28 12:16:30 2018 (r475542)
+++ head/devel/Makefile Sat Jul 28 12:20:29 2018 (r475543)
@@ -5176,6 +5176,7 @@
SUBDIR += py-yappi
SUBDIR += py-yapps2
SUBDIR += py-ydbf
+ SUBDIR += py-yg.lockfile
SUBDIR += py-yum-metadata-parser
SUBDIR += py-yunomi
SUBDIR += py-z3c.autoinclude
Added: head/devel/py-yg.lockfile/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-yg.lockfile/Makefile Sat Jul 28 12:20:29 2018 (r475543)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME= yg.lockfile
+PORTVERSION= 2.3
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= freebsd_ports at k-worx.org
+COMMENT= Provides lockfile objects with timeouts and context manager
+
+LICENSE= MIT
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=1.15.0:devel/py-setuptools_scm@${PY_FLAVOR}
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zclockfile>=0:devel/py-zclockfile@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}tempora>=0:devel/py-tempora@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}jaraco.functools>=1.16:devel/py-jaraco.functools@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}contextlib2>=0.5:devel/py-contextlib2@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= distutils autoplist
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/devel/py-yg.lockfile/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-yg.lockfile/distinfo Sat Jul 28 12:20:29 2018 (r475543)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1530208251
+SHA256 (yg.lockfile-2.3.tar.gz) = b8c8a482958daaa47682bc3004d237c2888e0086e55c2b47b5d8810d100db732
+SIZE (yg.lockfile-2.3.tar.gz) = 6504
Added: head/devel/py-yg.lockfile/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-yg.lockfile/pkg-descr Sat Jul 28 12:20:29 2018 (r475543)
@@ -0,0 +1,5 @@
+This package provides a FileLock class that implements a context manager with
+timeouts on top of zc.lockfile, an excellent, cross-platorm implementation of
+file locking.
+
+WWW: https://github.com/yougov/yg.lockfile
More information about the svn-ports-all
mailing list