pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/py-virtualenv py-virtualenv: updated to 16.6.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/04d2316cc0e5
branches:  trunk
changeset: 334511:04d2316cc0e5
user:      adam <adam%pkgsrc.org@localhost>
date:      Wed May 29 20:16:15 2019 +0000

description:
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

diffstat:

 devel/py-virtualenv/Makefile |   9 +++++----
 devel/py-virtualenv/PLIST    |   8 ++++----
 devel/py-virtualenv/distinfo |  10 +++++-----
 3 files changed, 14 insertions(+), 13 deletions(-)

diffs (69 lines):

diff -r 6255a47b3fa6 -r 04d2316cc0e5 devel/py-virtualenv/Makefile
--- a/devel/py-virtualenv/Makefile      Wed May 29 20:13:09 2019 +0000
+++ b/devel/py-virtualenv/Makefile      Wed May 29 20:16:15 2019 +0000
@@ -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 @@
 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 @@
 
 post-install:
        cd ${DESTDIR}${PREFIX}/bin && \
-               ${MV} virtualenv virtualenv-${PYVERSSUFFIX} || ${TRUE}
+       ${MV} virtualenv virtualenv-${PYVERSSUFFIX} || ${TRUE}
 
 do-test:
        cd ${WRKSRC} && pytest-${PYVERSSUFFIX}
diff -r 6255a47b3fa6 -r 04d2316cc0e5 devel/py-virtualenv/PLIST
--- a/devel/py-virtualenv/PLIST Wed May 29 20:13:09 2019 +0000
+++ b/devel/py-virtualenv/PLIST Wed May 29 20:16:15 2019 +0000
@@ -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_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
diff -r 6255a47b3fa6 -r 04d2316cc0e5 devel/py-virtualenv/distinfo
--- a/devel/py-virtualenv/distinfo      Wed May 29 20:13:09 2019 +0000
+++ b/devel/py-virtualenv/distinfo      Wed May 29 20:16:15 2019 +0000
@@ -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