From owner-svn-ports-all@freebsd.org Mon Jan 15 22:07:32 2018 Return-Path: Delivered-To: svn-ports-all@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 7AEB4E7A477; Mon, 15 Jan 2018 22:07:32 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 565877192B; Mon, 15 Jan 2018 22:07:32 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 93B0C17180; Mon, 15 Jan 2018 22:07:31 +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 w0FM7VZR088385; Mon, 15 Jan 2018 22:07:31 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0FM7V5P088381; Mon, 15 Jan 2018 22:07:31 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201801152207.w0FM7V5P088381@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 15 Jan 2018 22:07:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r459127 - head/sysutils/py-filelock X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/sysutils/py-filelock X-SVN-Commit-Revision: 459127 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jan 2018 22:07:32 -0000 Author: yuri Date: Mon Jan 15 22:07:31 2018 New Revision: 459127 URL: https://svnweb.freebsd.org/changeset/ports/459127 Log: sysutils/py-filelock: Update to 3.0.0 Submitted by: myself Reported by: portscout Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13842 Modified: head/sysutils/py-filelock/Makefile head/sysutils/py-filelock/distinfo head/sysutils/py-filelock/pkg-descr Modified: head/sysutils/py-filelock/Makefile ============================================================================== --- head/sysutils/py-filelock/Makefile Mon Jan 15 22:05:30 2018 (r459126) +++ head/sysutils/py-filelock/Makefile Mon Jan 15 22:07:31 2018 (r459127) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= filelock -PORTVERSION= 2.0.13 +DISTVERSION= 3.0.0 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-filelock/distinfo ============================================================================== --- head/sysutils/py-filelock/distinfo Mon Jan 15 22:05:30 2018 (r459126) +++ head/sysutils/py-filelock/distinfo Mon Jan 15 22:07:31 2018 (r459127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1510648699 -SHA256 (filelock-2.0.13.tar.gz) = d05079e7d7cae7576e192749d3461999ca6b0843d35b0f79f1fa956b0f6fc7d8 -SIZE (filelock-2.0.13.tar.gz) = 5630 +TIMESTAMP = 1515624425 +SHA256 (filelock-3.0.0.tar.gz) = b3ad481724adfb2280773edd95ce501e497e88fa4489c6e41e637ab3fd9a456c +SIZE (filelock-3.0.0.tar.gz) = 5626 Modified: head/sysutils/py-filelock/pkg-descr ============================================================================== --- head/sysutils/py-filelock/pkg-descr Mon Jan 15 22:05:30 2018 (r459126) +++ head/sysutils/py-filelock/pkg-descr Mon Jan 15 22:07:31 2018 (r459127) @@ -1,6 +1,7 @@ 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 +WWW: https://github.com/benediktschmitt/py-filelock