Received: by mail.netbsd.org (Postfix, from userid 605) id CB2E584DB5; Mon, 20 Aug 2018 12:58:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 684E684CD0 for ; Mon, 20 Aug 2018 12:58:07 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id R4nYxxqOJh3N for ; Mon, 20 Aug 2018 12:58:06 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6C6B684D81 for ; Mon, 20 Aug 2018 12:58:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 64A9FFBEC; Mon, 20 Aug 2018 12:58:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1534769886212030" MIME-Version: 1.0 Date: Mon, 20 Aug 2018 12:58:06 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180820125806.64A9FFBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1534769886212030 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Aug 20 12:58:06 UTC 2018 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/py-zc.lockfile: DESCR Makefile PLIST distinfo Log Message: py-zc.lockfile: added version 1.3.0 The zc.lockfile package provides a basic portable implementation of interprocess locks using lock files. The purpose if not specifically to lock files, but to simply provide locks with an implementation based on file-locking primitives. Of course, these locks could be used to mediate access to other files. For example, the ZODB file storage implementation uses file locks to mediate access to file-storage database files. The database files and lock file files are separate files. To generate a diff of this commit: cvs rdiff -u -r1.2716 -r1.2717 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-zc.lockfile/DESCR \ pkgsrc/devel/py-zc.lockfile/Makefile pkgsrc/devel/py-zc.lockfile/PLIST \ pkgsrc/devel/py-zc.lockfile/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1534769886212030 Content-Disposition: inline Content-Length: 3654 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.2716 pkgsrc/devel/Makefile:1.2717 --- pkgsrc/devel/Makefile:1.2716 Wed Aug 15 15:25:10 2018 +++ pkgsrc/devel/Makefile Mon Aug 20 12:58:06 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2716 2018/08/15 15:25:10 nia Exp $ +# $NetBSD: Makefile,v 1.2717 2018/08/20 12:58:06 adam Exp $ # COMMENT= Development utilities @@ -2323,7 +2323,9 @@ SUBDIR+= py-wrapt SUBDIR+= py-xdg SUBDIR+= py-xopen SUBDIR+= py-zanata-python-client +SUBDIR+= py-zc.lockfile SUBDIR+= py-zconfig +SUBDIR+= py-zope.testing SUBDIR+= python-mode SUBDIR+= pythontidy SUBDIR+= qbzr Added files: Index: pkgsrc/devel/py-zc.lockfile/DESCR diff -u /dev/null pkgsrc/devel/py-zc.lockfile/DESCR:1.1 --- /dev/null Mon Aug 20 12:58:06 2018 +++ pkgsrc/devel/py-zc.lockfile/DESCR Mon Aug 20 12:58:06 2018 @@ -0,0 +1,7 @@ +The zc.lockfile package provides a basic portable implementation of +interprocess locks using lock files. The purpose if not specifically to lock +files, but to simply provide locks with an implementation based on file-locking +primitives. Of course, these locks could be used to mediate access to other +files. For example, the ZODB file storage implementation uses file locks to +mediate access to file-storage database files. The database files and lock file +files are separate files. Index: pkgsrc/devel/py-zc.lockfile/Makefile diff -u /dev/null pkgsrc/devel/py-zc.lockfile/Makefile:1.1 --- /dev/null Mon Aug 20 12:58:06 2018 +++ pkgsrc/devel/py-zc.lockfile/Makefile Mon Aug 20 12:58:06 2018 @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1 2018/08/20 12:58:06 adam Exp $ + +DISTNAME= zc.lockfile-1.3.0 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_PYPI:=z/zc.lockfile/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/zopefoundation/zc.lockfile +COMMENT= Basic inter-process locks +LICENSE= zpl-2.1 + +TEST_DEPENDS+= ${PYPKGPREFIX}-zope.testing-[0-9]*:../../devel/py-zope.testing + +USE_LANGUAGES= # none + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-zc.lockfile/PLIST diff -u /dev/null pkgsrc/devel/py-zc.lockfile/PLIST:1.1 --- /dev/null Mon Aug 20 12:58:06 2018 +++ pkgsrc/devel/py-zc.lockfile/PLIST Mon Aug 20 12:58:06 2018 @@ -0,0 +1,16 @@ +@comment $NetBSD: PLIST,v 1.1 2018/08/20 12:58:06 adam Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/namespace_packages.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/zc.lockfile-1.3.0-py3.7-nspkg.pth +${PYSITELIB}/zc/lockfile/README.txt +${PYSITELIB}/zc/lockfile/__init__.py +${PYSITELIB}/zc/lockfile/__init__.pyc +${PYSITELIB}/zc/lockfile/__init__.pyo +${PYSITELIB}/zc/lockfile/tests.py +${PYSITELIB}/zc/lockfile/tests.pyc +${PYSITELIB}/zc/lockfile/tests.pyo Index: pkgsrc/devel/py-zc.lockfile/distinfo diff -u /dev/null pkgsrc/devel/py-zc.lockfile/distinfo:1.1 --- /dev/null Mon Aug 20 12:58:06 2018 +++ pkgsrc/devel/py-zc.lockfile/distinfo Mon Aug 20 12:58:06 2018 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2018/08/20 12:58:06 adam Exp $ + +SHA1 (zc.lockfile-1.3.0.tar.gz) = 95df508516dc29881d68c2536c54d8a5d8d2a96f +RMD160 (zc.lockfile-1.3.0.tar.gz) = 6f4fbf4208753eed2a406d4442f4a16abbdde657 +SHA512 (zc.lockfile-1.3.0.tar.gz) = d8bedc2f80d00e55d678367e13b607fa081a24575a7109618d3e99555e159b0d8bb67f3a1ec7b70d781de64681e0a9a8053c0c373048a811db6361cea9a422a9 +Size (zc.lockfile-1.3.0.tar.gz) = 11031 bytes --_----------=_1534769886212030--