From owner-svn-ports-all@freebsd.org Sun Jan 31 08:21:51 2016 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 66CB3A73401; Sun, 31 Jan 2016 08:21:51 +0000 (UTC) (envelope-from koobs@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 383041F2E; Sun, 31 Jan 2016 08:21:51 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0V8LoTr070586; Sun, 31 Jan 2016 08:21:50 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0V8LogO070584; Sun, 31 Jan 2016 08:21:50 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201601310821.u0V8LogO070584@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sun, 31 Jan 2016 08:21:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407585 - in head/archivers: py-libarchive-c py3-libarchive-c X-SVN-Group: ports-head 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.20 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: Sun, 31 Jan 2016 08:21:51 -0000 Author: koobs Date: Sun Jan 31 08:21:49 2016 New Revision: 407585 URL: https://svnweb.freebsd.org/changeset/ports/407585 Log: archivers/py3-libarchive-c: Add Python 3.x version of port Add a Python 3.x sub-port of py-libarchive-c, in order for a port of the Debian diffoscope project to be created, which is Python 3 only. This (py3-*) hack^W workaround ensures a py3x-* package can be created by default. - Allow USES to be overriden in base port accordingly While I'm here - Enable NO_ARCH Requested by: emaste, bapt (for diffoscope, reproducible builds) Added: head/archivers/py3-libarchive-c/ head/archivers/py3-libarchive-c/Makefile (contents, props changed) Modified: head/archivers/py-libarchive-c/Makefile Modified: head/archivers/py-libarchive-c/Makefile ============================================================================== --- head/archivers/py-libarchive-c/Makefile Sun Jan 31 08:21:30 2016 (r407584) +++ head/archivers/py-libarchive-c/Makefile Sun Jan 31 08:21:49 2016 (r407585) @@ -13,13 +13,15 @@ LICENSE= LGPL20+ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:${PORTSDIR}/devel/py-pytest -USES= python +USES?= python USE_GITHUB= yes USE_PYTHON= autoplist distutils GH_ACCOUNT= Changaco GH_PROJECT= python-${PORTNAME} +NO_ARCH= yes + do-test: @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest Added: head/archivers/py3-libarchive-c/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py3-libarchive-c/Makefile Sun Jan 31 08:21:49 2016 (r407585) @@ -0,0 +1,8 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-libarchive-c + +USES= python:3.3+ + +.include "${MASTERDIR}/Makefile"