From owner-svn-ports-head@freebsd.org Thu Nov 2 06:09:43 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 E0C03E50A23; Thu, 2 Nov 2017 06:09:43 +0000 (UTC) (envelope-from yuri@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 AC8A46ED37; Thu, 2 Nov 2017 06:09:43 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vA269g42046371; Thu, 2 Nov 2017 06:09:42 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vA269g4e046367; Thu, 2 Nov 2017 06:09:42 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201711020609.vA269g4e046367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 2 Nov 2017 06:09:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453338 - in head/sysutils: . py-filelock X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/sysutils: . py-filelock X-SVN-Commit-Revision: 453338 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, 02 Nov 2017 06:09:44 -0000 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 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