1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00

New port: sysutils/py-filelock: Platform independent file lock

PR:		220696
Reviewed by:	tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D12903
This commit is contained in:
Yuri Victorovich 2017-11-02 06:09:42 +00:00
parent 5cc3f472f4
commit 5442cebb94
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=453338
4 changed files with 29 additions and 0 deletions

View File

@ -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

View File

@ -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>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1509595652
SHA256 (filelock-2.0.12.tar.gz) = eb4314a9a032707a914b037433ce866d4ed363fce8605d45f0c9d2cd6ac52f98
SIZE (filelock-2.0.12.tar.gz) = 5576

View File

@ -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