summaryrefslogtreecommitdiff
path: root/devel/py-pip
diff options
context:
space:
mode:
authorrodent <rodent>2014-01-16 02:40:15 +0000
committerrodent <rodent>2014-01-16 02:40:15 +0000
commit2981e34d448be1975468fd4f16389296844be07e (patch)
tree3b6a195699d4c35d9885a8d2d84ed857a342e3dd /devel/py-pip
parent7fd71dff24f66b72103baab71eb793512e71728c (diff)
downloadpkgsrc-2981e34d448be1975468fd4f16389296844be07e.tar.gz
Updated to latest release, 1.5. Included lang/python/application.mk to
REPLACE_PYTHON in two installed files. Lots of PLIST additions/moves. From CHANGES.txt: Changelog ========= 1.5 (2014-01-01) ---------------- * **BACKWARD INCOMPATIBLE** pip no longer supports the ``--use-mirrors``, ``-M``, and ``--mirrors`` flags. The mirroring support has been removed. In order to use a mirror specify it as the primary index with ``-i`` or ``--index-url``, or as an additional index with ``--extra-index-url``. (Pull #1098, CVE-2013-5123) * **BACKWARD INCOMPATIBLE** pip no longer will scrape insecure external urls by default nor will it install externally hosted files by default. Users may opt into installing externally hosted or insecure files or urls using ``--allow-external PROJECT`` and ``--allow-unverified PROJECT``. (Pull #1055) * **BACKWARD INCOMPATIBLE** pip no longer respects dependency links by default. Users may opt into respecting them again using ``--process-dependency-links``. * **DEPRECATION** ``pip install --no-install`` and ``pip install --no-download`` are now formally deprecated. See Issue #906 for discussion on possible alternatives, or lack thereof, in future releases. * **DEPRECATION** ``pip zip`` and ``pip unzip`` are now formally deprecated. * pip will now install Mac OSX platform wheels from PyPI. (Pull #1278) * pip now generates the appropriate platform-specific console scripts when installing wheels. (Pull #1251) * Pip now confirms a wheel is supported when installing directly from a path or url. (Pull #1315) * Fixed #1097, ``--ignore-installed`` now behaves again as designed, after it was unintentionally broke in v0.8.3 when fixing Issue #14 (Pull #1352). * Fixed a bug where global scripts were being removed when uninstalling --user installed packages (Pull #1353). * Fixed #1163, --user wasn't being respected when installing scripts from wheels (Pull #1176). * Fixed #1150, we now assume '_' means '-' in versions from wheel filenames (Pull #1158). * Fixed #219, error when using --log with a failed install (Pull #1205). * Fixed #1131, logging was buffered and choppy in Python 3. * Fixed #70, --timeout was being ignored (Pull #1202). * Fixed #772, error when setting PIP_EXISTS_ACTION (Pull #1201). * Added colors to the logging output in order to draw attention to important warnings and errors. (Pull #1109) * Added warnings when using an insecure index, find-link, or dependency link. (Pull #1121) * Added support for installing packages from a subdirectory using the ``subdirectory`` editable option. ( Pull #1082 ) * Fixed #1192. "TypeError: bad operand type for unary" in some cases when installing wheels using --find-links (Pull #1218). * Fixed #1133 and #317. Archive contents are now written based on system defaults and umask (i.e. permissions are not preserved), except that regular files with any execute permissions have the equivalent of "chmod +x" applied after being written (Pull #1146). * PreviousBuildDirError now returns a non-zero exit code and prevents the previous build dir from being cleaned in all cases (Pull #1162). * Renamed --allow-insecure to --allow-unverified, however the old name will continue to work for a period of time. * Fixed #1006, error when installing local projects with symlinks in Python 3. * The previously hidden ``--log-file`` otion, is now shown as a general option. 1.4.1 (2013-08-07) ------------------ * **New Signing Key** Release 1.4.1 is using a different key than normal with fingerprint: 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA * Fixed issues with installing from pybundle files * Fixed error when sysconfig module throws an exception * Don't ignore already installed pre-releases * Fixes related to upgrading setuptools * Fixes so that --download works with wheel archives * Fixes related to recognizing and cleaning global build dirs
Diffstat (limited to 'devel/py-pip')
-rw-r--r--devel/py-pip/Makefile8
-rw-r--r--devel/py-pip/PLIST576
-rw-r--r--devel/py-pip/distinfo8
3 files changed, 418 insertions, 174 deletions
diff --git a/devel/py-pip/Makefile b/devel/py-pip/Makefile
index 2c0c76a0a92..5b721c95061 100644
--- a/devel/py-pip/Makefile
+++ b/devel/py-pip/Makefile
@@ -1,10 +1,11 @@
-# $NetBSD: Makefile,v 1.6 2013/07/25 15:11:59 wen Exp $
+# $NetBSD: Makefile,v 1.7 2014/01/16 02:40:15 rodent Exp $
#
-DISTNAME= pip-1.4
+DISTNAME= pip-1.5
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel
MASTER_SITES= http://pypi.python.org/packages/source/p/pip/
+FETCH_USING= curl
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.pip-installer.org/
@@ -13,5 +14,8 @@ LICENSE= mit
PLIST_SUBST+= PYVERSSUFFIX="${PYVERSSUFFIX}"
+REPLACE_PYTHON+= pip/__init__.py pip/_vendor/requests/certs.py
+
+.include "../../lang/python/application.mk"
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/devel/py-pip/PLIST b/devel/py-pip/PLIST
index b784a51f817..5e13054224a 100644
--- a/devel/py-pip/PLIST
+++ b/devel/py-pip/PLIST
@@ -1,6 +1,7 @@
-@comment $NetBSD: PLIST,v 1.5 2013/07/25 15:11:59 wen Exp $
+@comment $NetBSD: PLIST,v 1.6 2014/01/16 02:40:15 rodent Exp $
bin/pip
-bin/pip-${PYVERSSUFFIX}
+bin/pip2
+bin/pip${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -14,19 +15,420 @@ ${PYSITELIB}/pip/__init__.pyo
${PYSITELIB}/pip/__main__.py
${PYSITELIB}/pip/__main__.pyc
${PYSITELIB}/pip/__main__.pyo
+${PYSITELIB}/pip/_vendor/__init__.py
+${PYSITELIB}/pip/_vendor/__init__.pyc
+${PYSITELIB}/pip/_vendor/__init__.pyo
+${PYSITELIB}/pip/_vendor/colorama/__init__.py
+${PYSITELIB}/pip/_vendor/colorama/__init__.pyc
+${PYSITELIB}/pip/_vendor/colorama/__init__.pyo
+${PYSITELIB}/pip/_vendor/colorama/ansi.py
+${PYSITELIB}/pip/_vendor/colorama/ansi.pyc
+${PYSITELIB}/pip/_vendor/colorama/ansi.pyo
+${PYSITELIB}/pip/_vendor/colorama/ansitowin32.py
+${PYSITELIB}/pip/_vendor/colorama/ansitowin32.pyc
+${PYSITELIB}/pip/_vendor/colorama/ansitowin32.pyo
+${PYSITELIB}/pip/_vendor/colorama/initialise.py
+${PYSITELIB}/pip/_vendor/colorama/initialise.pyc
+${PYSITELIB}/pip/_vendor/colorama/initialise.pyo
+${PYSITELIB}/pip/_vendor/colorama/win32.py
+${PYSITELIB}/pip/_vendor/colorama/win32.pyc
+${PYSITELIB}/pip/_vendor/colorama/win32.pyo
+${PYSITELIB}/pip/_vendor/colorama/winterm.py
+${PYSITELIB}/pip/_vendor/colorama/winterm.pyc
+${PYSITELIB}/pip/_vendor/colorama/winterm.pyo
+${PYSITELIB}/pip/_vendor/distlib/__init__.py
+${PYSITELIB}/pip/_vendor/distlib/__init__.pyc
+${PYSITELIB}/pip/_vendor/distlib/__init__.pyo
+${PYSITELIB}/pip/_vendor/distlib/_backport/__init__.py
+${PYSITELIB}/pip/_vendor/distlib/_backport/__init__.pyc
+${PYSITELIB}/pip/_vendor/distlib/_backport/__init__.pyo
+${PYSITELIB}/pip/_vendor/distlib/_backport/misc.py
+${PYSITELIB}/pip/_vendor/distlib/_backport/misc.pyc
+${PYSITELIB}/pip/_vendor/distlib/_backport/misc.pyo
+${PYSITELIB}/pip/_vendor/distlib/_backport/shutil.py
+${PYSITELIB}/pip/_vendor/distlib/_backport/shutil.pyc
+${PYSITELIB}/pip/_vendor/distlib/_backport/shutil.pyo
+${PYSITELIB}/pip/_vendor/distlib/_backport/sysconfig.cfg
+${PYSITELIB}/pip/_vendor/distlib/_backport/sysconfig.py
+${PYSITELIB}/pip/_vendor/distlib/_backport/sysconfig.pyc
+${PYSITELIB}/pip/_vendor/distlib/_backport/sysconfig.pyo
+${PYSITELIB}/pip/_vendor/distlib/_backport/tarfile.py
+${PYSITELIB}/pip/_vendor/distlib/_backport/tarfile.pyc
+${PYSITELIB}/pip/_vendor/distlib/_backport/tarfile.pyo
+${PYSITELIB}/pip/_vendor/distlib/compat.py
+${PYSITELIB}/pip/_vendor/distlib/compat.pyc
+${PYSITELIB}/pip/_vendor/distlib/compat.pyo
+${PYSITELIB}/pip/_vendor/distlib/database.py
+${PYSITELIB}/pip/_vendor/distlib/database.pyc
+${PYSITELIB}/pip/_vendor/distlib/database.pyo
+${PYSITELIB}/pip/_vendor/distlib/index.py
+${PYSITELIB}/pip/_vendor/distlib/index.pyc
+${PYSITELIB}/pip/_vendor/distlib/index.pyo
+${PYSITELIB}/pip/_vendor/distlib/locators.py
+${PYSITELIB}/pip/_vendor/distlib/locators.pyc
+${PYSITELIB}/pip/_vendor/distlib/locators.pyo
+${PYSITELIB}/pip/_vendor/distlib/manifest.py
+${PYSITELIB}/pip/_vendor/distlib/manifest.pyc
+${PYSITELIB}/pip/_vendor/distlib/manifest.pyo
+${PYSITELIB}/pip/_vendor/distlib/markers.py
+${PYSITELIB}/pip/_vendor/distlib/markers.pyc
+${PYSITELIB}/pip/_vendor/distlib/markers.pyo
+${PYSITELIB}/pip/_vendor/distlib/metadata.py
+${PYSITELIB}/pip/_vendor/distlib/metadata.pyc
+${PYSITELIB}/pip/_vendor/distlib/metadata.pyo
+${PYSITELIB}/pip/_vendor/distlib/resources.py
+${PYSITELIB}/pip/_vendor/distlib/resources.pyc
+${PYSITELIB}/pip/_vendor/distlib/resources.pyo
+${PYSITELIB}/pip/_vendor/distlib/scripts.py
+${PYSITELIB}/pip/_vendor/distlib/scripts.pyc
+${PYSITELIB}/pip/_vendor/distlib/scripts.pyo
+${PYSITELIB}/pip/_vendor/distlib/t32.exe
+${PYSITELIB}/pip/_vendor/distlib/t64.exe
+${PYSITELIB}/pip/_vendor/distlib/util.py
+${PYSITELIB}/pip/_vendor/distlib/util.pyc
+${PYSITELIB}/pip/_vendor/distlib/util.pyo
+${PYSITELIB}/pip/_vendor/distlib/version.py
+${PYSITELIB}/pip/_vendor/distlib/version.pyc
+${PYSITELIB}/pip/_vendor/distlib/version.pyo
+${PYSITELIB}/pip/_vendor/distlib/w32.exe
+${PYSITELIB}/pip/_vendor/distlib/w64.exe
+${PYSITELIB}/pip/_vendor/distlib/wheel.py
+${PYSITELIB}/pip/_vendor/distlib/wheel.pyc
+${PYSITELIB}/pip/_vendor/distlib/wheel.pyo
+${PYSITELIB}/pip/_vendor/html5lib/__init__.py
+${PYSITELIB}/pip/_vendor/html5lib/__init__.pyc
+${PYSITELIB}/pip/_vendor/html5lib/__init__.pyo
+${PYSITELIB}/pip/_vendor/html5lib/constants.py
+${PYSITELIB}/pip/_vendor/html5lib/constants.pyc
+${PYSITELIB}/pip/_vendor/html5lib/constants.pyo
+${PYSITELIB}/pip/_vendor/html5lib/filters/__init__.py
+${PYSITELIB}/pip/_vendor/html5lib/filters/__init__.pyc
+${PYSITELIB}/pip/_vendor/html5lib/filters/__init__.pyo
+${PYSITELIB}/pip/_vendor/html5lib/filters/_base.py
+${PYSITELIB}/pip/_vendor/html5lib/filters/_base.pyc
+${PYSITELIB}/pip/_vendor/html5lib/filters/_base.pyo
+${PYSITELIB}/pip/_vendor/html5lib/filters/alphabeticalattributes.py
+${PYSITELIB}/pip/_vendor/html5lib/filters/alphabeticalattributes.pyc
+${PYSITELIB}/pip/_vendor/html5lib/filters/alphabeticalattributes.pyo
+${PYSITELIB}/pip/_vendor/html5lib/filters/inject_meta_charset.py
+${PYSITELIB}/pip/_vendor/html5lib/filters/inject_meta_charset.pyc
+${PYSITELIB}/pip/_vendor/html5lib/filters/inject_meta_charset.pyo
+${PYSITELIB}/pip/_vendor/html5lib/filters/lint.py
+${PYSITELIB}/pip/_vendor/html5lib/filters/lint.pyc
+${PYSITELIB}/pip/_vendor/html5lib/filters/lint.pyo
+${PYSITELIB}/pip/_vendor/html5lib/filters/optionaltags.py
+${PYSITELIB}/pip/_vendor/html5lib/filters/optionaltags.pyc
+${PYSITELIB}/pip/_vendor/html5lib/filters/optionaltags.pyo
+${PYSITELIB}/pip/_vendor/html5lib/filters/sanitizer.py
+${PYSITELIB}/pip/_vendor/html5lib/filters/sanitizer.pyc
+${PYSITELIB}/pip/_vendor/html5lib/filters/sanitizer.pyo
+${PYSITELIB}/pip/_vendor/html5lib/filters/whitespace.py
+${PYSITELIB}/pip/_vendor/html5lib/filters/whitespace.pyc
+${PYSITELIB}/pip/_vendor/html5lib/filters/whitespace.pyo
+${PYSITELIB}/pip/_vendor/html5lib/html5parser.py
+${PYSITELIB}/pip/_vendor/html5lib/html5parser.pyc
+${PYSITELIB}/pip/_vendor/html5lib/html5parser.pyo
+${PYSITELIB}/pip/_vendor/html5lib/ihatexml.py
+${PYSITELIB}/pip/_vendor/html5lib/ihatexml.pyc
+${PYSITELIB}/pip/_vendor/html5lib/ihatexml.pyo
+${PYSITELIB}/pip/_vendor/html5lib/inputstream.py
+${PYSITELIB}/pip/_vendor/html5lib/inputstream.pyc
+${PYSITELIB}/pip/_vendor/html5lib/inputstream.pyo
+${PYSITELIB}/pip/_vendor/html5lib/sanitizer.py
+${PYSITELIB}/pip/_vendor/html5lib/sanitizer.pyc
+${PYSITELIB}/pip/_vendor/html5lib/sanitizer.pyo
+${PYSITELIB}/pip/_vendor/html5lib/serializer/__init__.py
+${PYSITELIB}/pip/_vendor/html5lib/serializer/__init__.pyc
+${PYSITELIB}/pip/_vendor/html5lib/serializer/__init__.pyo
+${PYSITELIB}/pip/_vendor/html5lib/serializer/htmlserializer.py
+${PYSITELIB}/pip/_vendor/html5lib/serializer/htmlserializer.pyc
+${PYSITELIB}/pip/_vendor/html5lib/serializer/htmlserializer.pyo
+${PYSITELIB}/pip/_vendor/html5lib/tokenizer.py
+${PYSITELIB}/pip/_vendor/html5lib/tokenizer.pyc
+${PYSITELIB}/pip/_vendor/html5lib/tokenizer.pyo
+${PYSITELIB}/pip/_vendor/html5lib/treebuilders/__init__.py
+${PYSITELIB}/pip/_vendor/html5lib/treebuilders/__init__.pyc
+${PYSITELIB}/pip/_vendor/html5lib/treebuilders/__init__.pyo
+${PYSITELIB}/pip/_vendor/html5lib/treebuilders/_base.py
+${PYSITELIB}/pip/_vendor/html5lib/treebuilders/_base.pyc
+${PYSITELIB}/pip/_vendor/html5lib/treebuilders/_base.pyo
+${PYSITELIB}/pip/_vendor/html5lib/treebuilders/dom.py
+${PYSITELIB}/pip/_vendor/html5lib/treebuilders/dom.pyc
+${PYSITELIB}/pip/_vendor/html5lib/treebuilders/dom.pyo
+${PYSITELIB}/pip/_vendor/html5lib/treebuilders/etree.py
+${PYSITELIB}/pip/_vendor/html5lib/treebuilders/etree.pyc
+${PYSITELIB}/pip/_vendor/html5lib/treebuilders/etree.pyo
+${PYSITELIB}/pip/_vendor/html5lib/treebuilders/etree_lxml.py
+${PYSITELIB}/pip/_vendor/html5lib/treebuilders/etree_lxml.pyc
+${PYSITELIB}/pip/_vendor/html5lib/treebuilders/etree_lxml.pyo
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/__init__.py
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/__init__.pyc
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/__init__.pyo
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/_base.py
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/_base.pyc
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/_base.pyo
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/dom.py
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/dom.pyc
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/dom.pyo
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/etree.py
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/etree.pyc
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/etree.pyo
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/genshistream.py
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/genshistream.pyc
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/genshistream.pyo
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/lxmletree.py
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/lxmletree.pyc
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/lxmletree.pyo
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/pulldom.py
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/pulldom.pyc
+${PYSITELIB}/pip/_vendor/html5lib/treewalkers/pulldom.pyo
+${PYSITELIB}/pip/_vendor/html5lib/trie/__init__.py
+${PYSITELIB}/pip/_vendor/html5lib/trie/__init__.pyc
+${PYSITELIB}/pip/_vendor/html5lib/trie/__init__.pyo
+${PYSITELIB}/pip/_vendor/html5lib/trie/_base.py
+${PYSITELIB}/pip/_vendor/html5lib/trie/_base.pyc
+${PYSITELIB}/pip/_vendor/html5lib/trie/_base.pyo
+${PYSITELIB}/pip/_vendor/html5lib/trie/datrie.py
+${PYSITELIB}/pip/_vendor/html5lib/trie/datrie.pyc
+${PYSITELIB}/pip/_vendor/html5lib/trie/datrie.pyo
+${PYSITELIB}/pip/_vendor/html5lib/trie/py.py
+${PYSITELIB}/pip/_vendor/html5lib/trie/py.pyc
+${PYSITELIB}/pip/_vendor/html5lib/trie/py.pyo
+${PYSITELIB}/pip/_vendor/html5lib/utils.py
+${PYSITELIB}/pip/_vendor/html5lib/utils.pyc
+${PYSITELIB}/pip/_vendor/html5lib/utils.pyo
+${PYSITELIB}/pip/_vendor/re-vendor.py
+${PYSITELIB}/pip/_vendor/re-vendor.pyc
+${PYSITELIB}/pip/_vendor/re-vendor.pyo
+${PYSITELIB}/pip/_vendor/requests/__init__.py
+${PYSITELIB}/pip/_vendor/requests/__init__.pyc
+${PYSITELIB}/pip/_vendor/requests/__init__.pyo
+${PYSITELIB}/pip/_vendor/requests/adapters.py
+${PYSITELIB}/pip/_vendor/requests/adapters.pyc
+${PYSITELIB}/pip/_vendor/requests/adapters.pyo
+${PYSITELIB}/pip/_vendor/requests/api.py
+${PYSITELIB}/pip/_vendor/requests/api.pyc
+${PYSITELIB}/pip/_vendor/requests/api.pyo
+${PYSITELIB}/pip/_vendor/requests/auth.py
+${PYSITELIB}/pip/_vendor/requests/auth.pyc
+${PYSITELIB}/pip/_vendor/requests/auth.pyo
+${PYSITELIB}/pip/_vendor/requests/cacert.pem
+${PYSITELIB}/pip/_vendor/requests/certs.py
+${PYSITELIB}/pip/_vendor/requests/certs.pyc
+${PYSITELIB}/pip/_vendor/requests/certs.pyo
+${PYSITELIB}/pip/_vendor/requests/compat.py
+${PYSITELIB}/pip/_vendor/requests/compat.pyc
+${PYSITELIB}/pip/_vendor/requests/compat.pyo
+${PYSITELIB}/pip/_vendor/requests/cookies.py
+${PYSITELIB}/pip/_vendor/requests/cookies.pyc
+${PYSITELIB}/pip/_vendor/requests/cookies.pyo
+${PYSITELIB}/pip/_vendor/requests/exceptions.py
+${PYSITELIB}/pip/_vendor/requests/exceptions.pyc
+${PYSITELIB}/pip/_vendor/requests/exceptions.pyo
+${PYSITELIB}/pip/_vendor/requests/hooks.py
+${PYSITELIB}/pip/_vendor/requests/hooks.pyc
+${PYSITELIB}/pip/_vendor/requests/hooks.pyo
+${PYSITELIB}/pip/_vendor/requests/models.py
+${PYSITELIB}/pip/_vendor/requests/models.pyc
+${PYSITELIB}/pip/_vendor/requests/models.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/__init__.py
+${PYSITELIB}/pip/_vendor/requests/packages/__init__.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/__init__.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/__init__.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/__init__.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/__init__.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/__main__.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/__main__.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/__main__.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/big5freq.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/big5freq.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/big5freq.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/big5prober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/big5prober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/big5prober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/chardistribution.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/chardistribution.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/chardistribution.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/charsetgroupprober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/charsetgroupprober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/charsetgroupprober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/charsetprober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/charsetprober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/charsetprober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/codingstatemachine.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/codingstatemachine.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/codingstatemachine.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/compat.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/compat.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/compat.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/constants.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/constants.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/constants.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/cp949prober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/cp949prober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/cp949prober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/escprober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/escprober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/escprober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/escsm.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/escsm.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/escsm.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/eucjpprober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/eucjpprober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/eucjpprober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/euckrfreq.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/euckrfreq.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/euckrfreq.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/euckrprober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/euckrprober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/euckrprober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/euctwfreq.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/euctwfreq.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/euctwfreq.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/euctwprober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/euctwprober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/euctwprober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/gb2312freq.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/gb2312freq.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/gb2312freq.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/gb2312prober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/gb2312prober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/gb2312prober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/hebrewprober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/hebrewprober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/hebrewprober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/jisfreq.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/jisfreq.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/jisfreq.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/jpcntx.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/jpcntx.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/jpcntx.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langbulgarianmodel.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langbulgarianmodel.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langbulgarianmodel.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langcyrillicmodel.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langcyrillicmodel.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langcyrillicmodel.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langgreekmodel.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langgreekmodel.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langgreekmodel.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langhebrewmodel.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langhebrewmodel.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langhebrewmodel.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langhungarianmodel.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langhungarianmodel.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langhungarianmodel.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langthaimodel.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langthaimodel.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/langthaimodel.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/latin1prober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/latin1prober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/latin1prober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/mbcharsetprober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/mbcharsetprober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/mbcharsetprober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/mbcsgroupprober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/mbcsgroupprober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/mbcsgroupprober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/mbcssm.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/mbcssm.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/mbcssm.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/sbcharsetprober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/sbcharsetprober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/sbcharsetprober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/sbcsgroupprober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/sbcsgroupprober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/sbcsgroupprober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/sjisprober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/sjisprober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/sjisprober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/universaldetector.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/universaldetector.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/universaldetector.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/charade/utf8prober.py
+${PYSITELIB}/pip/_vendor/requests/packages/charade/utf8prober.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/charade/utf8prober.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/__init__.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/__init__.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/__init__.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/_collections.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/_collections.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/_collections.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/connection.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/connection.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/connection.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/connectionpool.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/connectionpool.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/connectionpool.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/contrib/__init__.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/contrib/__init__.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/contrib/__init__.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/exceptions.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/exceptions.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/exceptions.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/fields.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/fields.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/fields.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/filepost.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/filepost.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/filepost.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/packages/__init__.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/packages/__init__.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/packages/__init__.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/packages/six.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/packages/six.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/packages/six.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/poolmanager.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/poolmanager.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/poolmanager.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/request.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/request.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/request.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/response.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/response.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/response.pyo
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/util.py
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/util.pyc
+${PYSITELIB}/pip/_vendor/requests/packages/urllib3/util.pyo
+${PYSITELIB}/pip/_vendor/requests/sessions.py
+${PYSITELIB}/pip/_vendor/requests/sessions.pyc
+${PYSITELIB}/pip/_vendor/requests/sessions.pyo
+${PYSITELIB}/pip/_vendor/requests/status_codes.py
+${PYSITELIB}/pip/_vendor/requests/status_codes.pyc
+${PYSITELIB}/pip/_vendor/requests/status_codes.pyo
+${PYSITELIB}/pip/_vendor/requests/structures.py
+${PYSITELIB}/pip/_vendor/requests/structures.pyc
+${PYSITELIB}/pip/_vendor/requests/structures.pyo
+${PYSITELIB}/pip/_vendor/requests/utils.py
+${PYSITELIB}/pip/_vendor/requests/utils.pyc
+${PYSITELIB}/pip/_vendor/requests/utils.pyo
+${PYSITELIB}/pip/_vendor/six.py
+${PYSITELIB}/pip/_vendor/six.pyc
+${PYSITELIB}/pip/_vendor/six.pyo
${PYSITELIB}/pip/backwardcompat/__init__.py
${PYSITELIB}/pip/backwardcompat/__init__.pyc
${PYSITELIB}/pip/backwardcompat/__init__.pyo
-${PYSITELIB}/pip/backwardcompat/ssl_match_hostname.py
-${PYSITELIB}/pip/backwardcompat/ssl_match_hostname.pyc
-${PYSITELIB}/pip/backwardcompat/ssl_match_hostname.pyo
${PYSITELIB}/pip/basecommand.py
${PYSITELIB}/pip/basecommand.pyc
${PYSITELIB}/pip/basecommand.pyo
${PYSITELIB}/pip/baseparser.py
${PYSITELIB}/pip/baseparser.pyc
${PYSITELIB}/pip/baseparser.pyo
-${PYSITELIB}/pip/cacert.pem
${PYSITELIB}/pip/cmdoptions.py
${PYSITELIB}/pip/cmdoptions.pyc
${PYSITELIB}/pip/cmdoptions.pyo
@@ -114,168 +516,6 @@ ${PYSITELIB}/pip/vcs/mercurial.pyo
${PYSITELIB}/pip/vcs/subversion.py
${PYSITELIB}/pip/vcs/subversion.pyc
${PYSITELIB}/pip/vcs/subversion.pyo
-${PYSITELIB}/pip/vendor/__init__.py
-${PYSITELIB}/pip/vendor/__init__.pyc
-${PYSITELIB}/pip/vendor/__init__.pyo
-${PYSITELIB}/pip/vendor/distlib/__init__.py
-${PYSITELIB}/pip/vendor/distlib/__init__.pyc
-${PYSITELIB}/pip/vendor/distlib/__init__.pyo
-${PYSITELIB}/pip/vendor/distlib/_backport/__init__.py
-${PYSITELIB}/pip/vendor/distlib/_backport/__init__.pyc
-${PYSITELIB}/pip/vendor/distlib/_backport/__init__.pyo
-${PYSITELIB}/pip/vendor/distlib/_backport/misc.py
-${PYSITELIB}/pip/vendor/distlib/_backport/misc.pyc
-${PYSITELIB}/pip/vendor/distlib/_backport/misc.pyo
-${PYSITELIB}/pip/vendor/distlib/_backport/shutil.py
-${PYSITELIB}/pip/vendor/distlib/_backport/shutil.pyc
-${PYSITELIB}/pip/vendor/distlib/_backport/shutil.pyo
-${PYSITELIB}/pip/vendor/distlib/_backport/sysconfig.py
-${PYSITELIB}/pip/vendor/distlib/_backport/sysconfig.pyc
-${PYSITELIB}/pip/vendor/distlib/_backport/sysconfig.pyo
-${PYSITELIB}/pip/vendor/distlib/_backport/tarfile.py
-${PYSITELIB}/pip/vendor/distlib/_backport/tarfile.pyc
-${PYSITELIB}/pip/vendor/distlib/_backport/tarfile.pyo
-${PYSITELIB}/pip/vendor/distlib/compat.py
-${PYSITELIB}/pip/vendor/distlib/compat.pyc
-${PYSITELIB}/pip/vendor/distlib/compat.pyo
-${PYSITELIB}/pip/vendor/distlib/database.py
-${PYSITELIB}/pip/vendor/distlib/database.pyc
-${PYSITELIB}/pip/vendor/distlib/database.pyo
-${PYSITELIB}/pip/vendor/distlib/index.py
-${PYSITELIB}/pip/vendor/distlib/index.pyc
-${PYSITELIB}/pip/vendor/distlib/index.pyo
-${PYSITELIB}/pip/vendor/distlib/locators.py
-${PYSITELIB}/pip/vendor/distlib/locators.pyc
-${PYSITELIB}/pip/vendor/distlib/locators.pyo
-${PYSITELIB}/pip/vendor/distlib/manifest.py
-${PYSITELIB}/pip/vendor/distlib/manifest.pyc
-${PYSITELIB}/pip/vendor/distlib/manifest.pyo
-${PYSITELIB}/pip/vendor/distlib/markers.py
-${PYSITELIB}/pip/vendor/distlib/markers.pyc
-${PYSITELIB}/pip/vendor/distlib/markers.pyo
-${PYSITELIB}/pip/vendor/distlib/metadata.py
-${PYSITELIB}/pip/vendor/distlib/metadata.pyc
-${PYSITELIB}/pip/vendor/distlib/metadata.pyo
-${PYSITELIB}/pip/vendor/distlib/resources.py
-${PYSITELIB}/pip/vendor/distlib/resources.pyc
-${PYSITELIB}/pip/vendor/distlib/resources.pyo
-${PYSITELIB}/pip/vendor/distlib/scripts.py
-${PYSITELIB}/pip/vendor/distlib/scripts.pyc
-${PYSITELIB}/pip/vendor/distlib/scripts.pyo
-${PYSITELIB}/pip/vendor/distlib/util.py
-${PYSITELIB}/pip/vendor/distlib/util.pyc
-${PYSITELIB}/pip/vendor/distlib/util.pyo
-${PYSITELIB}/pip/vendor/distlib/version.py
-${PYSITELIB}/pip/vendor/distlib/version.pyc
-${PYSITELIB}/pip/vendor/distlib/version.pyo
-${PYSITELIB}/pip/vendor/distlib/wheel.py
-${PYSITELIB}/pip/vendor/distlib/wheel.pyc
-${PYSITELIB}/pip/vendor/distlib/wheel.pyo
-${PYSITELIB}/pip/vendor/html5lib/__init__.py
-${PYSITELIB}/pip/vendor/html5lib/__init__.pyc
-${PYSITELIB}/pip/vendor/html5lib/__init__.pyo
-${PYSITELIB}/pip/vendor/html5lib/constants.py
-${PYSITELIB}/pip/vendor/html5lib/constants.pyc
-${PYSITELIB}/pip/vendor/html5lib/constants.pyo
-${PYSITELIB}/pip/vendor/html5lib/filters/__init__.py
-${PYSITELIB}/pip/vendor/html5lib/filters/__init__.pyc
-${PYSITELIB}/pip/vendor/html5lib/filters/__init__.pyo
-${PYSITELIB}/pip/vendor/html5lib/filters/_base.py
-${PYSITELIB}/pip/vendor/html5lib/filters/_base.pyc
-${PYSITELIB}/pip/vendor/html5lib/filters/_base.pyo
-${PYSITELIB}/pip/vendor/html5lib/filters/alphabeticalattributes.py
-${PYSITELIB}/pip/vendor/html5lib/filters/alphabeticalattributes.pyc
-${PYSITELIB}/pip/vendor/html5lib/filters/alphabeticalattributes.pyo
-${PYSITELIB}/pip/vendor/html5lib/filters/inject_meta_charset.py
-${PYSITELIB}/pip/vendor/html5lib/filters/inject_meta_charset.pyc
-${PYSITELIB}/pip/vendor/html5lib/filters/inject_meta_charset.pyo
-${PYSITELIB}/pip/vendor/html5lib/filters/lint.py
-${PYSITELIB}/pip/vendor/html5lib/filters/lint.pyc
-${PYSITELIB}/pip/vendor/html5lib/filters/lint.pyo
-${PYSITELIB}/pip/vendor/html5lib/filters/optionaltags.py
-${PYSITELIB}/pip/vendor/html5lib/filters/optionaltags.pyc
-${PYSITELIB}/pip/vendor/html5lib/filters/optionaltags.pyo
-${PYSITELIB}/pip/vendor/html5lib/filters/sanitizer.py
-${PYSITELIB}/pip/vendor/html5lib/filters/sanitizer.pyc
-${PYSITELIB}/pip/vendor/html5lib/filters/sanitizer.pyo
-${PYSITELIB}/pip/vendor/html5lib/filters/whitespace.py
-${PYSITELIB}/pip/vendor/html5lib/filters/whitespace.pyc
-${PYSITELIB}/pip/vendor/html5lib/filters/whitespace.pyo
-${PYSITELIB}/pip/vendor/html5lib/html5parser.py
-${PYSITELIB}/pip/vendor/html5lib/html5parser.pyc
-${PYSITELIB}/pip/vendor/html5lib/html5parser.pyo
-${PYSITELIB}/pip/vendor/html5lib/ihatexml.py
-${PYSITELIB}/pip/vendor/html5lib/ihatexml.pyc
-${PYSITELIB}/pip/vendor/html5lib/ihatexml.pyo
-${PYSITELIB}/pip/vendor/html5lib/inputstream.py
-${PYSITELIB}/pip/vendor/html5lib/inputstream.pyc
-${PYSITELIB}/pip/vendor/html5lib/inputstream.pyo
-${PYSITELIB}/pip/vendor/html5lib/sanitizer.py
-${PYSITELIB}/pip/vendor/html5lib/sanitizer.pyc
-${PYSITELIB}/pip/vendor/html5lib/sanitizer.pyo
-${PYSITELIB}/pip/vendor/html5lib/serializer/__init__.py
-${PYSITELIB}/pip/vendor/html5lib/serializer/__init__.pyc
-${PYSITELIB}/pip/vendor/html5lib/serializer/__init__.pyo
-${PYSITELIB}/pip/vendor/html5lib/serializer/htmlserializer.py
-${PYSITELIB}/pip/vendor/html5lib/serializer/htmlserializer.pyc
-${PYSITELIB}/pip/vendor/html5lib/serializer/htmlserializer.pyo
-${PYSITELIB}/pip/vendor/html5lib/tokenizer.py
-${PYSITELIB}/pip/vendor/html5lib/tokenizer.pyc
-${PYSITELIB}/pip/vendor/html5lib/tokenizer.pyo
-${PYSITELIB}/pip/vendor/html5lib/treebuilders/__init__.py
-${PYSITELIB}/pip/vendor/html5lib/treebuilders/__init__.pyc
-${PYSITELIB}/pip/vendor/html5lib/treebuilders/__init__.pyo
-${PYSITELIB}/pip/vendor/html5lib/treebuilders/_base.py
-${PYSITELIB}/pip/vendor/html5lib/treebuilders/_base.pyc
-${PYSITELIB}/pip/vendor/html5lib/treebuilders/_base.pyo
-${PYSITELIB}/pip/vendor/html5lib/treebuilders/dom.py
-${PYSITELIB}/pip/vendor/html5lib/treebuilders/dom.pyc
-${PYSITELIB}/pip/vendor/html5lib/treebuilders/dom.pyo
-${PYSITELIB}/pip/vendor/html5lib/treebuilders/etree.py
-${PYSITELIB}/pip/vendor/html5lib/treebuilders/etree.pyc
-${PYSITELIB}/pip/vendor/html5lib/treebuilders/etree.pyo
-${PYSITELIB}/pip/vendor/html5lib/treebuilders/etree_lxml.py
-${PYSITELIB}/pip/vendor/html5lib/treebuilders/etree_lxml.pyc
-${PYSITELIB}/pip/vendor/html5lib/treebuilders/etree_lxml.pyo
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/__init__.py
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/__init__.pyc
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/__init__.pyo
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/_base.py
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/_base.pyc
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/_base.pyo
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/dom.py
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/dom.pyc
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/dom.pyo
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/etree.py
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/etree.pyc
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/etree.pyo
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/genshistream.py
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/genshistream.pyc
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/genshistream.pyo
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/lxmletree.py
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/lxmletree.pyc
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/lxmletree.pyo
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/pulldom.py
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/pulldom.pyc
-${PYSITELIB}/pip/vendor/html5lib/treewalkers/pulldom.pyo
-${PYSITELIB}/pip/vendor/html5lib/trie/__init__.py
-${PYSITELIB}/pip/vendor/html5lib/trie/__init__.pyc
-${PYSITELIB}/pip/vendor/html5lib/trie/__init__.pyo
-${PYSITELIB}/pip/vendor/html5lib/trie/_base.py
-${PYSITELIB}/pip/vendor/html5lib/trie/_base.pyc
-${PYSITELIB}/pip/vendor/html5lib/trie/_base.pyo
-${PYSITELIB}/pip/vendor/html5lib/trie/datrie.py
-${PYSITELIB}/pip/vendor/html5lib/trie/datrie.pyc
-${PYSITELIB}/pip/vendor/html5lib/trie/datrie.pyo
-${PYSITELIB}/pip/vendor/html5lib/trie/py.py
-${PYSITELIB}/pip/vendor/html5lib/trie/py.pyc
-${PYSITELIB}/pip/vendor/html5lib/trie/py.pyo
-${PYSITELIB}/pip/vendor/html5lib/utils.py
-${PYSITELIB}/pip/vendor/html5lib/utils.pyc
-${PYSITELIB}/pip/vendor/html5lib/utils.pyo
-${PYSITELIB}/pip/vendor/six.py
-${PYSITELIB}/pip/vendor/six.pyc
-${PYSITELIB}/pip/vendor/six.pyo
${PYSITELIB}/pip/wheel.py
${PYSITELIB}/pip/wheel.pyc
${PYSITELIB}/pip/wheel.pyo
diff --git a/devel/py-pip/distinfo b/devel/py-pip/distinfo
index 2727a1ed256..071b2ea36e5 100644
--- a/devel/py-pip/distinfo
+++ b/devel/py-pip/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.5 2013/07/25 15:11:59 wen Exp $
+$NetBSD: distinfo,v 1.6 2014/01/16 02:40:15 rodent Exp $
-SHA1 (pip-1.4.tar.gz) = 3149dc77c66b77d02497205fca5df56ae9d3e753
-RMD160 (pip-1.4.tar.gz) = 09f74d192e6ba58fc35aff0bbe0983c67e831f16
-Size (pip-1.4.tar.gz) = 443790 bytes
+SHA1 (pip-1.5.tar.gz) = 02d3506e97c88a306d0802a00186c1ecd6c8fc08
+RMD160 (pip-1.5.tar.gz) = 86601d0f22920108f7077422ad23bfc062727510
+Size (pip-1.5.tar.gz) = 898803 bytes