From owner-svn-ports-all@freebsd.org Wed Mar 18 00:45:36 2020 Return-Path: Delivered-To: svn-ports-all@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 7240D2773FB; Wed, 18 Mar 2020 00:45:36 +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 48hrtS1CRtz3Fgx; Wed, 18 Mar 2020 00:45:36 +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 1FD1E19D91; Wed, 18 Mar 2020 00:45:36 +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 02I0jZFK071241; Wed, 18 Mar 2020 00:45:35 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02I0jZLt071240; Wed, 18 Mar 2020 00:45:35 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <202003180045.02I0jZLt071240@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:45:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r528619 - head/devel/py-virtualenvwrapper X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: head/devel/py-virtualenvwrapper X-SVN-Commit-Revision: 528619 X-SVN-Commit-Repository: ports 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.29 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: Wed, 18 Mar 2020 00:45:36 -0000 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/