From owner-svn-ports-head@freebsd.org Fri Jun 2 11:03:32 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 C66CEBF5280; Fri, 2 Jun 2017 11:03:32 +0000 (UTC) (envelope-from araujo@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 96A7C83AF3; Fri, 2 Jun 2017 11:03:32 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v52B3Vfr083459; Fri, 2 Jun 2017 11:03:31 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v52B3Veq083457; Fri, 2 Jun 2017 11:03:31 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201706021103.v52B3Veq083457@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Fri, 2 Jun 2017 11:03:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442373 - in head/devel: py-pygit2 py3-pygit2 X-SVN-Group: ports-head 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: Fri, 02 Jun 2017 11:03:32 -0000 Author: araujo Date: Fri Jun 2 11:03:31 2017 New Revision: 442373 URL: https://svnweb.freebsd.org/changeset/ports/442373 Log: - Create a python3 version of devel/py-pygit2. Added: head/devel/py3-pygit2/ head/devel/py3-pygit2/Makefile (contents, props changed) Modified: head/devel/py-pygit2/Makefile Modified: head/devel/py-pygit2/Makefile ============================================================================== --- head/devel/py-pygit2/Makefile Fri Jun 2 11:02:50 2017 (r442372) +++ head/devel/py-pygit2/Makefile Fri Jun 2 11:03:31 2017 (r442373) @@ -13,12 +13,12 @@ COMMENT= Python bindings for libgit2 LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>0:devel/py-cffi +BUILD_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}cffi>0:devel/py-cffi LIB_DEPENDS= libgit2.so:devel/libgit2 -RUN_DEPENDS:= ${BUILD_DEPENDS} \ +RUN_DEPENDS?= ${BUILD_DEPENDS} \ ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six -USES= python +USES?= python USE_PYTHON= autoplist distutils MAKE_ENV= LIBGIT2=${LOCALBASE} PYDISTUTILS_TEST_TARGET?= test Added: head/devel/py3-pygit2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-pygit2/Makefile Fri Jun 2 11:03:31 2017 (r442373) @@ -0,0 +1,10 @@ + +MASTERDIR= ${.CURDIR}/../py-pygit2 + +USES= python:3.3+ + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>0:devel/py3-cffi +RUN_DEPENDS= ${BUILD_DEPENDS} \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py3-six + +.include "${MASTERDIR}/Makefile"