From owner-svn-ports-branches@freebsd.org Wed Mar 18 00:52:02 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 870E9277636; Wed, 18 Mar 2020 00:52:02 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48hs1s1XbWz40DH; Wed, 18 Mar 2020 00:52:01 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A9C8019F21; Wed, 18 Mar 2020 00:52:00 +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 02I0q0QT075519; Wed, 18 Mar 2020 00:52:00 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02I0q0GI075517; Wed, 18 Mar 2020 00:52:00 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <202003180052.02I0q0GI075517@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Wed, 18 Mar 2020 00:52:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r528620 - branches/2020Q1/devel/py-virtualenvwrapper X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2020Q1/devel/py-virtualenvwrapper X-SVN-Commit-Revision: 528620 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2020 00:52:02 -0000 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@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/