Hi,

Here's a diff to update pip to the latest bugfix release. While there,
shuffle the Makefile so it's easier to read.

Changelog
* Fix a regression on systems with uninitialized locale (:issue:`3575`).
* Use environment markers to filter packages before determining if a
  required wheel is supported. Solves (:issue:`3254`).
* Make glibc parsing for `manylinux1` support more robust for the
  variety of glibc versions found in the wild (:issue:`3588`).
* Update environment marker support to fully support PEP 508 and legacy
  environment markers (:issue:`3624`).
* Always use debug logging to the ``--log`` file (:issue:`3351`).
* Don't attempt to wrap search results for extremely narrow terminal
  windows (:issue:`3655`).

Slightly tested on amd64.

Comments? OK?

Cheers,
Daniel

Index: Makefile
===================================================================
RCS file: /cvs/ports/devel/py-pip/Makefile,v
retrieving revision 1.26
diff -u -p -r1.26 Makefile
--- Makefile    16 Apr 2016 19:06:26 -0000      1.26
+++ Makefile    14 May 2016 19:38:56 -0000
@@ -2,26 +2,26 @@
 
 COMMENT =              Python easy_install replacement
 
-MODPY_EGG_VERSION =    8.1.1
+MODPY_EGG_VERSION =    8.1.2
 DISTNAME =             pip-${MODPY_EGG_VERSION}
 PKGNAME =              py-${DISTNAME}
 CATEGORIES =           devel
-REVISION =             1
 
 HOMEPAGE =             https://pip.pypa.io/en/stable/
 
 # MIT
 PERMIT_PACKAGE_CDROM = Yes
 
-MODPY_PI =             Yes
-
 MODULES =              lang/python
-BUILD_DEPENDS =                textproc/py-sphinx${MODPY_FLAVOR}
+
+MODPY_PI =             Yes
 MODPY_SETUPTOOLS =     Yes
-NO_TEST =              Yes
 
 FLAVORS =              python3
 FLAVOR ?=
+
+BUILD_DEPENDS =                textproc/py-sphinx${MODPY_FLAVOR}
+NO_TEST =              Yes
 
 DOCSRC =       ${WRKSRC}/docs
 post-build:
Index: distinfo
===================================================================
RCS file: /cvs/ports/devel/py-pip/distinfo,v
retrieving revision 1.12
diff -u -p -r1.12 distinfo
--- distinfo    27 Mar 2016 11:10:15 -0000      1.12
+++ distinfo    14 May 2016 19:38:56 -0000
@@ -1,2 +1,2 @@
-SHA256 (pip-8.1.1.tar.gz) = PnjTBmqutjPRhaV6/cz3AKouZgQ2tK9hi8tv8PpRF5g=
-SIZE (pip-8.1.1.tar.gz) = 1139175
+SHA256 (pip-8.1.2.tar.gz) = ja4fty4pwrb/btJnhhF5IWv5jTvabTDlJ9vtDbWsfh0=
+SIZE (pip-8.1.2.tar.gz) = 6812908
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/devel/py-pip/pkg/PLIST,v
retrieving revision 1.9
diff -u -p -r1.9 PLIST
--- pkg/PLIST   15 Apr 2016 08:53:49 -0000      1.9
+++ pkg/PLIST   14 May 2016 19:38:56 -0000
@@ -36,12 +36,6 @@ lib/python${MODPY_VERSION}/site-packages
 
lib/python${MODPY_VERSION}/site-packages/pip/_vendor/${MODPY_PYCACHE}re-vendor.${MODPY_PYC_MAGIC_TAG}pyc
 
lib/python${MODPY_VERSION}/site-packages/pip/_vendor/${MODPY_PYCACHE}retrying.${MODPY_PYC_MAGIC_TAG}pyc
 
lib/python${MODPY_VERSION}/site-packages/pip/_vendor/${MODPY_PYCACHE}six.${MODPY_PYC_MAGIC_TAG}pyc
-lib/python${MODPY_VERSION}/site-packages/pip/_vendor/_markerlib/
-lib/python${MODPY_VERSION}/site-packages/pip/_vendor/_markerlib/__init__.py
-${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/pip/_vendor/_markerlib/${MODPY_PYCACHE}/
-lib/python${MODPY_VERSION}/site-packages/pip/_vendor/_markerlib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
-lib/python${MODPY_VERSION}/site-packages/pip/_vendor/_markerlib/${MODPY_PYCACHE}markers.${MODPY_PYC_MAGIC_TAG}pyc
-lib/python${MODPY_VERSION}/site-packages/pip/_vendor/_markerlib/markers.py
 lib/python${MODPY_VERSION}/site-packages/pip/_vendor/cachecontrol/
 lib/python${MODPY_VERSION}/site-packages/pip/_vendor/cachecontrol/__init__.py
 
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/pip/_vendor/cachecontrol/${MODPY_PYCACHE}/
@@ -402,9 +396,11 @@ lib/python${MODPY_VERSION}/site-packages
 
lib/python${MODPY_VERSION}/site-packages/pip/_vendor/requests/packages/urllib3/contrib/${MODPY_PYCACHE}appengine.${MODPY_PYC_MAGIC_TAG}pyc
 
lib/python${MODPY_VERSION}/site-packages/pip/_vendor/requests/packages/urllib3/contrib/${MODPY_PYCACHE}ntlmpool.${MODPY_PYC_MAGIC_TAG}pyc
 
lib/python${MODPY_VERSION}/site-packages/pip/_vendor/requests/packages/urllib3/contrib/${MODPY_PYCACHE}pyopenssl.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/pip/_vendor/requests/packages/urllib3/contrib/${MODPY_PYCACHE}socks.${MODPY_PYC_MAGIC_TAG}pyc
 
lib/python${MODPY_VERSION}/site-packages/pip/_vendor/requests/packages/urllib3/contrib/appengine.py
 
lib/python${MODPY_VERSION}/site-packages/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py
 
lib/python${MODPY_VERSION}/site-packages/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py
+lib/python${MODPY_VERSION}/site-packages/pip/_vendor/requests/packages/urllib3/contrib/socks.py
 
lib/python${MODPY_VERSION}/site-packages/pip/_vendor/requests/packages/urllib3/exceptions.py
 
lib/python${MODPY_VERSION}/site-packages/pip/_vendor/requests/packages/urllib3/fields.py
 
lib/python${MODPY_VERSION}/site-packages/pip/_vendor/requests/packages/urllib3/filepost.py

Reply via email to