[Python-modules-commits] [python-pip] branch master updated (9f2efc4 -> 94dae9c)

Barry Warsaw barry at moszumanska.debian.org
Fri Jan 29 22:23:20 UTC 2016


This is an automated email from the git hooks/post-receive script.

barry pushed a change to branch master
in repository python-pip.

      from  9f2efc4   Use the upstream recommended way to devendorize and add DEP-8 tests.
       new  b45c9ef   record new upstream branch created by importing python-pip_8.0.2.orig.tar.gz
       new  c9fd1b7   Import python-pip_8.0.2.orig.tar.gz
       new  8daa7d7   We need to add all the recursively devendorized dependent wheels to sys.path so that they can be imported.  These wheel files live in different places depending on whether we're inside or outside a virtual environment.
       new  6bbe982   Prevent pip from removing system installed packages Adjust is_local to consider OS-owned paths nonlocal.  Fix error message for is_local in the non-virtualenv case . See Debian #771794 for the motivation. From: Geoffrey Thomas <geofft at ldpreload.com> . While not committed upstream, the patch author has submitted it and it is being reviewed.  Upstream did provide positive feedback for inclusion in Debian. Author: Geoffrey Thomas <geofft at ldpreload.com> Bug-Debian: http: [...]
       new  6e14ca5   Tell pip to alias the bundled packages.
       new  775f88c   merge patched into master
       new  3826944   Prevent pip from removing system packages.
       new  de57da1   Tell pip to alias the bundled packages.
       new  ac1d933   merge patched into master
       new  bf86069   Devendorize wheels and use system built wheels.
       new  a7c72c5   merge patched into master
       new  0f0ffd7   Prepare the 8.0.2-1 release.
       new  2ea1060   Debian already unbundles six from requests.
       new  495ddc3   merge patched into master
       new  95be525   Debian already unbundles things from requests.
       new  94dae9c   merge patched into master

The 16 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 AUTHORS.txt                                        |   45 +-
 CHANGES.txt                                        |  157 +-
 LICENSE.txt                                        |    2 +-
 MANIFEST.in                                        |    2 +
 PKG-INFO                                           |   19 +-
 README.rst                                         |   15 +-
 debian/.git-dpm                                    |   14 +-
 debian/changelog                                   |   46 +-
 debian/compat                                      |    2 +-
 debian/control                                     |   69 +-
 debian/makepip.py                                  |   29 +
 debian/patches/debundle.patch                      |   30 +
 debian/patches/enable-debundling.patch             |   23 -
 debian/patches/handle-unbundled-requests.patch     |   29 +
 debian/patches/hands-off-system-packages.patch     |   32 +-
 debian/patches/series                              |    4 +-
 debian/patches/use-wheels.patch                    |  109 -
 debian/python-pip-whl.install                      |    2 -
 debian/rules                                       |   33 +-
 debian/tests/control                               |    1 -
 docs/conf.py                                       |    2 +-
 docs/development.rst                               |    8 +-
 docs/index.rst                                     |    7 +-
 docs/installing.rst                                |   92 +-
 docs/reference/index.rst                           |    4 +-
 docs/reference/pip_download.rst                    |   53 +
 docs/reference/pip_hash.rst                        |   49 +
 docs/reference/pip_install.rst                     |  322 +-
 docs/user_guide.rst                                |  108 +-
 pip.egg-info/PKG-INFO                              |   19 +-
 pip.egg-info/SOURCES.txt                           |   11 +-
 pip.egg-info/entry_points.txt                      |    2 +-
 pip.egg-info/pbr.json                              |    1 -
 pip/__init__.py                                    |   73 +-
 pip/_vendor/README.rst                             |  139 +-
 pip/_vendor/__init__.py                            |   40 +-
 pip/_vendor/cachecontrol/__init__.py               |    2 +-
 pip/_vendor/cachecontrol/_cmd.py                   |   60 +
 pip/_vendor/cachecontrol/compat.py                 |    6 +
 pip/_vendor/cachecontrol/controller.py             |   92 +-
 pip/_vendor/cachecontrol/heuristics.py             |   12 +-
 pip/_vendor/cachecontrol/serialize.py              |   12 +-
 pip/_vendor/colorama/__init__.py                   |    4 +-
 pip/_vendor/colorama/ansi.py                       |   49 +-
 pip/_vendor/colorama/ansitowin32.py                |   18 +-
 pip/_vendor/colorama/initialise.py                 |   23 +-
 pip/_vendor/colorama/win32.py                      |    8 +
 pip/_vendor/colorama/winterm.py                    |   21 +-
 pip/_vendor/html5lib/__init__.py                   |    4 +-
 pip/_vendor/html5lib/sanitizer.py                  |   10 +-
 pip/_vendor/html5lib/treewalkers/etree.py          |    2 +-
 pip/_vendor/ipaddress.py                           |    8 +-
 pip/_vendor/lockfile/__init__.py                   |  113 +-
 pip/_vendor/lockfile/linklockfile.py               |    6 +-
 pip/_vendor/lockfile/mkdirlockfile.py              |   11 +-
 pip/_vendor/lockfile/pidlockfile.py                |   21 +-
 pip/_vendor/lockfile/sqlitelockfile.py             |    9 +-
 pip/_vendor/lockfile/symlinklockfile.py            |   21 +-
 pip/_vendor/packaging/__about__.py                 |   24 +-
 pip/_vendor/packaging/__init__.py                  |   16 +-
 pip/_vendor/packaging/_compat.py                   |   16 +-
 pip/_vendor/packaging/_structures.py               |   16 +-
 pip/_vendor/packaging/markers.py                   |  275 ++
 pip/_vendor/packaging/specifiers.py                |   34 +-
 pip/_vendor/packaging/version.py                   |   16 +-
 pip/_vendor/pkg_resources/__init__.py              |  170 +-
 pip/_vendor/progress/bar.py                        |   19 +-
 pip/_vendor/progress/counter.py                    |    6 +-
 pip/_vendor/progress/helpers.py                    |    1 -
 pip/_vendor/progress/spinner.py                    |    8 +-
 pip/_vendor/pyparsing.py                           | 3801 ++++++++++++++++++++
 pip/_vendor/requests/__init__.py                   |   14 +-
 pip/_vendor/requests/adapters.py                   |   52 +-
 pip/_vendor/requests/api.py                        |   18 +-
 pip/_vendor/requests/auth.py                       |   69 +-
 pip/_vendor/requests/cacert.pem                    | 2192 ++++++-----
 pip/_vendor/requests/cookies.py                    |   24 +-
 pip/_vendor/requests/exceptions.py                 |   15 +
 pip/_vendor/requests/hooks.py                      |   17 +-
 pip/_vendor/requests/models.py                     |   84 +-
 pip/_vendor/requests/packages/__init__.py          |   35 +-
 pip/_vendor/requests/packages/urllib3/__init__.py  |   34 +-
 .../requests/packages/urllib3/_collections.py      |   65 +-
 .../requests/packages/urllib3/connection.py        |   66 +-
 .../requests/packages/urllib3/connectionpool.py    |   93 +-
 .../requests/packages/urllib3/contrib/appengine.py |  223 ++
 .../requests/packages/urllib3/contrib/ntlmpool.py  |    1 +
 .../requests/packages/urllib3/contrib/pyopenssl.py |   45 +-
 .../requests/packages/urllib3/exceptions.py        |   38 +-
 pip/_vendor/requests/packages/urllib3/fields.py    |    1 +
 pip/_vendor/requests/packages/urllib3/filepost.py  |    1 +
 .../requests/packages/urllib3/packages/__init__.py |    1 +
 .../requests/packages/urllib3/poolmanager.py       |    9 +-
 pip/_vendor/requests/packages/urllib3/request.py   |   16 +-
 pip/_vendor/requests/packages/urllib3/response.py  |  206 +-
 .../requests/packages/urllib3/util/__init__.py     |   20 +
 .../requests/packages/urllib3/util/connection.py   |   11 +-
 .../requests/packages/urllib3/util/request.py      |    1 +
 .../requests/packages/urllib3/util/response.py     |   52 +
 .../requests/packages/urllib3/util/retry.py        |    9 +-
 pip/_vendor/requests/packages/urllib3/util/ssl_.py |   91 +-
 .../requests/packages/urllib3/util/timeout.py      |    8 +-
 pip/_vendor/requests/packages/urllib3/util/url.py  |    5 +-
 pip/_vendor/requests/sessions.py                   |   49 +-
 pip/_vendor/requests/status_codes.py               |    3 +-
 pip/_vendor/requests/utils.py                      |   98 +-
 pip/_vendor/six.py                                 |   74 +-
 pip/_vendor/vendor.txt                             |   17 +-
 pip/basecommand.py                                 |   42 +-
 pip/cmdoptions.py                                  |   91 +-
 pip/commands/__init__.py                           |    6 +
 pip/commands/download.py                           |  136 +
 pip/commands/hash.py                               |   57 +
 pip/commands/install.py                            |   92 +-
 pip/commands/list.py                               |  133 +-
 pip/commands/search.py                             |    2 +-
 pip/commands/show.py                               |   37 +-
 pip/commands/wheel.py                              |   65 +-
 pip/compat/__init__.py                             |   44 +-
 pip/download.py                                    |  161 +-
 pip/exceptions.py                                  |  193 +-
 pip/index.py                                       |  476 +--
 pip/locations.py                                   |   53 +-
 pip/operations/freeze.py                           |    4 +-
 pip/pep425tags.py                                  |  116 +-
 pip/req/req_file.py                                |  134 +-
 pip/req/req_install.py                             |  238 +-
 pip/req/req_set.py                                 |  165 +-
 pip/req/req_uninstall.py                           |   24 +-
 pip/utils/__init__.py                              |  187 +-
 pip/utils/appdirs.py                               |   48 +-
 pip/utils/deprecation.py                           |   14 +-
 pip/utils/hashes.py                                |   92 +
 pip/utils/logging.py                               |    2 +-
 pip/utils/outdated.py                              |    7 +-
 pip/utils/setuptools_build.py                      |    6 +
 pip/utils/ui.py                                    |  142 +-
 pip/vcs/__init__.py                                |   61 +-
 pip/vcs/bazaar.py                                  |   26 +-
 pip/vcs/git.py                                     |  127 +-
 pip/vcs/mercurial.py                               |   48 +-
 pip/vcs/subversion.py                              |   68 +-
 pip/wheel.py                                       |  109 +-
 setup.cfg                                          |    4 +-
 setup.py                                           |   10 +-
 145 files changed, 10163 insertions(+), 3321 deletions(-)
 create mode 100644 debian/makepip.py
 create mode 100644 debian/patches/debundle.patch
 delete mode 100644 debian/patches/enable-debundling.patch
 create mode 100644 debian/patches/handle-unbundled-requests.patch
 delete mode 100644 debian/patches/use-wheels.patch
 delete mode 100644 debian/python-pip-whl.install
 create mode 100644 docs/reference/pip_download.rst
 create mode 100644 docs/reference/pip_hash.rst
 delete mode 100644 pip.egg-info/pbr.json
 create mode 100644 pip/_vendor/cachecontrol/_cmd.py
 create mode 100644 pip/_vendor/packaging/markers.py
 create mode 100644 pip/_vendor/pyparsing.py
 create mode 100644 pip/_vendor/requests/packages/urllib3/contrib/appengine.py
 create mode 100644 pip/commands/download.py
 create mode 100644 pip/commands/hash.py
 create mode 100644 pip/utils/hashes.py
 create mode 100644 pip/utils/setuptools_build.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-pip.git



More information about the Python-modules-commits mailing list