From owner-svn-ports-all@freebsd.org Sun Jan 31 08:17:53 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 1797DA731A3; Sun, 31 Jan 2016 08:17:53 +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 DEB801A26; Sun, 31 Jan 2016 08:17:52 +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 u0V8HpQw067453; Sun, 31 Jan 2016 08:17:51 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0V8Hpje067451; Sun, 31 Jan 2016 08:17:51 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201601310817.u0V8Hpje067451@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:17:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407581 - in head/devel: . py3-python-magic 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:17:53 -0000 Author: koobs Date: Sun Jan 31 08:17:51 2016 New Revision: 407581 URL: https://svnweb.freebsd.org/changeset/ports/407581 Log: devel/py3-python-magic Add Python 3.x version of port Add a Python 3.x sub-port of py-python-magic, 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. Requested by: emaste, bapt (for diffoscope, reproducible builds) Added: head/devel/py3-python-magic/ head/devel/py3-python-magic/Makefile (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jan 31 07:15:38 2016 (r407580) +++ head/devel/Makefile Sun Jan 31 08:17:51 2016 (r407581) @@ -4531,6 +4531,7 @@ SUBDIR += py3-jsonschema SUBDIR += py3-libpeas SUBDIR += py3-pytz + SUBDIR += py3-python-magic SUBDIR += py3-vcversioner SUBDIR += py3-xdg SUBDIR += py_static_check Added: head/devel/py3-python-magic/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-python-magic/Makefile Sun Jan 31 08:17:51 2016 (r407581) @@ -0,0 +1,8 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-python-magic + +USES= python:3.3+ + +.include "${MASTERDIR}/Makefile"