svn commit: r528620 - branches/2020Q1/devel/py-virtualenvwrapper
Kubilay Kocak
koobs at FreeBSD.org
Wed Mar 18 00:52:02 UTC 2020
Author: koobs
Date: Wed Mar 18 00:51:59 2020
New Revision: 528620
URL: https://svnweb.freebsd.org/changeset/ports/528620
Log:
MFH: r528619 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)
Approved by: ports-secteam (blanket: ports (python) compliance, run-time bugfix)
Modified:
branches/2020Q1/devel/py-virtualenvwrapper/Makefile
branches/2020Q1/devel/py-virtualenvwrapper/pkg-descr
Directory Properties:
branches/2020Q1/ (props changed)
Modified: branches/2020Q1/devel/py-virtualenvwrapper/Makefile
==============================================================================
--- branches/2020Q1/devel/py-virtualenvwrapper/Makefile Wed Mar 18 00:45:35 2020 (r528619)
+++ branches/2020Q1/devel/py-virtualenvwrapper/Makefile Wed Mar 18 00:51:59 2020 (r528620)
@@ -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 at 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: branches/2020Q1/devel/py-virtualenvwrapper/pkg-descr
==============================================================================
--- branches/2020Q1/devel/py-virtualenvwrapper/pkg-descr Wed Mar 18 00:45:35 2020 (r528619)
+++ branches/2020Q1/devel/py-virtualenvwrapper/pkg-descr Wed Mar 18 00:51:59 2020 (r528620)
@@ -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/
More information about the svn-ports-branches
mailing list