Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Mar 2020 00:45:35 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r528619 - head/devel/py-virtualenvwrapper
Message-ID:  <202003180045.02I0jZLt071240@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Wed Mar 18 00:45:35 2020
New Revision: 528619
URL: https://svnweb.freebsd.org/changeset/ports/528619

Log:
  devel/py-virtualenvwrapper: Fix virtualenvwrapper_lazy.sh wrapper
  
  Fix the virtualenvwrapper_lazy.sh wrapper to invoke the Python
  versions-specific virtualenvwrapper.sh script that the port/package was
  built with, preventing the following error:
  
    ERROR: virtualenvwrapper_lazy.sh: Could not find virtualenvwrapper.sh
  
  While I'm here:
  
    - Update pkg-descr WWW: URL to match setup.py:homepage
    - Update COMMENT to match setup.py:summary
  
  Approved by:	portmgr (blanket: ports (python) compliance, run-time bugfix)
  MFH:		2020Q1 (blanket: ports (python) compliance, run-time bugfix)

Modified:
  head/devel/py-virtualenvwrapper/Makefile
  head/devel/py-virtualenvwrapper/pkg-descr

Modified: head/devel/py-virtualenvwrapper/Makefile
==============================================================================
--- head/devel/py-virtualenvwrapper/Makefile	Wed Mar 18 00:34:19 2020	(r528618)
+++ head/devel/py-virtualenvwrapper/Makefile	Wed Mar 18 00:45:35 2020	(r528619)
@@ -3,13 +3,13 @@
 
 PORTNAME=	virtualenvwrapper
 PORTVERSION=	4.8.2
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 
 MAINTAINER=	nivit@FreeBSD.org
-COMMENT=	Set of extensions to virtualenv
+COMMENT=	Enhancements to virtualenv
 
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
@@ -33,11 +33,14 @@ DOCS_VARS=		PYDISTUTILS_BUILD_TARGET+=build_sphinx \
 NO_ARCH=	yes
 
 post-patch:
-	@${REINPLACE_CMD} \
+	${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
+	${REINPLACE_CMD} \
+		-e 's|which virtualenvwrapper.sh|which ${PORTNAME}.sh${UNIQUE_SUFFIX}|' \
+		${WRKSRC}/${PORTNAME}_lazy.sh
 
 post-patch-DOCS-on:
 	@${REINPLACE_CMD} -e 's|python setup.py|${PYTHON_CMD} setup.py|' \

Modified: head/devel/py-virtualenvwrapper/pkg-descr
==============================================================================
--- head/devel/py-virtualenvwrapper/pkg-descr	Wed Mar 18 00:34:19 2020	(r528618)
+++ head/devel/py-virtualenvwrapper/pkg-descr	Wed Mar 18 00:45:35 2020	(r528619)
@@ -5,4 +5,4 @@ managing your development workflow, making it easier t
 than one project at a time without introducing conflicts in their
 dependencies.
 
-WWW: http://virtualenvwrapper.readthedocs.org/en/latest/index.html
+WWW: https://virtualenvwrapper.readthedocs.io/



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