From owner-svn-ports-all@freebsd.org Fri Mar 24 18:30:48 2017 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 D66F5D1B7EA; Fri, 24 Mar 2017 18:30:48 +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 9E8B417FE; Fri, 24 Mar 2017 18:30:48 +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 v2OIUlDa036040; Fri, 24 Mar 2017 18:30:47 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2OIUlEv036038; Fri, 24 Mar 2017 18:30:47 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201703241830.v2OIUlEv036038@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Fri, 24 Mar 2017 18:30:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436848 - in head/lang: cython cython3 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.23 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, 24 Mar 2017 18:30:48 -0000 Author: araujo Date: Fri Mar 24 18:30:47 2017 New Revision: 436848 URL: https://svnweb.freebsd.org/changeset/ports/436848 Log: Make cython and cython3 co-exist. Reported by: jbeich@ Differential Revision: https://reviews.freebsd.org/D5845 (based on) Modified: head/lang/cython/Makefile head/lang/cython3/Makefile Modified: head/lang/cython/Makefile ============================================================================== --- head/lang/cython/Makefile Fri Mar 24 17:50:57 2017 (r436847) +++ head/lang/cython/Makefile Fri Mar 24 18:30:47 2017 (r436848) @@ -15,7 +15,7 @@ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES?= python -USE_PYTHON= autoplist distutils +USE_PYTHON+= autoplist distutils post-install: ${FIND} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Cython \ Modified: head/lang/cython3/Makefile ============================================================================== --- head/lang/cython3/Makefile Fri Mar 24 17:50:57 2017 (r436847) +++ head/lang/cython3/Makefile Fri Mar 24 18:30:47 2017 (r436848) @@ -1,6 +1,10 @@ MASTERDIR= ${.CURDIR}/../cython PKGNAMESUFFIX= 3 +PKGNAMESUFFIX= 3 + USES= python:3.3+ +USE_PYTHON= concurrent +UNIQUE_SUFFIX= ${PKGNAMESUFFIX} .include "${MASTERDIR}/Makefile"