Date: Thu, 2 Nov 2017 06:09:42 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453338 - in head/sysutils: . py-filelock Message-ID: <201711020609.vA269g4e046367@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Thu Nov 2 06:09:42 2017 New Revision: 453338 URL: https://svnweb.freebsd.org/changeset/ports/453338 Log: New port: sysutils/py-filelock: Platform independent file lock PR: 220696 Reviewed by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D12903 Added: head/sysutils/py-filelock/ head/sysutils/py-filelock/Makefile (contents, props changed) head/sysutils/py-filelock/distinfo (contents, props changed) head/sysutils/py-filelock/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Nov 2 06:07:06 2017 (r453337) +++ head/sysutils/Makefile Thu Nov 2 06:09:42 2017 (r453338) @@ -888,6 +888,7 @@ SUBDIR += py-execnet SUBDIR += py-ezjailremote SUBDIR += py-filelike + SUBDIR += py-filelock SUBDIR += py-freenas.cli SUBDIR += py-glances SUBDIR += py-gmailfs-fuse Added: head/sysutils/py-filelock/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-filelock/Makefile Thu Nov 2 06:09:42 2017 (r453338) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= filelock +PORTVERSION= 2.0.12 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Platform independent file lock + +LICENSE= PD +LICENSE_FILE= ${WRKSRC}/LICENSE.rst + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/sysutils/py-filelock/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-filelock/distinfo Thu Nov 2 06:09:42 2017 (r453338) @@ -0,0 +1,3 @@ +TIMESTAMP = 1509595652 +SHA256 (filelock-2.0.12.tar.gz) = eb4314a9a032707a914b037433ce866d4ed363fce8605d45f0c9d2cd6ac52f98 +SIZE (filelock-2.0.12.tar.gz) = 5576 Added: head/sysutils/py-filelock/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-filelock/pkg-descr Thu Nov 2 06:09:42 2017 (r453338) @@ -0,0 +1,6 @@ +This package contains a single module, which implements a platform +independent file lock in Python. +The lock includes a lock counter and is thread safe. This means, +when locking the same lock object twice, it will not block. + +WWW: https://pypi.python.org/pypi/filelock
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711020609.vA269g4e046367>