pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/py-virtualenv
Module Name: pkgsrc
Committed By: adam
Date: Wed May 29 20:16:15 UTC 2019
Modified Files:
pkgsrc/devel/py-virtualenv: Makefile PLIST distinfo
Log Message:
py-virtualenv: updated to 16.6.0
v16.6.0:
Features
- Drop Jython support. Jython became slower and slower in the last few months and significantly holds back our
CI and development. As there's very little user base for it decided to drop support for it. If there are Jython
developers reach out to us to see how we can add back support.
- Upgrade embedded packages:
* upgrade wheel from 0.33.1 to 0.33.4
* upgrade pip from 19.1 to 19.1.1
v16.5.0:
Bugfixes
- Add tests covering prompt manipulation during activation/deactivation,
and harmonize behavior of all supported shells
- Handle running virtualenv from within a virtual environment created
using the stdlib venv module. Fixes 1339.
Features
- -p option accepts Python version in following formats now: X, X-ZZ, X.Y and X.Y-ZZ, where ZZ is 32 or 64. (Windows only)
- upgrade pip from 19.0.3 to 19.1
- upgrade setuptools from 40.8.0 to 41.0.1
v16.4.3:
Bugfixes
- Revert the symlink fix, causing debian packaging issues.
v16.4.1:
Bugfixes
- Fix license() builtin by copying the LICENSE file into the virtualenv
Features
- bump vendored pip to 19.0.3 and wheel to 0.33.1
v16.4.0:
Bugfixes
- fixes the scenario where the python base install is symlinked with relative symlinks
- Use importlib over imp in virtualenv.py for python >= 3.4
- Copy or link PyPy header files instead of include directory itself
- Allow virtualenv creation with older pip not having config command
correspondingly disabling configuration related features (such as pip cert
setting) in this case.
Features
- upgrade to pip 19.0.2 and setuptools 40.8.0
To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 pkgsrc/devel/py-virtualenv/Makefile
cvs rdiff -u -r1.36 -r1.37 pkgsrc/devel/py-virtualenv/PLIST
cvs rdiff -u -r1.34 -r1.35 pkgsrc/devel/py-virtualenv/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/py-virtualenv/Makefile
diff -u pkgsrc/devel/py-virtualenv/Makefile:1.43 pkgsrc/devel/py-virtualenv/Makefile:1.44
--- pkgsrc/devel/py-virtualenv/Makefile:1.43 Mon Jan 28 08:39:23 2019
+++ pkgsrc/devel/py-virtualenv/Makefile Wed May 29 20:16:15 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.43 2019/01/28 08:39:23 adam Exp $
+# $NetBSD: Makefile,v 1.44 2019/05/29 20:16:15 adam Exp $
-DISTNAME= virtualenv-16.3.0
+DISTNAME= virtualenv-16.6.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=v/virtualenv/}
@@ -10,11 +10,12 @@ HOMEPAGE= https://virtualenv.pypa.io/
COMMENT= Virtual Python Environment builder
LICENSE= mit
+TEST_DEPENDS+= ${PYPKGPREFIX}-pypiserver-[0-9]*:../../net/py-pypiserver
TEST_DEPENDS+= ${PYPKGPREFIX}-coverage>=4.5.0:../../devel/py-coverage
TEST_DEPENDS+= ${PYPKGPREFIX}-test>=4.0.0:../../devel/py-test
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-localserver-[0-9]*:../../devel/py-test-localserver
TEST_DEPENDS+= ${PYPKGPREFIX}-test-timeout>=1.3.0:../../devel/py-test-timeout
TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist-[0-9]*:../../devel/py-test-xdist
-
.include "../../lang/python/pyversion.mk"
.if ${_PYTHON_VERSION} == 27
TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
@@ -26,7 +27,7 @@ REPLACE_PYTHON= virtualenv.py
post-install:
cd ${DESTDIR}${PREFIX}/bin && \
- ${MV} virtualenv virtualenv-${PYVERSSUFFIX} || ${TRUE}
+ ${MV} virtualenv virtualenv-${PYVERSSUFFIX} || ${TRUE}
do-test:
cd ${WRKSRC} && pytest-${PYVERSSUFFIX}
Index: pkgsrc/devel/py-virtualenv/PLIST
diff -u pkgsrc/devel/py-virtualenv/PLIST:1.36 pkgsrc/devel/py-virtualenv/PLIST:1.37
--- pkgsrc/devel/py-virtualenv/PLIST:1.36 Mon Jan 28 08:39:23 2019
+++ pkgsrc/devel/py-virtualenv/PLIST Wed May 29 20:16:15 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.36 2019/01/28 08:39:23 adam Exp $
+@comment $NetBSD: PLIST,v 1.37 2019/05/29 20:16:15 adam Exp $
bin/virtualenv-${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -13,6 +13,6 @@ ${PYSITELIB}/virtualenv.pyo
${PYSITELIB}/virtualenv_support/__init__.py
${PYSITELIB}/virtualenv_support/__init__.pyc
${PYSITELIB}/virtualenv_support/__init__.pyo
-${PYSITELIB}/virtualenv_support/pip-19.0.1-py2.py3-none-any.whl
-${PYSITELIB}/virtualenv_support/setuptools-40.6.3-py2.py3-none-any.whl
-${PYSITELIB}/virtualenv_support/wheel-0.32.3-py2.py3-none-any.whl
+${PYSITELIB}/virtualenv_support/pip-19.1.1-py2.py3-none-any.whl
+${PYSITELIB}/virtualenv_support/setuptools-41.0.1-py2.py3-none-any.whl
+${PYSITELIB}/virtualenv_support/wheel-0.33.4-py2.py3-none-any.whl
Index: pkgsrc/devel/py-virtualenv/distinfo
diff -u pkgsrc/devel/py-virtualenv/distinfo:1.34 pkgsrc/devel/py-virtualenv/distinfo:1.35
--- pkgsrc/devel/py-virtualenv/distinfo:1.34 Mon Jan 28 08:39:23 2019
+++ pkgsrc/devel/py-virtualenv/distinfo Wed May 29 20:16:15 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.34 2019/01/28 08:39:23 adam Exp $
+$NetBSD: distinfo,v 1.35 2019/05/29 20:16:15 adam Exp $
-SHA1 (virtualenv-16.3.0.tar.gz) = 9f7d27a4f8d8d4c7fe176d97e5afbcfa68f8e19d
-RMD160 (virtualenv-16.3.0.tar.gz) = a8f9ef0dee86d22ab58ef03d6d6e0f0f84057973
-SHA512 (virtualenv-16.3.0.tar.gz) = e9fe25732aadfde39ccefb4fda9b24e95b64b86be538d167e3315314a0d6741d4e88f16f6dcbf2b9848a95562a612df98a1868dd9b0f698d1859b07beee0406f
-Size (virtualenv-16.3.0.tar.gz) = 2014631 bytes
+SHA1 (virtualenv-16.6.0.tar.gz) = aa60bbfba9167e2a769da5ee19ebc8b9f23ea57d
+RMD160 (virtualenv-16.6.0.tar.gz) = 479a35ab6132643438756db8b99603586d8cbe35
+SHA512 (virtualenv-16.6.0.tar.gz) = f116c0d4b563a91da5c2a49c92fbfe5a0f16b1353943e6b315852c59d6a4c5260d44a95b9d4c46172d0d3a116cce21da4187b2415b14c847994eca6df6bc003b
+Size (virtualenv-16.6.0.tar.gz) = 3727204 bytes
Home |
Main Index |
Thread Index |
Old Index