Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Aug 2019 01:35:23 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r508702 - branches/2019Q3/devel/py-virtualenvwrapper
Message-ID:  <201908120135.x7C1ZNSE040508@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Mon Aug 12 01:35:23 2019
New Revision: 508702
URL: https://svnweb.freebsd.org/changeset/ports/508702

Log:
  MFH: r508701 devel/py-virtualenvwrapper: Allow Python 3 builds
  
  virtualenvwrapper supports Python 3, remove unnecessary limitation on 2.7
  accordingly.
  
  A dependency (sphinxcontrib-bitbucket) Python 3 build/run error was
  fixed in ports r508699, which is required by virtualenvwrapper for its
  DOCS option/build.
  
  While I'm here:
  
    - Level up ports compliance (NO_ARCH, USES/USE order)
    - Remove unecessary DOCS_VARS DOCSDIR override (concurrent does this)
    - Patch virtualenvwrapper command invocations (virtualenv,
      virtualenv-clone) to use Python version-specific filenames
  
  Approved by:	portmgr (blanket(s): ports compliance, python compliance)
  
  Approved by:	ports-secteam (blanket(s): port bugfixes)

Modified:
  branches/2019Q3/devel/py-virtualenvwrapper/Makefile
Directory Properties:
  branches/2019Q3/   (props changed)

Modified: branches/2019Q3/devel/py-virtualenvwrapper/Makefile
==============================================================================
--- branches/2019Q3/devel/py-virtualenvwrapper/Makefile	Mon Aug 12 01:33:35 2019	(r508701)
+++ branches/2019Q3/devel/py-virtualenvwrapper/Makefile	Mon Aug 12 01:35:23 2019	(r508702)
@@ -3,7 +3,7 @@
 
 PORTNAME=	virtualenvwrapper
 PORTVERSION=	4.8.2
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -19,20 +19,24 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}stevedore>0:devel/
 		${PYTHON_PKGNAMEPREFIX}virtualenv>0:devel/py-virtualenv@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}virtualenv-clone>0:devel/py-virtualenv-clone@${PY_FLAVOR}
 
+# Actually 2.6-2.7,3.3-3.6
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
 OPTIONS_DEFINE=	DOCS
 
 DOCS_BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx@${PY_FLAVOR} \
 			${PYTHON_PKGNAMEPREFIX}sphinxcontrib-bitbucket>=1.0:textproc/py-sphinxcontrib-bitbucket@${PY_FLAVOR}
+DOCS_VARS=		PYDISTUTILS_BUILD_TARGET+=build_sphinx \
+			PYDISTUTILS_BUILDARGS="-a -E"
 
-USES=		python:2.7
-USE_PYTHON=	autoplist concurrent distutils
+NO_ARCH=	yes
 
-DOCS_VARS=	DOCSDIR=${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} \
-		PYDISTUTILS_BUILD_TARGET+=build_sphinx \
-		PYDISTUTILS_BUILDARGS="-a -E"
-
 post-patch:
-	@${REINPLACE_CMD} -e 's|$$(command \\which python)|${PYTHON_CMD}|1' \
+	@${REINPLACE_CMD} \
+		-e 's|$$(command \\which python)|${PYTHON_CMD}|1' \
+		-e 's|="virtualenv"|="virtualenv${UNIQUE_SUFFIX}"|1' \
+		-e 's|="virtualenv-clone"|="virtualenv-clone${UNIQUE_SUFFIX}"|1' \
 		${WRKSRC}/${PORTNAME}.sh
 
 post-patch-DOCS-on:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908120135.x7C1ZNSE040508>