From owner-svn-ports-all@freebsd.org Fri May 1 19:17:28 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5F9B82DDAC5; Fri, 1 May 2020 19:17:28 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49DMT41jBkz41Nh; Fri, 1 May 2020 19:17:28 +0000 (UTC) (envelope-from mfechner@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 35B3AD206; Fri, 1 May 2020 19:17:28 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 041JHSGf015816; Fri, 1 May 2020 19:17:28 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 041JHSKp015815; Fri, 1 May 2020 19:17:28 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <202005011917.041JHSKp015815@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Fri, 1 May 2020 19:17:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r533582 - head/devel/py-pygit2 X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: head/devel/py-pygit2 X-SVN-Commit-Revision: 533582 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.29 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: Fri, 01 May 2020 19:17:28 -0000 Author: mfechner Date: Fri May 1 19:17:27 2020 New Revision: 533582 URL: https://svnweb.freebsd.org/changeset/ports/533582 Log: Added missing dependency to cached-property which is required since 1.1.0: https://github.com/libgit2/pygit2/blob/master/CHANGELOG.rst#110-2020-03-01 PR: 246098 Reported by: ahktenzero+freebsd@mohorovi.cc Modified: head/devel/py-pygit2/Makefile Modified: head/devel/py-pygit2/Makefile ============================================================================== --- head/devel/py-pygit2/Makefile Fri May 1 19:12:55 2020 (r533581) +++ head/devel/py-pygit2/Makefile Fri May 1 19:17:27 2020 (r533582) @@ -5,6 +5,7 @@ PORTNAME= pygit2 PORTVERSION= 1.2.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,6 +20,7 @@ MY_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>1.0:devel/py-c BUILD_DEPENDS= ${MY_DEPENDS} LIB_DEPENDS= libgit2.so:devel/libgit2 RUN_DEPENDS= ${MY_DEPENDS} \ + ${PYTHON_PKGNAMEPREFIX}cached-property>=0:devel/py-cached-property@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} USES= python:3.5+