pkgsrc/devel/py-pip/PLIST

996 lines
47 KiB
Text
Raw Normal View History

py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
@comment $NetBSD: PLIST,v 1.24 2019/10/15 17:16:54 adam Exp $
2016-08-27 16:52:53 +02:00
bin/pip${PYVERSSUFFIX}
Update py-pip to 1.1. Based on PR 46531 by Wen Heping. * convert to use python/egg.mk. 1.1 (2012-02-16) ---------------- * Fixed issue #326 - don't crash when a package's setup.py emits UTF-8 and then fails. Thanks Marc Abramowitz. * Added ``--target`` option for installing directly to arbitrary directory. Thanks Stavros Korokithakis. * Added support for authentication with Subversion repositories. Thanks Qiangning Hong. * Fixed issue #315 - ``--download`` now downloads dependencies as well. Thanks Qiangning Hong. * Errors from subprocesses will display the current working directory. Thanks Antti Kaihola. * Fixed issue #369 - compatibility with Subversion 1.7. Thanks Qiangning Hong. Note that setuptools remains incompatible with Subversion 1.7; to get the benefits of pip's support you must use Distribute rather than setuptools. * Fixed issue #57 - ignore py2app-generated OS X mpkg zip files in finder. Thanks Rene Dudfield. * Fixed issue #182 - log to ~/Library/Logs/ by default on OS X framework installs. Thanks Dan Callahan for report and patch. * Fixed issue #310 - understand version tags without minor version ("py3") in sdist filenames. Thanks Stuart Andrews for report and Olivier Girardot for patch. * Fixed issue #7 - Pip now supports optionally installing setuptools "extras" dependencies; e.g. "pip install Paste[openid]". Thanks Matt Maker and Olivier Girardot. * Fixed issue #391 - freeze no longer borks on requirements files with --index-url or --find-links. Thanks Herbert Pfennig. * Fixed issue #288 - handle symlinks properly. Thanks lebedov for the patch. * Fixed issue #49 - pip install -U no longer reinstalls the same versions of packages. Thanks iguananaut for the pull request. * Removed ``-E`` option and ``PIP_RESPECT_VIRTUALENV``; both use a restart-in-venv mechanism that's broken, and neither one is useful since every virtualenv now has pip inside it. * Fixed issue #366 - pip throws IndexError when it calls `scraped_rel_links` * Fixed issue #22 - pip search should set and return a userful shell status code * Fixed issue #351 and #365 - added global ``--exists-action`` command line option to easier script file exists conflicts, e.g. from editable requirements from VCS that have a changed repo URL.
2012-06-03 15:18:58 +02:00
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/pip/__init__.py
${PYSITELIB}/pip/__init__.pyc
${PYSITELIB}/pip/__init__.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/__main__.py
Update to 1.2.1 from 1.1 Upstream changes: 1.2.1 (2012-09-06) Fixed a regression introduced in 1.2 about raising an exception when not finding any files to uninstall in the current environment. Thanks for the fix, Marcus Smith. 1.2 (2012-09-01) Dropped support for Python 2.4 The minimum supported Python version is now Python 2.5. Fixed issue #605 - pypi mirror support broken on some DNS responses. Thanks philwhin. Fixed issue #355 - pip uninstall removes files it didn't install. Thanks pjdelport. Fixed issues #493, #494, #440, and #573 related to improving support for the user installation scheme. Thanks Marcus Smith. Write failure log to temp file if default location is not writable. Thanks andreigc. Pull in submodules for git editable checkouts. Fixes #289 and #421. Thanks Hsiaoming Yang and Markus Hametner. Use a temporary directory as the default build location outside of a virtualenv. Fixes issues #339 and #381. Thanks TC01. Added support for specifying extras with local editables. Thanks Nick Stenning. Added --egg flag to request egg-style rather than flat installation. Refs issue #3. Thanks Kamal Bin Mustafa. Fixed issue #510 - prevent e.g. gmpy2-2.0.tar.gz from matching a request to pip install gmpy; sdist filename must begin with full project name followed by a dash. Thanks casevh for the report. Fixed issue #504 - allow package URLS to have querystrings. Thanks W. Trevor King. Fixed issue #58 - pip freeze now falls back to non-editable format rather than blowing up if it can't determine the origin repository of an editable. Thanks Rory McCann. Added a __main__.py file to enable python -m pip on Python versions that support it. Thanks Alexey Luchko. Fixed issue #487 - upgrade from VCS url of project that does exist on index. Thanks Andrew Knapp for the report. Fixed issue #486 - fix upgrade from VCS url of project with no distribution on index. Thanks Andrew Knapp for the report. Fixed issue #427 - clearer error message on a malformed VCS url. Thanks Thomas Fenzl. Added support for using any of the built in guaranteed algorithms in hashlib as a checksum hash. Fixed issue #321 - Raise an exception if current working directory can't be found or accessed. Fixed issue #82 - Removed special casing of the user directory and use the Python default instead. Fixed #436 - Only warn about version conflicts if there is actually one. This re-enables using ==dev in requirements files. Moved tests to be run on Travis CI: http://travis-ci.org/pypa/pip Added a better help formatter.
2012-09-10 16:01:28 +02:00
${PYSITELIB}/pip/__main__.pyc
${PYSITELIB}/pip/__main__.pyo
${PYSITELIB}/pip/_internal/__init__.py
${PYSITELIB}/pip/_internal/__init__.pyc
${PYSITELIB}/pip/_internal/__init__.pyo
${PYSITELIB}/pip/_internal/build_env.py
${PYSITELIB}/pip/_internal/build_env.pyc
${PYSITELIB}/pip/_internal/build_env.pyo
${PYSITELIB}/pip/_internal/cache.py
${PYSITELIB}/pip/_internal/cache.pyc
${PYSITELIB}/pip/_internal/cache.pyo
${PYSITELIB}/pip/_internal/cli/__init__.py
${PYSITELIB}/pip/_internal/cli/__init__.pyc
${PYSITELIB}/pip/_internal/cli/__init__.pyo
${PYSITELIB}/pip/_internal/cli/autocompletion.py
${PYSITELIB}/pip/_internal/cli/autocompletion.pyc
${PYSITELIB}/pip/_internal/cli/autocompletion.pyo
${PYSITELIB}/pip/_internal/cli/base_command.py
${PYSITELIB}/pip/_internal/cli/base_command.pyc
${PYSITELIB}/pip/_internal/cli/base_command.pyo
${PYSITELIB}/pip/_internal/cli/cmdoptions.py
${PYSITELIB}/pip/_internal/cli/cmdoptions.pyc
${PYSITELIB}/pip/_internal/cli/cmdoptions.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_internal/cli/command_context.py
${PYSITELIB}/pip/_internal/cli/command_context.pyc
${PYSITELIB}/pip/_internal/cli/command_context.pyo
${PYSITELIB}/pip/_internal/cli/main_parser.py
${PYSITELIB}/pip/_internal/cli/main_parser.pyc
${PYSITELIB}/pip/_internal/cli/main_parser.pyo
${PYSITELIB}/pip/_internal/cli/parser.py
${PYSITELIB}/pip/_internal/cli/parser.pyc
${PYSITELIB}/pip/_internal/cli/parser.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_internal/cli/req_command.py
${PYSITELIB}/pip/_internal/cli/req_command.pyc
${PYSITELIB}/pip/_internal/cli/req_command.pyo
${PYSITELIB}/pip/_internal/cli/status_codes.py
${PYSITELIB}/pip/_internal/cli/status_codes.pyc
${PYSITELIB}/pip/_internal/cli/status_codes.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_internal/collector.py
${PYSITELIB}/pip/_internal/collector.pyc
${PYSITELIB}/pip/_internal/collector.pyo
${PYSITELIB}/pip/_internal/commands/__init__.py
${PYSITELIB}/pip/_internal/commands/__init__.pyc
${PYSITELIB}/pip/_internal/commands/__init__.pyo
${PYSITELIB}/pip/_internal/commands/check.py
${PYSITELIB}/pip/_internal/commands/check.pyc
${PYSITELIB}/pip/_internal/commands/check.pyo
${PYSITELIB}/pip/_internal/commands/completion.py
${PYSITELIB}/pip/_internal/commands/completion.pyc
${PYSITELIB}/pip/_internal/commands/completion.pyo
${PYSITELIB}/pip/_internal/commands/configuration.py
${PYSITELIB}/pip/_internal/commands/configuration.pyc
${PYSITELIB}/pip/_internal/commands/configuration.pyo
py-pip: updated to 19.2.1 19.2.1: Bug Fixes - Fix a NoneType AttributeError when evaluating hashes and no hashes are provided. 19.2: Deprecations and Removals - Drop support for EOL Python 3.4. - Improve deprecation messages to include the version in which the functionality will be removed. Features - Credentials will now be loaded using keyring when installed. - Fully support using --trusted-host inside requirements files. - Update timestamps in pip's --log file to include milliseconds. - Respect whether a file has been marked as "yanked" from a simple repository (see PEP 592 <https://www.python.org/dev/peps/pep-0592/>__ for details). - When choosing candidates to install, prefer candidates with a hash matching one of the user-provided hashes. - Improve the error message when METADATA or PKG-INFO is None when accessing metadata. - Add a new command pip debug that can display e.g. the list of compatible tags for the current Python. - Display hint on installing with --pre when search results include pre-release versions. - Report to Warehouse that pip is running under CI if the PIP_IS_CI environment variable is set. - Allow --python-version to be passed as a dotted version string (e.g. 3.7 or 3.7.3). - Log the final filename and SHA256 of a .whl file when done building a wheel. - Include the wheel's tags in the log message explanation when a candidate wheel link is found incompatible. - Add a --path argument to pip freeze to support --target installations. - Add a --path argument to pip list to support --target installations. Bug Fixes - Set sys.argv[0] to the underlying setup.py when invoking setup.py via the setuptools shim so setuptools doesn't think the path is -c. - Update pip download to respect the given --python-version when checking "Requires-Python". - Respect --global-option and --install-option when installing from a version control url (e.g. git). - Make the "ascii" progress bar really be "ascii" and not Unicode. - Fail elegantly when trying to set an incorrectly formatted key in config. - Prevent DistutilsOptionError when prefix is indicated in the global environment and --target is used. - Fix pip install to respect --ignore-requires-python when evaluating links. - Fix a debug log message when freezing an editable, non-version controlled requirement. - Extend to Subversion 1.8+ the behavior of calling Subversion in interactive mode when pip is run interactively. - Prevent pip install <url> from permitting directory traversal if e.g. a malicious server sends a Content-Disposition header with a filename containing ../ or ..\\. - Hide passwords in output when using --find-links. - Include more details in the log message if pip freeze can't generate a requirement string for a particular distribution. - Add the line number and file location to the error message when reading an invalid requirements file in certain situations. - Prefer os.confstr to ctypes when extracting glibc version info. - Improve error message printed when an invalid editable requirement is provided. - Improve error message formatting when a command errors out in a subprocess. Vendored Libraries - Upgrade certifi to 2019.6.16 - Upgrade distlib to 0.2.9.post0 - Upgrade msgpack to 0.6.1 - Upgrade requests to 2.22.0 - Upgrade urllib3 to 1.25.3 - Patch vendored html5lib, to prefer using collections.abc where possible. Improved Documentation - Document how Python 2.7 support will be maintained. - Upgrade Sphinx version used to build documentation. - Fix generation of subcommand manpages. - Mention that pip can install from git refs. - Replace a failing example of pip installs with extras with a working one.
2019-08-03 13:23:09 +02:00
${PYSITELIB}/pip/_internal/commands/debug.py
${PYSITELIB}/pip/_internal/commands/debug.pyc
${PYSITELIB}/pip/_internal/commands/debug.pyo
${PYSITELIB}/pip/_internal/commands/download.py
${PYSITELIB}/pip/_internal/commands/download.pyc
${PYSITELIB}/pip/_internal/commands/download.pyo
${PYSITELIB}/pip/_internal/commands/freeze.py
${PYSITELIB}/pip/_internal/commands/freeze.pyc
${PYSITELIB}/pip/_internal/commands/freeze.pyo
${PYSITELIB}/pip/_internal/commands/hash.py
${PYSITELIB}/pip/_internal/commands/hash.pyc
${PYSITELIB}/pip/_internal/commands/hash.pyo
${PYSITELIB}/pip/_internal/commands/help.py
${PYSITELIB}/pip/_internal/commands/help.pyc
${PYSITELIB}/pip/_internal/commands/help.pyo
${PYSITELIB}/pip/_internal/commands/install.py
${PYSITELIB}/pip/_internal/commands/install.pyc
${PYSITELIB}/pip/_internal/commands/install.pyo
${PYSITELIB}/pip/_internal/commands/list.py
${PYSITELIB}/pip/_internal/commands/list.pyc
${PYSITELIB}/pip/_internal/commands/list.pyo
${PYSITELIB}/pip/_internal/commands/search.py
${PYSITELIB}/pip/_internal/commands/search.pyc
${PYSITELIB}/pip/_internal/commands/search.pyo
${PYSITELIB}/pip/_internal/commands/show.py
${PYSITELIB}/pip/_internal/commands/show.pyc
${PYSITELIB}/pip/_internal/commands/show.pyo
${PYSITELIB}/pip/_internal/commands/uninstall.py
${PYSITELIB}/pip/_internal/commands/uninstall.pyc
${PYSITELIB}/pip/_internal/commands/uninstall.pyo
${PYSITELIB}/pip/_internal/commands/wheel.py
${PYSITELIB}/pip/_internal/commands/wheel.pyc
${PYSITELIB}/pip/_internal/commands/wheel.pyo
${PYSITELIB}/pip/_internal/configuration.py
${PYSITELIB}/pip/_internal/configuration.pyc
${PYSITELIB}/pip/_internal/configuration.pyo
py-pip: updated to 19.2.1 19.2.1: Bug Fixes - Fix a NoneType AttributeError when evaluating hashes and no hashes are provided. 19.2: Deprecations and Removals - Drop support for EOL Python 3.4. - Improve deprecation messages to include the version in which the functionality will be removed. Features - Credentials will now be loaded using keyring when installed. - Fully support using --trusted-host inside requirements files. - Update timestamps in pip's --log file to include milliseconds. - Respect whether a file has been marked as "yanked" from a simple repository (see PEP 592 <https://www.python.org/dev/peps/pep-0592/>__ for details). - When choosing candidates to install, prefer candidates with a hash matching one of the user-provided hashes. - Improve the error message when METADATA or PKG-INFO is None when accessing metadata. - Add a new command pip debug that can display e.g. the list of compatible tags for the current Python. - Display hint on installing with --pre when search results include pre-release versions. - Report to Warehouse that pip is running under CI if the PIP_IS_CI environment variable is set. - Allow --python-version to be passed as a dotted version string (e.g. 3.7 or 3.7.3). - Log the final filename and SHA256 of a .whl file when done building a wheel. - Include the wheel's tags in the log message explanation when a candidate wheel link is found incompatible. - Add a --path argument to pip freeze to support --target installations. - Add a --path argument to pip list to support --target installations. Bug Fixes - Set sys.argv[0] to the underlying setup.py when invoking setup.py via the setuptools shim so setuptools doesn't think the path is -c. - Update pip download to respect the given --python-version when checking "Requires-Python". - Respect --global-option and --install-option when installing from a version control url (e.g. git). - Make the "ascii" progress bar really be "ascii" and not Unicode. - Fail elegantly when trying to set an incorrectly formatted key in config. - Prevent DistutilsOptionError when prefix is indicated in the global environment and --target is used. - Fix pip install to respect --ignore-requires-python when evaluating links. - Fix a debug log message when freezing an editable, non-version controlled requirement. - Extend to Subversion 1.8+ the behavior of calling Subversion in interactive mode when pip is run interactively. - Prevent pip install <url> from permitting directory traversal if e.g. a malicious server sends a Content-Disposition header with a filename containing ../ or ..\\. - Hide passwords in output when using --find-links. - Include more details in the log message if pip freeze can't generate a requirement string for a particular distribution. - Add the line number and file location to the error message when reading an invalid requirements file in certain situations. - Prefer os.confstr to ctypes when extracting glibc version info. - Improve error message printed when an invalid editable requirement is provided. - Improve error message formatting when a command errors out in a subprocess. Vendored Libraries - Upgrade certifi to 2019.6.16 - Upgrade distlib to 0.2.9.post0 - Upgrade msgpack to 0.6.1 - Upgrade requests to 2.22.0 - Upgrade urllib3 to 1.25.3 - Patch vendored html5lib, to prefer using collections.abc where possible. Improved Documentation - Document how Python 2.7 support will be maintained. - Upgrade Sphinx version used to build documentation. - Fix generation of subcommand manpages. - Mention that pip can install from git refs. - Replace a failing example of pip installs with extras with a working one.
2019-08-03 13:23:09 +02:00
${PYSITELIB}/pip/_internal/distributions/__init__.py
${PYSITELIB}/pip/_internal/distributions/__init__.pyc
${PYSITELIB}/pip/_internal/distributions/__init__.pyo
${PYSITELIB}/pip/_internal/distributions/base.py
${PYSITELIB}/pip/_internal/distributions/base.pyc
${PYSITELIB}/pip/_internal/distributions/base.pyo
${PYSITELIB}/pip/_internal/distributions/installed.py
${PYSITELIB}/pip/_internal/distributions/installed.pyc
${PYSITELIB}/pip/_internal/distributions/installed.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_internal/distributions/source/__init__.py
${PYSITELIB}/pip/_internal/distributions/source/__init__.pyc
${PYSITELIB}/pip/_internal/distributions/source/__init__.pyo
${PYSITELIB}/pip/_internal/distributions/source/legacy.py
${PYSITELIB}/pip/_internal/distributions/source/legacy.pyc
${PYSITELIB}/pip/_internal/distributions/source/legacy.pyo
py-pip: updated to 19.2.1 19.2.1: Bug Fixes - Fix a NoneType AttributeError when evaluating hashes and no hashes are provided. 19.2: Deprecations and Removals - Drop support for EOL Python 3.4. - Improve deprecation messages to include the version in which the functionality will be removed. Features - Credentials will now be loaded using keyring when installed. - Fully support using --trusted-host inside requirements files. - Update timestamps in pip's --log file to include milliseconds. - Respect whether a file has been marked as "yanked" from a simple repository (see PEP 592 <https://www.python.org/dev/peps/pep-0592/>__ for details). - When choosing candidates to install, prefer candidates with a hash matching one of the user-provided hashes. - Improve the error message when METADATA or PKG-INFO is None when accessing metadata. - Add a new command pip debug that can display e.g. the list of compatible tags for the current Python. - Display hint on installing with --pre when search results include pre-release versions. - Report to Warehouse that pip is running under CI if the PIP_IS_CI environment variable is set. - Allow --python-version to be passed as a dotted version string (e.g. 3.7 or 3.7.3). - Log the final filename and SHA256 of a .whl file when done building a wheel. - Include the wheel's tags in the log message explanation when a candidate wheel link is found incompatible. - Add a --path argument to pip freeze to support --target installations. - Add a --path argument to pip list to support --target installations. Bug Fixes - Set sys.argv[0] to the underlying setup.py when invoking setup.py via the setuptools shim so setuptools doesn't think the path is -c. - Update pip download to respect the given --python-version when checking "Requires-Python". - Respect --global-option and --install-option when installing from a version control url (e.g. git). - Make the "ascii" progress bar really be "ascii" and not Unicode. - Fail elegantly when trying to set an incorrectly formatted key in config. - Prevent DistutilsOptionError when prefix is indicated in the global environment and --target is used. - Fix pip install to respect --ignore-requires-python when evaluating links. - Fix a debug log message when freezing an editable, non-version controlled requirement. - Extend to Subversion 1.8+ the behavior of calling Subversion in interactive mode when pip is run interactively. - Prevent pip install <url> from permitting directory traversal if e.g. a malicious server sends a Content-Disposition header with a filename containing ../ or ..\\. - Hide passwords in output when using --find-links. - Include more details in the log message if pip freeze can't generate a requirement string for a particular distribution. - Add the line number and file location to the error message when reading an invalid requirements file in certain situations. - Prefer os.confstr to ctypes when extracting glibc version info. - Improve error message printed when an invalid editable requirement is provided. - Improve error message formatting when a command errors out in a subprocess. Vendored Libraries - Upgrade certifi to 2019.6.16 - Upgrade distlib to 0.2.9.post0 - Upgrade msgpack to 0.6.1 - Upgrade requests to 2.22.0 - Upgrade urllib3 to 1.25.3 - Patch vendored html5lib, to prefer using collections.abc where possible. Improved Documentation - Document how Python 2.7 support will be maintained. - Upgrade Sphinx version used to build documentation. - Fix generation of subcommand manpages. - Mention that pip can install from git refs. - Replace a failing example of pip installs with extras with a working one.
2019-08-03 13:23:09 +02:00
${PYSITELIB}/pip/_internal/distributions/wheel.py
${PYSITELIB}/pip/_internal/distributions/wheel.pyc
${PYSITELIB}/pip/_internal/distributions/wheel.pyo
${PYSITELIB}/pip/_internal/download.py
${PYSITELIB}/pip/_internal/download.pyc
${PYSITELIB}/pip/_internal/download.pyo
${PYSITELIB}/pip/_internal/exceptions.py
${PYSITELIB}/pip/_internal/exceptions.pyc
${PYSITELIB}/pip/_internal/exceptions.pyo
${PYSITELIB}/pip/_internal/index.py
${PYSITELIB}/pip/_internal/index.pyc
${PYSITELIB}/pip/_internal/index.pyo
py-pip: updated to 19.2.1 19.2.1: Bug Fixes - Fix a NoneType AttributeError when evaluating hashes and no hashes are provided. 19.2: Deprecations and Removals - Drop support for EOL Python 3.4. - Improve deprecation messages to include the version in which the functionality will be removed. Features - Credentials will now be loaded using keyring when installed. - Fully support using --trusted-host inside requirements files. - Update timestamps in pip's --log file to include milliseconds. - Respect whether a file has been marked as "yanked" from a simple repository (see PEP 592 <https://www.python.org/dev/peps/pep-0592/>__ for details). - When choosing candidates to install, prefer candidates with a hash matching one of the user-provided hashes. - Improve the error message when METADATA or PKG-INFO is None when accessing metadata. - Add a new command pip debug that can display e.g. the list of compatible tags for the current Python. - Display hint on installing with --pre when search results include pre-release versions. - Report to Warehouse that pip is running under CI if the PIP_IS_CI environment variable is set. - Allow --python-version to be passed as a dotted version string (e.g. 3.7 or 3.7.3). - Log the final filename and SHA256 of a .whl file when done building a wheel. - Include the wheel's tags in the log message explanation when a candidate wheel link is found incompatible. - Add a --path argument to pip freeze to support --target installations. - Add a --path argument to pip list to support --target installations. Bug Fixes - Set sys.argv[0] to the underlying setup.py when invoking setup.py via the setuptools shim so setuptools doesn't think the path is -c. - Update pip download to respect the given --python-version when checking "Requires-Python". - Respect --global-option and --install-option when installing from a version control url (e.g. git). - Make the "ascii" progress bar really be "ascii" and not Unicode. - Fail elegantly when trying to set an incorrectly formatted key in config. - Prevent DistutilsOptionError when prefix is indicated in the global environment and --target is used. - Fix pip install to respect --ignore-requires-python when evaluating links. - Fix a debug log message when freezing an editable, non-version controlled requirement. - Extend to Subversion 1.8+ the behavior of calling Subversion in interactive mode when pip is run interactively. - Prevent pip install <url> from permitting directory traversal if e.g. a malicious server sends a Content-Disposition header with a filename containing ../ or ..\\. - Hide passwords in output when using --find-links. - Include more details in the log message if pip freeze can't generate a requirement string for a particular distribution. - Add the line number and file location to the error message when reading an invalid requirements file in certain situations. - Prefer os.confstr to ctypes when extracting glibc version info. - Improve error message printed when an invalid editable requirement is provided. - Improve error message formatting when a command errors out in a subprocess. Vendored Libraries - Upgrade certifi to 2019.6.16 - Upgrade distlib to 0.2.9.post0 - Upgrade msgpack to 0.6.1 - Upgrade requests to 2.22.0 - Upgrade urllib3 to 1.25.3 - Patch vendored html5lib, to prefer using collections.abc where possible. Improved Documentation - Document how Python 2.7 support will be maintained. - Upgrade Sphinx version used to build documentation. - Fix generation of subcommand manpages. - Mention that pip can install from git refs. - Replace a failing example of pip installs with extras with a working one.
2019-08-03 13:23:09 +02:00
${PYSITELIB}/pip/_internal/legacy_resolve.py
${PYSITELIB}/pip/_internal/legacy_resolve.pyc
${PYSITELIB}/pip/_internal/legacy_resolve.pyo
${PYSITELIB}/pip/_internal/locations.py
${PYSITELIB}/pip/_internal/locations.pyc
${PYSITELIB}/pip/_internal/locations.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_internal/main.py
${PYSITELIB}/pip/_internal/main.pyc
${PYSITELIB}/pip/_internal/main.pyo
${PYSITELIB}/pip/_internal/models/__init__.py
${PYSITELIB}/pip/_internal/models/__init__.pyc
${PYSITELIB}/pip/_internal/models/__init__.pyo
${PYSITELIB}/pip/_internal/models/candidate.py
${PYSITELIB}/pip/_internal/models/candidate.pyc
${PYSITELIB}/pip/_internal/models/candidate.pyo
${PYSITELIB}/pip/_internal/models/format_control.py
${PYSITELIB}/pip/_internal/models/format_control.pyc
${PYSITELIB}/pip/_internal/models/format_control.pyo
${PYSITELIB}/pip/_internal/models/index.py
${PYSITELIB}/pip/_internal/models/index.pyc
${PYSITELIB}/pip/_internal/models/index.pyo
${PYSITELIB}/pip/_internal/models/link.py
${PYSITELIB}/pip/_internal/models/link.pyc
${PYSITELIB}/pip/_internal/models/link.pyo
py-pip: updated to 19.2.1 19.2.1: Bug Fixes - Fix a NoneType AttributeError when evaluating hashes and no hashes are provided. 19.2: Deprecations and Removals - Drop support for EOL Python 3.4. - Improve deprecation messages to include the version in which the functionality will be removed. Features - Credentials will now be loaded using keyring when installed. - Fully support using --trusted-host inside requirements files. - Update timestamps in pip's --log file to include milliseconds. - Respect whether a file has been marked as "yanked" from a simple repository (see PEP 592 <https://www.python.org/dev/peps/pep-0592/>__ for details). - When choosing candidates to install, prefer candidates with a hash matching one of the user-provided hashes. - Improve the error message when METADATA or PKG-INFO is None when accessing metadata. - Add a new command pip debug that can display e.g. the list of compatible tags for the current Python. - Display hint on installing with --pre when search results include pre-release versions. - Report to Warehouse that pip is running under CI if the PIP_IS_CI environment variable is set. - Allow --python-version to be passed as a dotted version string (e.g. 3.7 or 3.7.3). - Log the final filename and SHA256 of a .whl file when done building a wheel. - Include the wheel's tags in the log message explanation when a candidate wheel link is found incompatible. - Add a --path argument to pip freeze to support --target installations. - Add a --path argument to pip list to support --target installations. Bug Fixes - Set sys.argv[0] to the underlying setup.py when invoking setup.py via the setuptools shim so setuptools doesn't think the path is -c. - Update pip download to respect the given --python-version when checking "Requires-Python". - Respect --global-option and --install-option when installing from a version control url (e.g. git). - Make the "ascii" progress bar really be "ascii" and not Unicode. - Fail elegantly when trying to set an incorrectly formatted key in config. - Prevent DistutilsOptionError when prefix is indicated in the global environment and --target is used. - Fix pip install to respect --ignore-requires-python when evaluating links. - Fix a debug log message when freezing an editable, non-version controlled requirement. - Extend to Subversion 1.8+ the behavior of calling Subversion in interactive mode when pip is run interactively. - Prevent pip install <url> from permitting directory traversal if e.g. a malicious server sends a Content-Disposition header with a filename containing ../ or ..\\. - Hide passwords in output when using --find-links. - Include more details in the log message if pip freeze can't generate a requirement string for a particular distribution. - Add the line number and file location to the error message when reading an invalid requirements file in certain situations. - Prefer os.confstr to ctypes when extracting glibc version info. - Improve error message printed when an invalid editable requirement is provided. - Improve error message formatting when a command errors out in a subprocess. Vendored Libraries - Upgrade certifi to 2019.6.16 - Upgrade distlib to 0.2.9.post0 - Upgrade msgpack to 0.6.1 - Upgrade requests to 2.22.0 - Upgrade urllib3 to 1.25.3 - Patch vendored html5lib, to prefer using collections.abc where possible. Improved Documentation - Document how Python 2.7 support will be maintained. - Upgrade Sphinx version used to build documentation. - Fix generation of subcommand manpages. - Mention that pip can install from git refs. - Replace a failing example of pip installs with extras with a working one.
2019-08-03 13:23:09 +02:00
${PYSITELIB}/pip/_internal/models/search_scope.py
${PYSITELIB}/pip/_internal/models/search_scope.pyc
${PYSITELIB}/pip/_internal/models/search_scope.pyo
${PYSITELIB}/pip/_internal/models/selection_prefs.py
${PYSITELIB}/pip/_internal/models/selection_prefs.pyc
${PYSITELIB}/pip/_internal/models/selection_prefs.pyo
${PYSITELIB}/pip/_internal/models/target_python.py
${PYSITELIB}/pip/_internal/models/target_python.pyc
${PYSITELIB}/pip/_internal/models/target_python.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_internal/network/__init__.py
${PYSITELIB}/pip/_internal/network/__init__.pyc
${PYSITELIB}/pip/_internal/network/__init__.pyo
${PYSITELIB}/pip/_internal/network/auth.py
${PYSITELIB}/pip/_internal/network/auth.pyc
${PYSITELIB}/pip/_internal/network/auth.pyo
${PYSITELIB}/pip/_internal/network/cache.py
${PYSITELIB}/pip/_internal/network/cache.pyc
${PYSITELIB}/pip/_internal/network/cache.pyo
${PYSITELIB}/pip/_internal/network/session.py
${PYSITELIB}/pip/_internal/network/session.pyc
${PYSITELIB}/pip/_internal/network/session.pyo
${PYSITELIB}/pip/_internal/network/xmlrpc.py
${PYSITELIB}/pip/_internal/network/xmlrpc.pyc
${PYSITELIB}/pip/_internal/network/xmlrpc.pyo
${PYSITELIB}/pip/_internal/operations/__init__.py
${PYSITELIB}/pip/_internal/operations/__init__.pyc
${PYSITELIB}/pip/_internal/operations/__init__.pyo
${PYSITELIB}/pip/_internal/operations/check.py
${PYSITELIB}/pip/_internal/operations/check.pyc
${PYSITELIB}/pip/_internal/operations/check.pyo
${PYSITELIB}/pip/_internal/operations/freeze.py
${PYSITELIB}/pip/_internal/operations/freeze.pyc
${PYSITELIB}/pip/_internal/operations/freeze.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_internal/operations/generate_metadata.py
${PYSITELIB}/pip/_internal/operations/generate_metadata.pyc
${PYSITELIB}/pip/_internal/operations/generate_metadata.pyo
${PYSITELIB}/pip/_internal/operations/prepare.py
${PYSITELIB}/pip/_internal/operations/prepare.pyc
${PYSITELIB}/pip/_internal/operations/prepare.pyo
${PYSITELIB}/pip/_internal/pep425tags.py
${PYSITELIB}/pip/_internal/pep425tags.pyc
${PYSITELIB}/pip/_internal/pep425tags.pyo
${PYSITELIB}/pip/_internal/pyproject.py
${PYSITELIB}/pip/_internal/pyproject.pyc
${PYSITELIB}/pip/_internal/pyproject.pyo
${PYSITELIB}/pip/_internal/req/__init__.py
${PYSITELIB}/pip/_internal/req/__init__.pyc
${PYSITELIB}/pip/_internal/req/__init__.pyo
${PYSITELIB}/pip/_internal/req/constructors.py
${PYSITELIB}/pip/_internal/req/constructors.pyc
${PYSITELIB}/pip/_internal/req/constructors.pyo
${PYSITELIB}/pip/_internal/req/req_file.py
${PYSITELIB}/pip/_internal/req/req_file.pyc
${PYSITELIB}/pip/_internal/req/req_file.pyo
${PYSITELIB}/pip/_internal/req/req_install.py
${PYSITELIB}/pip/_internal/req/req_install.pyc
${PYSITELIB}/pip/_internal/req/req_install.pyo
${PYSITELIB}/pip/_internal/req/req_set.py
${PYSITELIB}/pip/_internal/req/req_set.pyc
${PYSITELIB}/pip/_internal/req/req_set.pyo
py-pip: updated to 18.0 18.0: Process - Switch to a Calendar based versioning scheme. - Formally document our deprecation process as a minimum of 6 months of deprecation warnings. - Adopt and document NEWS fragment writing style. - Switch to releasing a new, non bug fix version of pip every 3 months. Deprecations and Removals - Remove the legacy format from pip list. - Dropped support for Python 3.3. - Remove support for cleaning up #egg fragment postfixes. - Remove the shim for the old get-pip.py location. For the past 2 years, it's only been redirecting users to use the newer https://bootstrap.pypa.io/get-pip.py location. Features - Introduce a new --prefer-binary flag, to prefer older wheels over newer source packages. - Improve autocompletion function on file name completion after options which have ``<file>``, ``<dir>`` or ``<path>`` as metavar. - Add support for installing PEP 518 build dependencies from source. - Improve status message when upgrade is skipped due to only-if-needed strategy. Bug Fixes - Update pip's self-check logic to not use a virtualenv specific file and honor cache-dir. - Remove compiled pyo files for wheel packages. - Speed up printing of newly installed package versions. - Restrict install time dependency warnings to directly-dependant packages. Warning about the entire package set has resulted in users getting confused as to why pip is printing these warnings. - Improve handling of PEP 518 build requirements: support environment markers and extras. - Remove username/password from log message when using index with basic auth. - Remove trailing os.sep from PATH directories to avoid false negatives. - Fix "pip wheel pip" being blocked by the "don't use pip to modify itself" check. - Disable pip's version check (and upgrade message) when installed by a different package manager. This works better with Linux distributions where pip's upgrade message may result in users running pip in a manner that modifies files that should be managed by the OS's package manager. - Check for file existence and unlink first when clobbering existing files during a wheel install. - Improve error message to be more specific when no files are found as listed in as listed in PKG-INFO. - Always read ``pyproject.toml`` as UTF-8. This fixes Unicode handling on Windows and Python 2. - Fix a crash that occurs when PATH not set, while generating script location warning. - Disallow packages with ``pyproject.toml`` files that have an empty build-system table. Vendored Libraries - Update CacheControl to 0.12.5. - Update certifi to 2018.4.16. - Update distro to 1.3.0. - Update idna to 2.7. - Update ipaddress to 1.0.22. - Update pkg_resources to 39.2.0 (via setuptools). - Update progress to 1.4. - Update pytoml to 0.1.16. - Update requests to 2.19.1. - Update urllib3 to 1.23. Improved Documentation - Document how to use pip with a proxy server. - Document that the output of pip show is in RFC-compliant mail header format.
2018-08-07 11:56:53 +02:00
${PYSITELIB}/pip/_internal/req/req_tracker.py
${PYSITELIB}/pip/_internal/req/req_tracker.pyc
${PYSITELIB}/pip/_internal/req/req_tracker.pyo
${PYSITELIB}/pip/_internal/req/req_uninstall.py
${PYSITELIB}/pip/_internal/req/req_uninstall.pyc
${PYSITELIB}/pip/_internal/req/req_uninstall.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_internal/self_outdated_check.py
${PYSITELIB}/pip/_internal/self_outdated_check.pyc
${PYSITELIB}/pip/_internal/self_outdated_check.pyo
${PYSITELIB}/pip/_internal/utils/__init__.py
${PYSITELIB}/pip/_internal/utils/__init__.pyc
${PYSITELIB}/pip/_internal/utils/__init__.pyo
${PYSITELIB}/pip/_internal/utils/appdirs.py
${PYSITELIB}/pip/_internal/utils/appdirs.pyc
${PYSITELIB}/pip/_internal/utils/appdirs.pyo
${PYSITELIB}/pip/_internal/utils/compat.py
${PYSITELIB}/pip/_internal/utils/compat.pyc
${PYSITELIB}/pip/_internal/utils/compat.pyo
${PYSITELIB}/pip/_internal/utils/deprecation.py
${PYSITELIB}/pip/_internal/utils/deprecation.pyc
${PYSITELIB}/pip/_internal/utils/deprecation.pyo
${PYSITELIB}/pip/_internal/utils/encoding.py
${PYSITELIB}/pip/_internal/utils/encoding.pyc
${PYSITELIB}/pip/_internal/utils/encoding.pyo
${PYSITELIB}/pip/_internal/utils/filesystem.py
${PYSITELIB}/pip/_internal/utils/filesystem.pyc
${PYSITELIB}/pip/_internal/utils/filesystem.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_internal/utils/filetypes.py
${PYSITELIB}/pip/_internal/utils/filetypes.pyc
${PYSITELIB}/pip/_internal/utils/filetypes.pyo
${PYSITELIB}/pip/_internal/utils/glibc.py
${PYSITELIB}/pip/_internal/utils/glibc.pyc
${PYSITELIB}/pip/_internal/utils/glibc.pyo
${PYSITELIB}/pip/_internal/utils/hashes.py
${PYSITELIB}/pip/_internal/utils/hashes.pyc
${PYSITELIB}/pip/_internal/utils/hashes.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_internal/utils/inject_securetransport.py
${PYSITELIB}/pip/_internal/utils/inject_securetransport.pyc
${PYSITELIB}/pip/_internal/utils/inject_securetransport.pyo
${PYSITELIB}/pip/_internal/utils/logging.py
${PYSITELIB}/pip/_internal/utils/logging.pyc
${PYSITELIB}/pip/_internal/utils/logging.pyo
py-pip: updated to 19.2.1 19.2.1: Bug Fixes - Fix a NoneType AttributeError when evaluating hashes and no hashes are provided. 19.2: Deprecations and Removals - Drop support for EOL Python 3.4. - Improve deprecation messages to include the version in which the functionality will be removed. Features - Credentials will now be loaded using keyring when installed. - Fully support using --trusted-host inside requirements files. - Update timestamps in pip's --log file to include milliseconds. - Respect whether a file has been marked as "yanked" from a simple repository (see PEP 592 <https://www.python.org/dev/peps/pep-0592/>__ for details). - When choosing candidates to install, prefer candidates with a hash matching one of the user-provided hashes. - Improve the error message when METADATA or PKG-INFO is None when accessing metadata. - Add a new command pip debug that can display e.g. the list of compatible tags for the current Python. - Display hint on installing with --pre when search results include pre-release versions. - Report to Warehouse that pip is running under CI if the PIP_IS_CI environment variable is set. - Allow --python-version to be passed as a dotted version string (e.g. 3.7 or 3.7.3). - Log the final filename and SHA256 of a .whl file when done building a wheel. - Include the wheel's tags in the log message explanation when a candidate wheel link is found incompatible. - Add a --path argument to pip freeze to support --target installations. - Add a --path argument to pip list to support --target installations. Bug Fixes - Set sys.argv[0] to the underlying setup.py when invoking setup.py via the setuptools shim so setuptools doesn't think the path is -c. - Update pip download to respect the given --python-version when checking "Requires-Python". - Respect --global-option and --install-option when installing from a version control url (e.g. git). - Make the "ascii" progress bar really be "ascii" and not Unicode. - Fail elegantly when trying to set an incorrectly formatted key in config. - Prevent DistutilsOptionError when prefix is indicated in the global environment and --target is used. - Fix pip install to respect --ignore-requires-python when evaluating links. - Fix a debug log message when freezing an editable, non-version controlled requirement. - Extend to Subversion 1.8+ the behavior of calling Subversion in interactive mode when pip is run interactively. - Prevent pip install <url> from permitting directory traversal if e.g. a malicious server sends a Content-Disposition header with a filename containing ../ or ..\\. - Hide passwords in output when using --find-links. - Include more details in the log message if pip freeze can't generate a requirement string for a particular distribution. - Add the line number and file location to the error message when reading an invalid requirements file in certain situations. - Prefer os.confstr to ctypes when extracting glibc version info. - Improve error message printed when an invalid editable requirement is provided. - Improve error message formatting when a command errors out in a subprocess. Vendored Libraries - Upgrade certifi to 2019.6.16 - Upgrade distlib to 0.2.9.post0 - Upgrade msgpack to 0.6.1 - Upgrade requests to 2.22.0 - Upgrade urllib3 to 1.25.3 - Patch vendored html5lib, to prefer using collections.abc where possible. Improved Documentation - Document how Python 2.7 support will be maintained. - Upgrade Sphinx version used to build documentation. - Fix generation of subcommand manpages. - Mention that pip can install from git refs. - Replace a failing example of pip installs with extras with a working one.
2019-08-03 13:23:09 +02:00
${PYSITELIB}/pip/_internal/utils/marker_files.py
${PYSITELIB}/pip/_internal/utils/marker_files.pyc
${PYSITELIB}/pip/_internal/utils/marker_files.pyo
${PYSITELIB}/pip/_internal/utils/misc.py
${PYSITELIB}/pip/_internal/utils/misc.pyc
${PYSITELIB}/pip/_internal/utils/misc.pyo
${PYSITELIB}/pip/_internal/utils/models.py
${PYSITELIB}/pip/_internal/utils/models.pyc
${PYSITELIB}/pip/_internal/utils/models.pyo
${PYSITELIB}/pip/_internal/utils/packaging.py
${PYSITELIB}/pip/_internal/utils/packaging.pyc
${PYSITELIB}/pip/_internal/utils/packaging.pyo
${PYSITELIB}/pip/_internal/utils/setuptools_build.py
${PYSITELIB}/pip/_internal/utils/setuptools_build.pyc
${PYSITELIB}/pip/_internal/utils/setuptools_build.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_internal/utils/subprocess.py
${PYSITELIB}/pip/_internal/utils/subprocess.pyc
${PYSITELIB}/pip/_internal/utils/subprocess.pyo
${PYSITELIB}/pip/_internal/utils/temp_dir.py
${PYSITELIB}/pip/_internal/utils/temp_dir.pyc
${PYSITELIB}/pip/_internal/utils/temp_dir.pyo
${PYSITELIB}/pip/_internal/utils/typing.py
${PYSITELIB}/pip/_internal/utils/typing.pyc
${PYSITELIB}/pip/_internal/utils/typing.pyo
${PYSITELIB}/pip/_internal/utils/ui.py
${PYSITELIB}/pip/_internal/utils/ui.pyc
${PYSITELIB}/pip/_internal/utils/ui.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_internal/utils/unpacking.py
${PYSITELIB}/pip/_internal/utils/unpacking.pyc
${PYSITELIB}/pip/_internal/utils/unpacking.pyo
${PYSITELIB}/pip/_internal/utils/urls.py
${PYSITELIB}/pip/_internal/utils/urls.pyc
${PYSITELIB}/pip/_internal/utils/urls.pyo
py-pip: updated to 19.2.1 19.2.1: Bug Fixes - Fix a NoneType AttributeError when evaluating hashes and no hashes are provided. 19.2: Deprecations and Removals - Drop support for EOL Python 3.4. - Improve deprecation messages to include the version in which the functionality will be removed. Features - Credentials will now be loaded using keyring when installed. - Fully support using --trusted-host inside requirements files. - Update timestamps in pip's --log file to include milliseconds. - Respect whether a file has been marked as "yanked" from a simple repository (see PEP 592 <https://www.python.org/dev/peps/pep-0592/>__ for details). - When choosing candidates to install, prefer candidates with a hash matching one of the user-provided hashes. - Improve the error message when METADATA or PKG-INFO is None when accessing metadata. - Add a new command pip debug that can display e.g. the list of compatible tags for the current Python. - Display hint on installing with --pre when search results include pre-release versions. - Report to Warehouse that pip is running under CI if the PIP_IS_CI environment variable is set. - Allow --python-version to be passed as a dotted version string (e.g. 3.7 or 3.7.3). - Log the final filename and SHA256 of a .whl file when done building a wheel. - Include the wheel's tags in the log message explanation when a candidate wheel link is found incompatible. - Add a --path argument to pip freeze to support --target installations. - Add a --path argument to pip list to support --target installations. Bug Fixes - Set sys.argv[0] to the underlying setup.py when invoking setup.py via the setuptools shim so setuptools doesn't think the path is -c. - Update pip download to respect the given --python-version when checking "Requires-Python". - Respect --global-option and --install-option when installing from a version control url (e.g. git). - Make the "ascii" progress bar really be "ascii" and not Unicode. - Fail elegantly when trying to set an incorrectly formatted key in config. - Prevent DistutilsOptionError when prefix is indicated in the global environment and --target is used. - Fix pip install to respect --ignore-requires-python when evaluating links. - Fix a debug log message when freezing an editable, non-version controlled requirement. - Extend to Subversion 1.8+ the behavior of calling Subversion in interactive mode when pip is run interactively. - Prevent pip install <url> from permitting directory traversal if e.g. a malicious server sends a Content-Disposition header with a filename containing ../ or ..\\. - Hide passwords in output when using --find-links. - Include more details in the log message if pip freeze can't generate a requirement string for a particular distribution. - Add the line number and file location to the error message when reading an invalid requirements file in certain situations. - Prefer os.confstr to ctypes when extracting glibc version info. - Improve error message printed when an invalid editable requirement is provided. - Improve error message formatting when a command errors out in a subprocess. Vendored Libraries - Upgrade certifi to 2019.6.16 - Upgrade distlib to 0.2.9.post0 - Upgrade msgpack to 0.6.1 - Upgrade requests to 2.22.0 - Upgrade urllib3 to 1.25.3 - Patch vendored html5lib, to prefer using collections.abc where possible. Improved Documentation - Document how Python 2.7 support will be maintained. - Upgrade Sphinx version used to build documentation. - Fix generation of subcommand manpages. - Mention that pip can install from git refs. - Replace a failing example of pip installs with extras with a working one.
2019-08-03 13:23:09 +02:00
${PYSITELIB}/pip/_internal/utils/virtualenv.py
${PYSITELIB}/pip/_internal/utils/virtualenv.pyc
${PYSITELIB}/pip/_internal/utils/virtualenv.pyo
${PYSITELIB}/pip/_internal/vcs/__init__.py
${PYSITELIB}/pip/_internal/vcs/__init__.pyc
${PYSITELIB}/pip/_internal/vcs/__init__.pyo
${PYSITELIB}/pip/_internal/vcs/bazaar.py
${PYSITELIB}/pip/_internal/vcs/bazaar.pyc
${PYSITELIB}/pip/_internal/vcs/bazaar.pyo
${PYSITELIB}/pip/_internal/vcs/git.py
${PYSITELIB}/pip/_internal/vcs/git.pyc
${PYSITELIB}/pip/_internal/vcs/git.pyo
${PYSITELIB}/pip/_internal/vcs/mercurial.py
${PYSITELIB}/pip/_internal/vcs/mercurial.pyc
${PYSITELIB}/pip/_internal/vcs/mercurial.pyo
${PYSITELIB}/pip/_internal/vcs/subversion.py
${PYSITELIB}/pip/_internal/vcs/subversion.pyc
${PYSITELIB}/pip/_internal/vcs/subversion.pyo
py-pip: updated to 19.2.1 19.2.1: Bug Fixes - Fix a NoneType AttributeError when evaluating hashes and no hashes are provided. 19.2: Deprecations and Removals - Drop support for EOL Python 3.4. - Improve deprecation messages to include the version in which the functionality will be removed. Features - Credentials will now be loaded using keyring when installed. - Fully support using --trusted-host inside requirements files. - Update timestamps in pip's --log file to include milliseconds. - Respect whether a file has been marked as "yanked" from a simple repository (see PEP 592 <https://www.python.org/dev/peps/pep-0592/>__ for details). - When choosing candidates to install, prefer candidates with a hash matching one of the user-provided hashes. - Improve the error message when METADATA or PKG-INFO is None when accessing metadata. - Add a new command pip debug that can display e.g. the list of compatible tags for the current Python. - Display hint on installing with --pre when search results include pre-release versions. - Report to Warehouse that pip is running under CI if the PIP_IS_CI environment variable is set. - Allow --python-version to be passed as a dotted version string (e.g. 3.7 or 3.7.3). - Log the final filename and SHA256 of a .whl file when done building a wheel. - Include the wheel's tags in the log message explanation when a candidate wheel link is found incompatible. - Add a --path argument to pip freeze to support --target installations. - Add a --path argument to pip list to support --target installations. Bug Fixes - Set sys.argv[0] to the underlying setup.py when invoking setup.py via the setuptools shim so setuptools doesn't think the path is -c. - Update pip download to respect the given --python-version when checking "Requires-Python". - Respect --global-option and --install-option when installing from a version control url (e.g. git). - Make the "ascii" progress bar really be "ascii" and not Unicode. - Fail elegantly when trying to set an incorrectly formatted key in config. - Prevent DistutilsOptionError when prefix is indicated in the global environment and --target is used. - Fix pip install to respect --ignore-requires-python when evaluating links. - Fix a debug log message when freezing an editable, non-version controlled requirement. - Extend to Subversion 1.8+ the behavior of calling Subversion in interactive mode when pip is run interactively. - Prevent pip install <url> from permitting directory traversal if e.g. a malicious server sends a Content-Disposition header with a filename containing ../ or ..\\. - Hide passwords in output when using --find-links. - Include more details in the log message if pip freeze can't generate a requirement string for a particular distribution. - Add the line number and file location to the error message when reading an invalid requirements file in certain situations. - Prefer os.confstr to ctypes when extracting glibc version info. - Improve error message printed when an invalid editable requirement is provided. - Improve error message formatting when a command errors out in a subprocess. Vendored Libraries - Upgrade certifi to 2019.6.16 - Upgrade distlib to 0.2.9.post0 - Upgrade msgpack to 0.6.1 - Upgrade requests to 2.22.0 - Upgrade urllib3 to 1.25.3 - Patch vendored html5lib, to prefer using collections.abc where possible. Improved Documentation - Document how Python 2.7 support will be maintained. - Upgrade Sphinx version used to build documentation. - Fix generation of subcommand manpages. - Mention that pip can install from git refs. - Replace a failing example of pip installs with extras with a working one.
2019-08-03 13:23:09 +02:00
${PYSITELIB}/pip/_internal/vcs/versioncontrol.py
${PYSITELIB}/pip/_internal/vcs/versioncontrol.pyc
${PYSITELIB}/pip/_internal/vcs/versioncontrol.pyo
${PYSITELIB}/pip/_internal/wheel.py
${PYSITELIB}/pip/_internal/wheel.pyc
${PYSITELIB}/pip/_internal/wheel.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/__init__.py
${PYSITELIB}/pip/_vendor/__init__.pyc
${PYSITELIB}/pip/_vendor/__init__.pyo
Update to 9.0.0 Upstream changes: 9.0.0 (2016-11-02) BACKWARD INCOMPATIBLE Remove the attempted autodetection of requirement names from URLs, URLs must include a name via #egg=. DEPRECATION pip install --egg have been deprecated and will be removed in the future. This "feature" has a long list of drawbacks where it breaks almost all of pip's other features in subtle and hard to diagnose ways. Add a pip check command to check installed packages dependencies (PR #3750). Added option to allow user to abort pip operation if file/directory exists Added Appveyor CI Uninstall existing packages when performing an editable installation of the same packages (#1548). Pip show is less verbose by default. --verbose prints multiline fields. (PR #3858). Added optional column formatting to pip list (#3651). Add --not-required option to pip list to list packages that are not dependencies of other packages. Fix the build on systems with symlinked /tmp directory for custom builds such as numpy (PR #3701). Fix regression in pip freeze: when there is more than one git remote, priority is given to the remote named origin (PR #3708, #3616). Fix crash when calling pip freeze with invalid requirement installed (PR #3704, #3681). Support multiple --requirement files in pip freeze (PR #3703). Implementation of pep-503 data-requires-python. When this field is present for a release link, pip will ignore the download when installing to a Python version that doesn't satisfy the requirement. Pip wheel now works on editable packages too (it was only working on editable dependencies before); this allows running pip wheel on the result of pip freeze in presence of editable requirements (PR #3695, #3291). Load credentials from .netrc files (PR #3715, #3569). Add --platform, --python-version, --implementation and --abi parameters to pip download. These allow utilities and advanced users to gather distributions for interpreters other than the one pip is being run on. (PR #3760) Skip scanning virtual environments even when venv/bin/python is a dangling symlink. Added pip completion support for fish shell. Fix problems on Windows on Python 2 when username or hostname contains non-ASCII characters (#3463, PR #3970, PR #4000). Use git fetch --tags to fetch tags in addition to everything else that is normally fetched; this is necessary in case a git requirement url points to a tag or commit that is not on a branch (PR #3791) Normalize package names before using in pip show (#3976) Raise when Requires-Python do not match the running version and add --ignore-requires-python option as escape hatch (PR #3846). Report the correct installed version when performing an upgrade in some corner cases (#2382) Add -i shorthand for --index flag in pip search Do not optionally load C dependencies in requests (#1840, #2930, #3024) Strip authentication from SVN url prior to passing it into svn (PR #3697, #3209). Also install in platlib with --target option (PR #3694, #3682). Restore the ability to use inline comments in requirements files passed to pip freeze (#3680). Deprecate --default-vcs option (#4052).
2016-11-06 01:32:12 +01:00
${PYSITELIB}/pip/_vendor/appdirs.py
${PYSITELIB}/pip/_vendor/appdirs.pyc
${PYSITELIB}/pip/_vendor/appdirs.pyo
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/__init__.py
${PYSITELIB}/pip/_vendor/cachecontrol/__init__.pyc
${PYSITELIB}/pip/_vendor/cachecontrol/__init__.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/_cmd.py
${PYSITELIB}/pip/_vendor/cachecontrol/_cmd.pyc
${PYSITELIB}/pip/_vendor/cachecontrol/_cmd.pyo
${PYSITELIB}/pip/_vendor/cachecontrol/adapter.py
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/adapter.pyc
${PYSITELIB}/pip/_vendor/cachecontrol/adapter.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/cache.py
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/cache.pyc
${PYSITELIB}/pip/_vendor/cachecontrol/cache.pyo
${PYSITELIB}/pip/_vendor/cachecontrol/caches/__init__.py
${PYSITELIB}/pip/_vendor/cachecontrol/caches/__init__.pyc
${PYSITELIB}/pip/_vendor/cachecontrol/caches/__init__.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/caches/file_cache.py
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/caches/file_cache.pyc
${PYSITELIB}/pip/_vendor/cachecontrol/caches/file_cache.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/caches/redis_cache.py
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/caches/redis_cache.pyc
${PYSITELIB}/pip/_vendor/cachecontrol/caches/redis_cache.pyo
${PYSITELIB}/pip/_vendor/cachecontrol/compat.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/compat.pyc
${PYSITELIB}/pip/_vendor/cachecontrol/compat.pyo
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/controller.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/controller.pyc
${PYSITELIB}/pip/_vendor/cachecontrol/controller.pyo
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/filewrapper.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/filewrapper.pyc
${PYSITELIB}/pip/_vendor/cachecontrol/filewrapper.pyo
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/heuristics.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/heuristics.pyc
${PYSITELIB}/pip/_vendor/cachecontrol/heuristics.pyo
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/serialize.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/serialize.pyc
${PYSITELIB}/pip/_vendor/cachecontrol/serialize.pyo
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/wrapper.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/cachecontrol/wrapper.pyc
${PYSITELIB}/pip/_vendor/cachecontrol/wrapper.pyo
${PYSITELIB}/pip/_vendor/certifi/__init__.py
${PYSITELIB}/pip/_vendor/certifi/__init__.pyc
${PYSITELIB}/pip/_vendor/certifi/__init__.pyo
${PYSITELIB}/pip/_vendor/certifi/__main__.py
${PYSITELIB}/pip/_vendor/certifi/__main__.pyc
${PYSITELIB}/pip/_vendor/certifi/__main__.pyo
${PYSITELIB}/pip/_vendor/certifi/cacert.pem
${PYSITELIB}/pip/_vendor/certifi/core.py
${PYSITELIB}/pip/_vendor/certifi/core.pyc
${PYSITELIB}/pip/_vendor/certifi/core.pyo
${PYSITELIB}/pip/_vendor/chardet/__init__.py
${PYSITELIB}/pip/_vendor/chardet/__init__.pyc
${PYSITELIB}/pip/_vendor/chardet/__init__.pyo
${PYSITELIB}/pip/_vendor/chardet/big5freq.py
${PYSITELIB}/pip/_vendor/chardet/big5freq.pyc
${PYSITELIB}/pip/_vendor/chardet/big5freq.pyo
${PYSITELIB}/pip/_vendor/chardet/big5prober.py
${PYSITELIB}/pip/_vendor/chardet/big5prober.pyc
${PYSITELIB}/pip/_vendor/chardet/big5prober.pyo
${PYSITELIB}/pip/_vendor/chardet/chardistribution.py
${PYSITELIB}/pip/_vendor/chardet/chardistribution.pyc
${PYSITELIB}/pip/_vendor/chardet/chardistribution.pyo
${PYSITELIB}/pip/_vendor/chardet/charsetgroupprober.py
${PYSITELIB}/pip/_vendor/chardet/charsetgroupprober.pyc
${PYSITELIB}/pip/_vendor/chardet/charsetgroupprober.pyo
${PYSITELIB}/pip/_vendor/chardet/charsetprober.py
${PYSITELIB}/pip/_vendor/chardet/charsetprober.pyc
${PYSITELIB}/pip/_vendor/chardet/charsetprober.pyo
${PYSITELIB}/pip/_vendor/chardet/cli/__init__.py
${PYSITELIB}/pip/_vendor/chardet/cli/__init__.pyc
${PYSITELIB}/pip/_vendor/chardet/cli/__init__.pyo
${PYSITELIB}/pip/_vendor/chardet/cli/chardetect.py
${PYSITELIB}/pip/_vendor/chardet/cli/chardetect.pyc
${PYSITELIB}/pip/_vendor/chardet/cli/chardetect.pyo
${PYSITELIB}/pip/_vendor/chardet/codingstatemachine.py
${PYSITELIB}/pip/_vendor/chardet/codingstatemachine.pyc
${PYSITELIB}/pip/_vendor/chardet/codingstatemachine.pyo
${PYSITELIB}/pip/_vendor/chardet/compat.py
${PYSITELIB}/pip/_vendor/chardet/compat.pyc
${PYSITELIB}/pip/_vendor/chardet/compat.pyo
${PYSITELIB}/pip/_vendor/chardet/cp949prober.py
${PYSITELIB}/pip/_vendor/chardet/cp949prober.pyc
${PYSITELIB}/pip/_vendor/chardet/cp949prober.pyo
${PYSITELIB}/pip/_vendor/chardet/enums.py
${PYSITELIB}/pip/_vendor/chardet/enums.pyc
${PYSITELIB}/pip/_vendor/chardet/enums.pyo
${PYSITELIB}/pip/_vendor/chardet/escprober.py
${PYSITELIB}/pip/_vendor/chardet/escprober.pyc
${PYSITELIB}/pip/_vendor/chardet/escprober.pyo
${PYSITELIB}/pip/_vendor/chardet/escsm.py
${PYSITELIB}/pip/_vendor/chardet/escsm.pyc
${PYSITELIB}/pip/_vendor/chardet/escsm.pyo
${PYSITELIB}/pip/_vendor/chardet/eucjpprober.py
${PYSITELIB}/pip/_vendor/chardet/eucjpprober.pyc
${PYSITELIB}/pip/_vendor/chardet/eucjpprober.pyo
${PYSITELIB}/pip/_vendor/chardet/euckrfreq.py
${PYSITELIB}/pip/_vendor/chardet/euckrfreq.pyc
${PYSITELIB}/pip/_vendor/chardet/euckrfreq.pyo
${PYSITELIB}/pip/_vendor/chardet/euckrprober.py
${PYSITELIB}/pip/_vendor/chardet/euckrprober.pyc
${PYSITELIB}/pip/_vendor/chardet/euckrprober.pyo
${PYSITELIB}/pip/_vendor/chardet/euctwfreq.py
${PYSITELIB}/pip/_vendor/chardet/euctwfreq.pyc
${PYSITELIB}/pip/_vendor/chardet/euctwfreq.pyo
${PYSITELIB}/pip/_vendor/chardet/euctwprober.py
${PYSITELIB}/pip/_vendor/chardet/euctwprober.pyc
${PYSITELIB}/pip/_vendor/chardet/euctwprober.pyo
${PYSITELIB}/pip/_vendor/chardet/gb2312freq.py
${PYSITELIB}/pip/_vendor/chardet/gb2312freq.pyc
${PYSITELIB}/pip/_vendor/chardet/gb2312freq.pyo
${PYSITELIB}/pip/_vendor/chardet/gb2312prober.py
${PYSITELIB}/pip/_vendor/chardet/gb2312prober.pyc
${PYSITELIB}/pip/_vendor/chardet/gb2312prober.pyo
${PYSITELIB}/pip/_vendor/chardet/hebrewprober.py
${PYSITELIB}/pip/_vendor/chardet/hebrewprober.pyc
${PYSITELIB}/pip/_vendor/chardet/hebrewprober.pyo
${PYSITELIB}/pip/_vendor/chardet/jisfreq.py
${PYSITELIB}/pip/_vendor/chardet/jisfreq.pyc
${PYSITELIB}/pip/_vendor/chardet/jisfreq.pyo
${PYSITELIB}/pip/_vendor/chardet/jpcntx.py
${PYSITELIB}/pip/_vendor/chardet/jpcntx.pyc
${PYSITELIB}/pip/_vendor/chardet/jpcntx.pyo
${PYSITELIB}/pip/_vendor/chardet/langbulgarianmodel.py
${PYSITELIB}/pip/_vendor/chardet/langbulgarianmodel.pyc
${PYSITELIB}/pip/_vendor/chardet/langbulgarianmodel.pyo
${PYSITELIB}/pip/_vendor/chardet/langcyrillicmodel.py
${PYSITELIB}/pip/_vendor/chardet/langcyrillicmodel.pyc
${PYSITELIB}/pip/_vendor/chardet/langcyrillicmodel.pyo
${PYSITELIB}/pip/_vendor/chardet/langgreekmodel.py
${PYSITELIB}/pip/_vendor/chardet/langgreekmodel.pyc
${PYSITELIB}/pip/_vendor/chardet/langgreekmodel.pyo
${PYSITELIB}/pip/_vendor/chardet/langhebrewmodel.py
${PYSITELIB}/pip/_vendor/chardet/langhebrewmodel.pyc
${PYSITELIB}/pip/_vendor/chardet/langhebrewmodel.pyo
${PYSITELIB}/pip/_vendor/chardet/langhungarianmodel.py
${PYSITELIB}/pip/_vendor/chardet/langhungarianmodel.pyc
${PYSITELIB}/pip/_vendor/chardet/langhungarianmodel.pyo
${PYSITELIB}/pip/_vendor/chardet/langthaimodel.py
${PYSITELIB}/pip/_vendor/chardet/langthaimodel.pyc
${PYSITELIB}/pip/_vendor/chardet/langthaimodel.pyo
${PYSITELIB}/pip/_vendor/chardet/langturkishmodel.py
${PYSITELIB}/pip/_vendor/chardet/langturkishmodel.pyc
${PYSITELIB}/pip/_vendor/chardet/langturkishmodel.pyo
${PYSITELIB}/pip/_vendor/chardet/latin1prober.py
${PYSITELIB}/pip/_vendor/chardet/latin1prober.pyc
${PYSITELIB}/pip/_vendor/chardet/latin1prober.pyo
${PYSITELIB}/pip/_vendor/chardet/mbcharsetprober.py
${PYSITELIB}/pip/_vendor/chardet/mbcharsetprober.pyc
${PYSITELIB}/pip/_vendor/chardet/mbcharsetprober.pyo
${PYSITELIB}/pip/_vendor/chardet/mbcsgroupprober.py
${PYSITELIB}/pip/_vendor/chardet/mbcsgroupprober.pyc
${PYSITELIB}/pip/_vendor/chardet/mbcsgroupprober.pyo
${PYSITELIB}/pip/_vendor/chardet/mbcssm.py
${PYSITELIB}/pip/_vendor/chardet/mbcssm.pyc
${PYSITELIB}/pip/_vendor/chardet/mbcssm.pyo
${PYSITELIB}/pip/_vendor/chardet/sbcharsetprober.py
${PYSITELIB}/pip/_vendor/chardet/sbcharsetprober.pyc
${PYSITELIB}/pip/_vendor/chardet/sbcharsetprober.pyo
${PYSITELIB}/pip/_vendor/chardet/sbcsgroupprober.py
${PYSITELIB}/pip/_vendor/chardet/sbcsgroupprober.pyc
${PYSITELIB}/pip/_vendor/chardet/sbcsgroupprober.pyo
${PYSITELIB}/pip/_vendor/chardet/sjisprober.py
${PYSITELIB}/pip/_vendor/chardet/sjisprober.pyc
${PYSITELIB}/pip/_vendor/chardet/sjisprober.pyo
${PYSITELIB}/pip/_vendor/chardet/universaldetector.py
${PYSITELIB}/pip/_vendor/chardet/universaldetector.pyc
${PYSITELIB}/pip/_vendor/chardet/universaldetector.pyo
${PYSITELIB}/pip/_vendor/chardet/utf8prober.py
${PYSITELIB}/pip/_vendor/chardet/utf8prober.pyc
${PYSITELIB}/pip/_vendor/chardet/utf8prober.pyo
${PYSITELIB}/pip/_vendor/chardet/version.py
${PYSITELIB}/pip/_vendor/chardet/version.pyc
${PYSITELIB}/pip/_vendor/chardet/version.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/colorama/__init__.py
${PYSITELIB}/pip/_vendor/colorama/__init__.pyc
${PYSITELIB}/pip/_vendor/colorama/__init__.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/colorama/ansi.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/colorama/ansi.pyc
${PYSITELIB}/pip/_vendor/colorama/ansi.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/colorama/ansitowin32.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/colorama/ansitowin32.pyc
${PYSITELIB}/pip/_vendor/colorama/ansitowin32.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/colorama/initialise.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/colorama/initialise.pyc
${PYSITELIB}/pip/_vendor/colorama/initialise.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/colorama/win32.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/colorama/win32.pyc
${PYSITELIB}/pip/_vendor/colorama/win32.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/colorama/winterm.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/colorama/winterm.pyc
${PYSITELIB}/pip/_vendor/colorama/winterm.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_vendor/contextlib2.py
${PYSITELIB}/pip/_vendor/contextlib2.pyc
${PYSITELIB}/pip/_vendor/contextlib2.pyo
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
2014-01-16 03:40:15 +01:00
${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
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/_backport/misc.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/distlib/_backport/misc.pyc
${PYSITELIB}/pip/_vendor/distlib/_backport/misc.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/_backport/shutil.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/distlib/_backport/shutil.pyc
${PYSITELIB}/pip/_vendor/distlib/_backport/shutil.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/_backport/sysconfig.cfg
${PYSITELIB}/pip/_vendor/distlib/_backport/sysconfig.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/distlib/_backport/sysconfig.pyc
${PYSITELIB}/pip/_vendor/distlib/_backport/sysconfig.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/_backport/tarfile.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/distlib/_backport/tarfile.pyc
${PYSITELIB}/pip/_vendor/distlib/_backport/tarfile.pyo
${PYSITELIB}/pip/_vendor/distlib/compat.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/compat.pyc
${PYSITELIB}/pip/_vendor/distlib/compat.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/distlib/database.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/database.pyc
${PYSITELIB}/pip/_vendor/distlib/database.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/distlib/index.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/index.pyc
${PYSITELIB}/pip/_vendor/distlib/index.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/distlib/locators.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/locators.pyc
${PYSITELIB}/pip/_vendor/distlib/locators.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/distlib/manifest.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/manifest.pyc
${PYSITELIB}/pip/_vendor/distlib/manifest.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/distlib/markers.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/markers.pyc
${PYSITELIB}/pip/_vendor/distlib/markers.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/distlib/metadata.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/metadata.pyc
${PYSITELIB}/pip/_vendor/distlib/metadata.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/distlib/resources.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/resources.pyc
${PYSITELIB}/pip/_vendor/distlib/resources.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/distlib/scripts.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/scripts.pyc
${PYSITELIB}/pip/_vendor/distlib/scripts.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/distlib/t32.exe
${PYSITELIB}/pip/_vendor/distlib/t64.exe
${PYSITELIB}/pip/_vendor/distlib/util.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/util.pyc
${PYSITELIB}/pip/_vendor/distlib/util.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/distlib/version.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/version.pyc
${PYSITELIB}/pip/_vendor/distlib/version.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/distlib/w32.exe
${PYSITELIB}/pip/_vendor/distlib/w64.exe
${PYSITELIB}/pip/_vendor/distlib/wheel.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/distlib/wheel.pyc
${PYSITELIB}/pip/_vendor/distlib/wheel.pyo
Update to 9.0.0 Upstream changes: 9.0.0 (2016-11-02) BACKWARD INCOMPATIBLE Remove the attempted autodetection of requirement names from URLs, URLs must include a name via #egg=. DEPRECATION pip install --egg have been deprecated and will be removed in the future. This "feature" has a long list of drawbacks where it breaks almost all of pip's other features in subtle and hard to diagnose ways. Add a pip check command to check installed packages dependencies (PR #3750). Added option to allow user to abort pip operation if file/directory exists Added Appveyor CI Uninstall existing packages when performing an editable installation of the same packages (#1548). Pip show is less verbose by default. --verbose prints multiline fields. (PR #3858). Added optional column formatting to pip list (#3651). Add --not-required option to pip list to list packages that are not dependencies of other packages. Fix the build on systems with symlinked /tmp directory for custom builds such as numpy (PR #3701). Fix regression in pip freeze: when there is more than one git remote, priority is given to the remote named origin (PR #3708, #3616). Fix crash when calling pip freeze with invalid requirement installed (PR #3704, #3681). Support multiple --requirement files in pip freeze (PR #3703). Implementation of pep-503 data-requires-python. When this field is present for a release link, pip will ignore the download when installing to a Python version that doesn't satisfy the requirement. Pip wheel now works on editable packages too (it was only working on editable dependencies before); this allows running pip wheel on the result of pip freeze in presence of editable requirements (PR #3695, #3291). Load credentials from .netrc files (PR #3715, #3569). Add --platform, --python-version, --implementation and --abi parameters to pip download. These allow utilities and advanced users to gather distributions for interpreters other than the one pip is being run on. (PR #3760) Skip scanning virtual environments even when venv/bin/python is a dangling symlink. Added pip completion support for fish shell. Fix problems on Windows on Python 2 when username or hostname contains non-ASCII characters (#3463, PR #3970, PR #4000). Use git fetch --tags to fetch tags in addition to everything else that is normally fetched; this is necessary in case a git requirement url points to a tag or commit that is not on a branch (PR #3791) Normalize package names before using in pip show (#3976) Raise when Requires-Python do not match the running version and add --ignore-requires-python option as escape hatch (PR #3846). Report the correct installed version when performing an upgrade in some corner cases (#2382) Add -i shorthand for --index flag in pip search Do not optionally load C dependencies in requests (#1840, #2930, #3024) Strip authentication from SVN url prior to passing it into svn (PR #3697, #3209). Also install in platlib with --target option (PR #3694, #3682). Restore the ability to use inline comments in requirements files passed to pip freeze (#3680). Deprecate --default-vcs option (#4052).
2016-11-06 01:32:12 +01:00
${PYSITELIB}/pip/_vendor/distro.py
${PYSITELIB}/pip/_vendor/distro.pyc
${PYSITELIB}/pip/_vendor/distro.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/html5lib/__init__.py
${PYSITELIB}/pip/_vendor/html5lib/__init__.pyc
${PYSITELIB}/pip/_vendor/html5lib/__init__.pyo
Update to 9.0.0 Upstream changes: 9.0.0 (2016-11-02) BACKWARD INCOMPATIBLE Remove the attempted autodetection of requirement names from URLs, URLs must include a name via #egg=. DEPRECATION pip install --egg have been deprecated and will be removed in the future. This "feature" has a long list of drawbacks where it breaks almost all of pip's other features in subtle and hard to diagnose ways. Add a pip check command to check installed packages dependencies (PR #3750). Added option to allow user to abort pip operation if file/directory exists Added Appveyor CI Uninstall existing packages when performing an editable installation of the same packages (#1548). Pip show is less verbose by default. --verbose prints multiline fields. (PR #3858). Added optional column formatting to pip list (#3651). Add --not-required option to pip list to list packages that are not dependencies of other packages. Fix the build on systems with symlinked /tmp directory for custom builds such as numpy (PR #3701). Fix regression in pip freeze: when there is more than one git remote, priority is given to the remote named origin (PR #3708, #3616). Fix crash when calling pip freeze with invalid requirement installed (PR #3704, #3681). Support multiple --requirement files in pip freeze (PR #3703). Implementation of pep-503 data-requires-python. When this field is present for a release link, pip will ignore the download when installing to a Python version that doesn't satisfy the requirement. Pip wheel now works on editable packages too (it was only working on editable dependencies before); this allows running pip wheel on the result of pip freeze in presence of editable requirements (PR #3695, #3291). Load credentials from .netrc files (PR #3715, #3569). Add --platform, --python-version, --implementation and --abi parameters to pip download. These allow utilities and advanced users to gather distributions for interpreters other than the one pip is being run on. (PR #3760) Skip scanning virtual environments even when venv/bin/python is a dangling symlink. Added pip completion support for fish shell. Fix problems on Windows on Python 2 when username or hostname contains non-ASCII characters (#3463, PR #3970, PR #4000). Use git fetch --tags to fetch tags in addition to everything else that is normally fetched; this is necessary in case a git requirement url points to a tag or commit that is not on a branch (PR #3791) Normalize package names before using in pip show (#3976) Raise when Requires-Python do not match the running version and add --ignore-requires-python option as escape hatch (PR #3846). Report the correct installed version when performing an upgrade in some corner cases (#2382) Add -i shorthand for --index flag in pip search Do not optionally load C dependencies in requests (#1840, #2930, #3024) Strip authentication from SVN url prior to passing it into svn (PR #3697, #3209). Also install in platlib with --target option (PR #3694, #3682). Restore the ability to use inline comments in requirements files passed to pip freeze (#3680). Deprecate --default-vcs option (#4052).
2016-11-06 01:32:12 +01:00
${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/_tokenizer.py
${PYSITELIB}/pip/_vendor/html5lib/_tokenizer.pyc
${PYSITELIB}/pip/_vendor/html5lib/_tokenizer.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
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/html5lib/constants.py
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
2014-01-16 03:40:15 +01:00
${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
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/html5lib/filters/alphabeticalattributes.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/html5lib/filters/alphabeticalattributes.pyc
${PYSITELIB}/pip/_vendor/html5lib/filters/alphabeticalattributes.pyo
Update to 9.0.0 Upstream changes: 9.0.0 (2016-11-02) BACKWARD INCOMPATIBLE Remove the attempted autodetection of requirement names from URLs, URLs must include a name via #egg=. DEPRECATION pip install --egg have been deprecated and will be removed in the future. This "feature" has a long list of drawbacks where it breaks almost all of pip's other features in subtle and hard to diagnose ways. Add a pip check command to check installed packages dependencies (PR #3750). Added option to allow user to abort pip operation if file/directory exists Added Appveyor CI Uninstall existing packages when performing an editable installation of the same packages (#1548). Pip show is less verbose by default. --verbose prints multiline fields. (PR #3858). Added optional column formatting to pip list (#3651). Add --not-required option to pip list to list packages that are not dependencies of other packages. Fix the build on systems with symlinked /tmp directory for custom builds such as numpy (PR #3701). Fix regression in pip freeze: when there is more than one git remote, priority is given to the remote named origin (PR #3708, #3616). Fix crash when calling pip freeze with invalid requirement installed (PR #3704, #3681). Support multiple --requirement files in pip freeze (PR #3703). Implementation of pep-503 data-requires-python. When this field is present for a release link, pip will ignore the download when installing to a Python version that doesn't satisfy the requirement. Pip wheel now works on editable packages too (it was only working on editable dependencies before); this allows running pip wheel on the result of pip freeze in presence of editable requirements (PR #3695, #3291). Load credentials from .netrc files (PR #3715, #3569). Add --platform, --python-version, --implementation and --abi parameters to pip download. These allow utilities and advanced users to gather distributions for interpreters other than the one pip is being run on. (PR #3760) Skip scanning virtual environments even when venv/bin/python is a dangling symlink. Added pip completion support for fish shell. Fix problems on Windows on Python 2 when username or hostname contains non-ASCII characters (#3463, PR #3970, PR #4000). Use git fetch --tags to fetch tags in addition to everything else that is normally fetched; this is necessary in case a git requirement url points to a tag or commit that is not on a branch (PR #3791) Normalize package names before using in pip show (#3976) Raise when Requires-Python do not match the running version and add --ignore-requires-python option as escape hatch (PR #3846). Report the correct installed version when performing an upgrade in some corner cases (#2382) Add -i shorthand for --index flag in pip search Do not optionally load C dependencies in requests (#1840, #2930, #3024) Strip authentication from SVN url prior to passing it into svn (PR #3697, #3209). Also install in platlib with --target option (PR #3694, #3682). Restore the ability to use inline comments in requirements files passed to pip freeze (#3680). Deprecate --default-vcs option (#4052).
2016-11-06 01:32:12 +01:00
${PYSITELIB}/pip/_vendor/html5lib/filters/base.py
${PYSITELIB}/pip/_vendor/html5lib/filters/base.pyc
${PYSITELIB}/pip/_vendor/html5lib/filters/base.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/html5lib/filters/inject_meta_charset.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/html5lib/filters/inject_meta_charset.pyc
${PYSITELIB}/pip/_vendor/html5lib/filters/inject_meta_charset.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/html5lib/filters/lint.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/html5lib/filters/lint.pyc
${PYSITELIB}/pip/_vendor/html5lib/filters/lint.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/html5lib/filters/optionaltags.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/html5lib/filters/optionaltags.pyc
${PYSITELIB}/pip/_vendor/html5lib/filters/optionaltags.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/html5lib/filters/sanitizer.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/html5lib/filters/sanitizer.pyc
${PYSITELIB}/pip/_vendor/html5lib/filters/sanitizer.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/html5lib/filters/whitespace.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/html5lib/filters/whitespace.pyc
${PYSITELIB}/pip/_vendor/html5lib/filters/whitespace.pyo
${PYSITELIB}/pip/_vendor/html5lib/html5parser.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/html5lib/html5parser.pyc
${PYSITELIB}/pip/_vendor/html5lib/html5parser.pyo
Update to 9.0.0 Upstream changes: 9.0.0 (2016-11-02) BACKWARD INCOMPATIBLE Remove the attempted autodetection of requirement names from URLs, URLs must include a name via #egg=. DEPRECATION pip install --egg have been deprecated and will be removed in the future. This "feature" has a long list of drawbacks where it breaks almost all of pip's other features in subtle and hard to diagnose ways. Add a pip check command to check installed packages dependencies (PR #3750). Added option to allow user to abort pip operation if file/directory exists Added Appveyor CI Uninstall existing packages when performing an editable installation of the same packages (#1548). Pip show is less verbose by default. --verbose prints multiline fields. (PR #3858). Added optional column formatting to pip list (#3651). Add --not-required option to pip list to list packages that are not dependencies of other packages. Fix the build on systems with symlinked /tmp directory for custom builds such as numpy (PR #3701). Fix regression in pip freeze: when there is more than one git remote, priority is given to the remote named origin (PR #3708, #3616). Fix crash when calling pip freeze with invalid requirement installed (PR #3704, #3681). Support multiple --requirement files in pip freeze (PR #3703). Implementation of pep-503 data-requires-python. When this field is present for a release link, pip will ignore the download when installing to a Python version that doesn't satisfy the requirement. Pip wheel now works on editable packages too (it was only working on editable dependencies before); this allows running pip wheel on the result of pip freeze in presence of editable requirements (PR #3695, #3291). Load credentials from .netrc files (PR #3715, #3569). Add --platform, --python-version, --implementation and --abi parameters to pip download. These allow utilities and advanced users to gather distributions for interpreters other than the one pip is being run on. (PR #3760) Skip scanning virtual environments even when venv/bin/python is a dangling symlink. Added pip completion support for fish shell. Fix problems on Windows on Python 2 when username or hostname contains non-ASCII characters (#3463, PR #3970, PR #4000). Use git fetch --tags to fetch tags in addition to everything else that is normally fetched; this is necessary in case a git requirement url points to a tag or commit that is not on a branch (PR #3791) Normalize package names before using in pip show (#3976) Raise when Requires-Python do not match the running version and add --ignore-requires-python option as escape hatch (PR #3846). Report the correct installed version when performing an upgrade in some corner cases (#2382) Add -i shorthand for --index flag in pip search Do not optionally load C dependencies in requests (#1840, #2930, #3024) Strip authentication from SVN url prior to passing it into svn (PR #3697, #3209). Also install in platlib with --target option (PR #3694, #3682). Restore the ability to use inline comments in requirements files passed to pip freeze (#3680). Deprecate --default-vcs option (#4052).
2016-11-06 01:32:12 +01:00
${PYSITELIB}/pip/_vendor/html5lib/serializer.py
${PYSITELIB}/pip/_vendor/html5lib/serializer.pyc
${PYSITELIB}/pip/_vendor/html5lib/serializer.pyo
${PYSITELIB}/pip/_vendor/html5lib/treeadapters/__init__.py
${PYSITELIB}/pip/_vendor/html5lib/treeadapters/__init__.pyc
${PYSITELIB}/pip/_vendor/html5lib/treeadapters/__init__.pyo
Update to 9.0.0 Upstream changes: 9.0.0 (2016-11-02) BACKWARD INCOMPATIBLE Remove the attempted autodetection of requirement names from URLs, URLs must include a name via #egg=. DEPRECATION pip install --egg have been deprecated and will be removed in the future. This "feature" has a long list of drawbacks where it breaks almost all of pip's other features in subtle and hard to diagnose ways. Add a pip check command to check installed packages dependencies (PR #3750). Added option to allow user to abort pip operation if file/directory exists Added Appveyor CI Uninstall existing packages when performing an editable installation of the same packages (#1548). Pip show is less verbose by default. --verbose prints multiline fields. (PR #3858). Added optional column formatting to pip list (#3651). Add --not-required option to pip list to list packages that are not dependencies of other packages. Fix the build on systems with symlinked /tmp directory for custom builds such as numpy (PR #3701). Fix regression in pip freeze: when there is more than one git remote, priority is given to the remote named origin (PR #3708, #3616). Fix crash when calling pip freeze with invalid requirement installed (PR #3704, #3681). Support multiple --requirement files in pip freeze (PR #3703). Implementation of pep-503 data-requires-python. When this field is present for a release link, pip will ignore the download when installing to a Python version that doesn't satisfy the requirement. Pip wheel now works on editable packages too (it was only working on editable dependencies before); this allows running pip wheel on the result of pip freeze in presence of editable requirements (PR #3695, #3291). Load credentials from .netrc files (PR #3715, #3569). Add --platform, --python-version, --implementation and --abi parameters to pip download. These allow utilities and advanced users to gather distributions for interpreters other than the one pip is being run on. (PR #3760) Skip scanning virtual environments even when venv/bin/python is a dangling symlink. Added pip completion support for fish shell. Fix problems on Windows on Python 2 when username or hostname contains non-ASCII characters (#3463, PR #3970, PR #4000). Use git fetch --tags to fetch tags in addition to everything else that is normally fetched; this is necessary in case a git requirement url points to a tag or commit that is not on a branch (PR #3791) Normalize package names before using in pip show (#3976) Raise when Requires-Python do not match the running version and add --ignore-requires-python option as escape hatch (PR #3846). Report the correct installed version when performing an upgrade in some corner cases (#2382) Add -i shorthand for --index flag in pip search Do not optionally load C dependencies in requests (#1840, #2930, #3024) Strip authentication from SVN url prior to passing it into svn (PR #3697, #3209). Also install in platlib with --target option (PR #3694, #3682). Restore the ability to use inline comments in requirements files passed to pip freeze (#3680). Deprecate --default-vcs option (#4052).
2016-11-06 01:32:12 +01:00
${PYSITELIB}/pip/_vendor/html5lib/treeadapters/genshi.py
${PYSITELIB}/pip/_vendor/html5lib/treeadapters/genshi.pyc
${PYSITELIB}/pip/_vendor/html5lib/treeadapters/genshi.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/html5lib/treeadapters/sax.py
${PYSITELIB}/pip/_vendor/html5lib/treeadapters/sax.pyc
${PYSITELIB}/pip/_vendor/html5lib/treeadapters/sax.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/html5lib/treebuilders/__init__.py
${PYSITELIB}/pip/_vendor/html5lib/treebuilders/__init__.pyc
${PYSITELIB}/pip/_vendor/html5lib/treebuilders/__init__.pyo
Update to 9.0.0 Upstream changes: 9.0.0 (2016-11-02) BACKWARD INCOMPATIBLE Remove the attempted autodetection of requirement names from URLs, URLs must include a name via #egg=. DEPRECATION pip install --egg have been deprecated and will be removed in the future. This "feature" has a long list of drawbacks where it breaks almost all of pip's other features in subtle and hard to diagnose ways. Add a pip check command to check installed packages dependencies (PR #3750). Added option to allow user to abort pip operation if file/directory exists Added Appveyor CI Uninstall existing packages when performing an editable installation of the same packages (#1548). Pip show is less verbose by default. --verbose prints multiline fields. (PR #3858). Added optional column formatting to pip list (#3651). Add --not-required option to pip list to list packages that are not dependencies of other packages. Fix the build on systems with symlinked /tmp directory for custom builds such as numpy (PR #3701). Fix regression in pip freeze: when there is more than one git remote, priority is given to the remote named origin (PR #3708, #3616). Fix crash when calling pip freeze with invalid requirement installed (PR #3704, #3681). Support multiple --requirement files in pip freeze (PR #3703). Implementation of pep-503 data-requires-python. When this field is present for a release link, pip will ignore the download when installing to a Python version that doesn't satisfy the requirement. Pip wheel now works on editable packages too (it was only working on editable dependencies before); this allows running pip wheel on the result of pip freeze in presence of editable requirements (PR #3695, #3291). Load credentials from .netrc files (PR #3715, #3569). Add --platform, --python-version, --implementation and --abi parameters to pip download. These allow utilities and advanced users to gather distributions for interpreters other than the one pip is being run on. (PR #3760) Skip scanning virtual environments even when venv/bin/python is a dangling symlink. Added pip completion support for fish shell. Fix problems on Windows on Python 2 when username or hostname contains non-ASCII characters (#3463, PR #3970, PR #4000). Use git fetch --tags to fetch tags in addition to everything else that is normally fetched; this is necessary in case a git requirement url points to a tag or commit that is not on a branch (PR #3791) Normalize package names before using in pip show (#3976) Raise when Requires-Python do not match the running version and add --ignore-requires-python option as escape hatch (PR #3846). Report the correct installed version when performing an upgrade in some corner cases (#2382) Add -i shorthand for --index flag in pip search Do not optionally load C dependencies in requests (#1840, #2930, #3024) Strip authentication from SVN url prior to passing it into svn (PR #3697, #3209). Also install in platlib with --target option (PR #3694, #3682). Restore the ability to use inline comments in requirements files passed to pip freeze (#3680). Deprecate --default-vcs option (#4052).
2016-11-06 01:32:12 +01:00
${PYSITELIB}/pip/_vendor/html5lib/treebuilders/base.py
${PYSITELIB}/pip/_vendor/html5lib/treebuilders/base.pyc
${PYSITELIB}/pip/_vendor/html5lib/treebuilders/base.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/html5lib/treebuilders/dom.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/html5lib/treebuilders/dom.pyc
${PYSITELIB}/pip/_vendor/html5lib/treebuilders/dom.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/html5lib/treebuilders/etree.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/html5lib/treebuilders/etree.pyc
${PYSITELIB}/pip/_vendor/html5lib/treebuilders/etree.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/html5lib/treebuilders/etree_lxml.py
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
2014-01-16 03:40:15 +01:00
${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
Update to 9.0.0 Upstream changes: 9.0.0 (2016-11-02) BACKWARD INCOMPATIBLE Remove the attempted autodetection of requirement names from URLs, URLs must include a name via #egg=. DEPRECATION pip install --egg have been deprecated and will be removed in the future. This "feature" has a long list of drawbacks where it breaks almost all of pip's other features in subtle and hard to diagnose ways. Add a pip check command to check installed packages dependencies (PR #3750). Added option to allow user to abort pip operation if file/directory exists Added Appveyor CI Uninstall existing packages when performing an editable installation of the same packages (#1548). Pip show is less verbose by default. --verbose prints multiline fields. (PR #3858). Added optional column formatting to pip list (#3651). Add --not-required option to pip list to list packages that are not dependencies of other packages. Fix the build on systems with symlinked /tmp directory for custom builds such as numpy (PR #3701). Fix regression in pip freeze: when there is more than one git remote, priority is given to the remote named origin (PR #3708, #3616). Fix crash when calling pip freeze with invalid requirement installed (PR #3704, #3681). Support multiple --requirement files in pip freeze (PR #3703). Implementation of pep-503 data-requires-python. When this field is present for a release link, pip will ignore the download when installing to a Python version that doesn't satisfy the requirement. Pip wheel now works on editable packages too (it was only working on editable dependencies before); this allows running pip wheel on the result of pip freeze in presence of editable requirements (PR #3695, #3291). Load credentials from .netrc files (PR #3715, #3569). Add --platform, --python-version, --implementation and --abi parameters to pip download. These allow utilities and advanced users to gather distributions for interpreters other than the one pip is being run on. (PR #3760) Skip scanning virtual environments even when venv/bin/python is a dangling symlink. Added pip completion support for fish shell. Fix problems on Windows on Python 2 when username or hostname contains non-ASCII characters (#3463, PR #3970, PR #4000). Use git fetch --tags to fetch tags in addition to everything else that is normally fetched; this is necessary in case a git requirement url points to a tag or commit that is not on a branch (PR #3791) Normalize package names before using in pip show (#3976) Raise when Requires-Python do not match the running version and add --ignore-requires-python option as escape hatch (PR #3846). Report the correct installed version when performing an upgrade in some corner cases (#2382) Add -i shorthand for --index flag in pip search Do not optionally load C dependencies in requests (#1840, #2930, #3024) Strip authentication from SVN url prior to passing it into svn (PR #3697, #3209). Also install in platlib with --target option (PR #3694, #3682). Restore the ability to use inline comments in requirements files passed to pip freeze (#3680). Deprecate --default-vcs option (#4052).
2016-11-06 01:32:12 +01:00
${PYSITELIB}/pip/_vendor/html5lib/treewalkers/base.py
${PYSITELIB}/pip/_vendor/html5lib/treewalkers/base.pyc
${PYSITELIB}/pip/_vendor/html5lib/treewalkers/base.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/html5lib/treewalkers/dom.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/html5lib/treewalkers/dom.pyc
${PYSITELIB}/pip/_vendor/html5lib/treewalkers/dom.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/html5lib/treewalkers/etree.py
${PYSITELIB}/pip/_vendor/html5lib/treewalkers/etree.pyc
${PYSITELIB}/pip/_vendor/html5lib/treewalkers/etree.pyo
Update to 9.0.0 Upstream changes: 9.0.0 (2016-11-02) BACKWARD INCOMPATIBLE Remove the attempted autodetection of requirement names from URLs, URLs must include a name via #egg=. DEPRECATION pip install --egg have been deprecated and will be removed in the future. This "feature" has a long list of drawbacks where it breaks almost all of pip's other features in subtle and hard to diagnose ways. Add a pip check command to check installed packages dependencies (PR #3750). Added option to allow user to abort pip operation if file/directory exists Added Appveyor CI Uninstall existing packages when performing an editable installation of the same packages (#1548). Pip show is less verbose by default. --verbose prints multiline fields. (PR #3858). Added optional column formatting to pip list (#3651). Add --not-required option to pip list to list packages that are not dependencies of other packages. Fix the build on systems with symlinked /tmp directory for custom builds such as numpy (PR #3701). Fix regression in pip freeze: when there is more than one git remote, priority is given to the remote named origin (PR #3708, #3616). Fix crash when calling pip freeze with invalid requirement installed (PR #3704, #3681). Support multiple --requirement files in pip freeze (PR #3703). Implementation of pep-503 data-requires-python. When this field is present for a release link, pip will ignore the download when installing to a Python version that doesn't satisfy the requirement. Pip wheel now works on editable packages too (it was only working on editable dependencies before); this allows running pip wheel on the result of pip freeze in presence of editable requirements (PR #3695, #3291). Load credentials from .netrc files (PR #3715, #3569). Add --platform, --python-version, --implementation and --abi parameters to pip download. These allow utilities and advanced users to gather distributions for interpreters other than the one pip is being run on. (PR #3760) Skip scanning virtual environments even when venv/bin/python is a dangling symlink. Added pip completion support for fish shell. Fix problems on Windows on Python 2 when username or hostname contains non-ASCII characters (#3463, PR #3970, PR #4000). Use git fetch --tags to fetch tags in addition to everything else that is normally fetched; this is necessary in case a git requirement url points to a tag or commit that is not on a branch (PR #3791) Normalize package names before using in pip show (#3976) Raise when Requires-Python do not match the running version and add --ignore-requires-python option as escape hatch (PR #3846). Report the correct installed version when performing an upgrade in some corner cases (#2382) Add -i shorthand for --index flag in pip search Do not optionally load C dependencies in requests (#1840, #2930, #3024) Strip authentication from SVN url prior to passing it into svn (PR #3697, #3209). Also install in platlib with --target option (PR #3694, #3682). Restore the ability to use inline comments in requirements files passed to pip freeze (#3680). Deprecate --default-vcs option (#4052).
2016-11-06 01:32:12 +01:00
${PYSITELIB}/pip/_vendor/html5lib/treewalkers/etree_lxml.py
${PYSITELIB}/pip/_vendor/html5lib/treewalkers/etree_lxml.pyc
${PYSITELIB}/pip/_vendor/html5lib/treewalkers/etree_lxml.pyo
${PYSITELIB}/pip/_vendor/html5lib/treewalkers/genshi.py
${PYSITELIB}/pip/_vendor/html5lib/treewalkers/genshi.pyc
${PYSITELIB}/pip/_vendor/html5lib/treewalkers/genshi.pyo
${PYSITELIB}/pip/_vendor/idna/__init__.py
${PYSITELIB}/pip/_vendor/idna/__init__.pyc
${PYSITELIB}/pip/_vendor/idna/__init__.pyo
${PYSITELIB}/pip/_vendor/idna/codec.py
${PYSITELIB}/pip/_vendor/idna/codec.pyc
${PYSITELIB}/pip/_vendor/idna/codec.pyo
${PYSITELIB}/pip/_vendor/idna/compat.py
${PYSITELIB}/pip/_vendor/idna/compat.pyc
${PYSITELIB}/pip/_vendor/idna/compat.pyo
${PYSITELIB}/pip/_vendor/idna/core.py
${PYSITELIB}/pip/_vendor/idna/core.pyc
${PYSITELIB}/pip/_vendor/idna/core.pyo
${PYSITELIB}/pip/_vendor/idna/idnadata.py
${PYSITELIB}/pip/_vendor/idna/idnadata.pyc
${PYSITELIB}/pip/_vendor/idna/idnadata.pyo
${PYSITELIB}/pip/_vendor/idna/intranges.py
${PYSITELIB}/pip/_vendor/idna/intranges.pyc
${PYSITELIB}/pip/_vendor/idna/intranges.pyo
${PYSITELIB}/pip/_vendor/idna/package_data.py
${PYSITELIB}/pip/_vendor/idna/package_data.pyc
${PYSITELIB}/pip/_vendor/idna/package_data.pyo
${PYSITELIB}/pip/_vendor/idna/uts46data.py
${PYSITELIB}/pip/_vendor/idna/uts46data.pyc
${PYSITELIB}/pip/_vendor/idna/uts46data.pyo
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/ipaddress.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/ipaddress.pyc
${PYSITELIB}/pip/_vendor/ipaddress.pyo
${PYSITELIB}/pip/_vendor/msgpack/__init__.py
${PYSITELIB}/pip/_vendor/msgpack/__init__.pyc
${PYSITELIB}/pip/_vendor/msgpack/__init__.pyo
${PYSITELIB}/pip/_vendor/msgpack/_version.py
${PYSITELIB}/pip/_vendor/msgpack/_version.pyc
${PYSITELIB}/pip/_vendor/msgpack/_version.pyo
${PYSITELIB}/pip/_vendor/msgpack/exceptions.py
${PYSITELIB}/pip/_vendor/msgpack/exceptions.pyc
${PYSITELIB}/pip/_vendor/msgpack/exceptions.pyo
${PYSITELIB}/pip/_vendor/msgpack/fallback.py
${PYSITELIB}/pip/_vendor/msgpack/fallback.pyc
${PYSITELIB}/pip/_vendor/msgpack/fallback.pyo
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/packaging/__about__.py
${PYSITELIB}/pip/_vendor/packaging/__about__.pyc
${PYSITELIB}/pip/_vendor/packaging/__about__.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/packaging/__init__.py
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/packaging/__init__.pyc
${PYSITELIB}/pip/_vendor/packaging/__init__.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/packaging/_compat.py
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/packaging/_compat.pyc
${PYSITELIB}/pip/_vendor/packaging/_compat.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/packaging/_structures.py
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/packaging/_structures.pyc
${PYSITELIB}/pip/_vendor/packaging/_structures.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/packaging/markers.py
${PYSITELIB}/pip/_vendor/packaging/markers.pyc
${PYSITELIB}/pip/_vendor/packaging/markers.pyo
${PYSITELIB}/pip/_vendor/packaging/requirements.py
${PYSITELIB}/pip/_vendor/packaging/requirements.pyc
${PYSITELIB}/pip/_vendor/packaging/requirements.pyo
${PYSITELIB}/pip/_vendor/packaging/specifiers.py
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/packaging/specifiers.pyc
${PYSITELIB}/pip/_vendor/packaging/specifiers.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_vendor/packaging/tags.py
${PYSITELIB}/pip/_vendor/packaging/tags.pyc
${PYSITELIB}/pip/_vendor/packaging/tags.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/packaging/utils.py
${PYSITELIB}/pip/_vendor/packaging/utils.pyc
${PYSITELIB}/pip/_vendor/packaging/utils.pyo
${PYSITELIB}/pip/_vendor/packaging/version.py
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/packaging/version.pyc
${PYSITELIB}/pip/_vendor/packaging/version.pyo
${PYSITELIB}/pip/_vendor/pep517/__init__.py
${PYSITELIB}/pip/_vendor/pep517/__init__.pyc
${PYSITELIB}/pip/_vendor/pep517/__init__.pyo
${PYSITELIB}/pip/_vendor/pep517/_in_process.py
${PYSITELIB}/pip/_vendor/pep517/_in_process.pyc
${PYSITELIB}/pip/_vendor/pep517/_in_process.pyo
py-pip: updated to 19.0.1 19.0.1: Bug Fixes - Fix a crash when using --no-cache-dir with PEP 517 distributions 19.0: Deprecations and Removals - Deprecate support for Python 3.4 - Start printing a warning for Python 2.7 to warn of impending Python 2.7 End-of-life and prompt users to start migrating to Python 3. - Remove the deprecated --process-dependency-links option. - Remove the deprecated SVN editable detection based on dependency links during freeze. Features - Implement PEP 517 (allow projects to specify a build backend via pyproject.toml). - Implement manylinux2010 platform tag support. manylinux2010 is the successor to manylinux1. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. - Improve build isolation: handle .pth files, so namespace packages are correctly supported under Python 3.2 and earlier. - Include the package name in a freeze warning if the package is not installed. - Warn when dropping an --[extra-]index-url value that points to an existing local directory. - Prefix pip's --log file lines with their timestamp. Bug Fixes - Avoid creating excessively long temporary paths when uninstalling packages. - Redact the password from the URL in various log messages. - Avoid creating excessively long temporary paths when uninstalling packages. - Avoid printing a stack trace when given an invalid requirement. - Present 401 warning if username/password do not work for URL - Handle requests.exceptions.RetryError raised in PackageFinder that was causing pip to fail silently when some indexes were unreachable. - Handle a broken stdout pipe more gracefully (e.g. when running pip list | head). - Fix crash from setting PIP_NO_CACHE_DIR=yes. - Fix crash from unparseable requirements when checking installed packages. - Fix content type detection if a directory named like an archive is used as a package source. - Fix listing of outdated packages that are not dependencies of installed packages in pip list --outdated --not-required - Fix sorting TypeError in move_wheel_files() when installing some packages. - Fix support for invoking pip using python src/pip .... - Greatly reduce memory usage when installing wheels containing large files. - Editable non-VCS installs now freeze as editable. - Editable Git installs without a remote now freeze as editable. - Canonicalize sdist file names so they can be matched to a canonicalized package name passed to pip install. - Properly decode special characters in SVN URL credentials. - Make PIP_NO_CACHE_DIR disable the cache also for truthy values like "true", "yes", "1", etc. Vendored Libraries - Include license text of vendored 3rd party libraries. - Update certifi to 2018.11.29 - Update colorama to 0.4.1 - Update distlib to 0.2.8 - Update idna to 2.8 - Update packaging to 19.0 - Update pep517 to 0.5.0 - Update pkg_resources to 40.6.3 (via setuptools) - Update pyparsing to 2.3.1 - Update pytoml to 0.1.20 - Update requests to 2.21.0 - Update six to 1.12.0 - Update urllib3 to 1.24.1 Improved Documentation - Include the Vendoring Policy in the documentation. - Add instructions for running pip from source to Development documentation. - Remove references to removed #egg=<name>-<version> functionality - Fix omission of command name in HTML usage documentation
2019-01-24 09:29:39 +01:00
${PYSITELIB}/pip/_vendor/pep517/build.py
${PYSITELIB}/pip/_vendor/pep517/build.pyc
${PYSITELIB}/pip/_vendor/pep517/build.pyo
${PYSITELIB}/pip/_vendor/pep517/check.py
${PYSITELIB}/pip/_vendor/pep517/check.pyc
${PYSITELIB}/pip/_vendor/pep517/check.pyo
${PYSITELIB}/pip/_vendor/pep517/colorlog.py
${PYSITELIB}/pip/_vendor/pep517/colorlog.pyc
${PYSITELIB}/pip/_vendor/pep517/colorlog.pyo
${PYSITELIB}/pip/_vendor/pep517/compat.py
${PYSITELIB}/pip/_vendor/pep517/compat.pyc
${PYSITELIB}/pip/_vendor/pep517/compat.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_vendor/pep517/dirtools.py
${PYSITELIB}/pip/_vendor/pep517/dirtools.pyc
${PYSITELIB}/pip/_vendor/pep517/dirtools.pyo
${PYSITELIB}/pip/_vendor/pep517/envbuild.py
${PYSITELIB}/pip/_vendor/pep517/envbuild.pyc
${PYSITELIB}/pip/_vendor/pep517/envbuild.pyo
py-pip: updated to 19.3 19.3: Deprecations and Removals - Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories. Users relying on this can get the original behavior by prefixing their URL with svn+ (which is backwards-compatible). - Remove the deprecated --venv option from pip config. Features - Print a better error message when --no-binary or --only-binary is given an argument starting with -. - Make pip show warn about packages not found. - Support including a port number in --trusted-host for both HTTP and HTTPS. - Redact single-part login credentials from URLs in log messages. - Implement manylinux2014 platform tag support. manylinux2014 is the successor to manylinux2010. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. The manylinux2014 platform tag definition can be found in PEP599 <https://www.python.org/dev/peps/pep-0599/>_. Bug Fixes - Abort installation if any archive contains a file which would be placed outside the extraction location. - pip's CLI completion code no longer prints a Traceback if it is interrupted. - Correct inconsistency related to the hg+file scheme. - Fix rmtree_errorhandler to skip non-existing directories. - Ignore errors copying socket files for local source installs (in Python 3). - Fix requirement line parser to correctly handle PEP 440 requirements with a URL pointing to an archive file. - The pip-wheel-metadata directory does not need to persist between invocations of pip, use a temporary directory instead of the current setup.py directory. - Fix --trusted-host processing under HTTPS to trust any port number used with the host. - Switch to new distlib wheel script template. This should be functionally equivalent for end users. - Skip copying .tox and .nox directories to temporary build directories - Fix handling of tokens (single part credentials) in URLs. - Fix a regression that caused ~ expansion not to occur in --find-links paths. - Fix bypassed pip upgrade warning on Windows. - Fix 'm' flag erroneously being appended to ABI tag in Python 3.8 on platforms that do not provide SOABI - Hide security-sensitive strings like passwords in log messages related to version control system (aka VCS) command invocations. - Correctly uninstall symlinks that were installed in a virtualenv, by tools such as flit install --symlink. - Don't fail installation using pip.exe on Windows when pip wouldn't be upgraded. - Use canonical distribution names when computing Required-By in pip show. - Don't use hardlinks for locking selfcheck state file. - Ignore "require_virtualenv" in pip config - Fix pip freeze not showing correct entry for mercurial packages that use subdirectories. - Fix a crash when sys.stdin is set to None, such as on AWS Lambda. Vendored Libraries - Upgrade certifi to 2019.9.11 - Add contextlib2 0.6.0 as a vendored dependency. - Remove Lockfile as a vendored dependency. - Upgrade msgpack to 0.6.2 - Upgrade packaging to 19.2 - Upgrade pep517 to 0.7.0 - Upgrade pyparsing to 2.4.2 - Upgrade pytoml to 0.1.21 - Upgrade setuptools to 41.4.0 - Upgrade urllib3 to 1.25.6 Improved Documentation - Document caveats for UNC paths in uninstall and add .pth unit tests. - Add architectural overview documentation. - Document that --ignore-installed is dangerous.
2019-10-15 19:16:54 +02:00
${PYSITELIB}/pip/_vendor/pep517/meta.py
${PYSITELIB}/pip/_vendor/pep517/meta.pyc
${PYSITELIB}/pip/_vendor/pep517/meta.pyo
${PYSITELIB}/pip/_vendor/pep517/wrappers.py
${PYSITELIB}/pip/_vendor/pep517/wrappers.pyc
${PYSITELIB}/pip/_vendor/pep517/wrappers.pyo
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/pkg_resources/__init__.py
${PYSITELIB}/pip/_vendor/pkg_resources/__init__.pyc
${PYSITELIB}/pip/_vendor/pkg_resources/__init__.pyo
${PYSITELIB}/pip/_vendor/pkg_resources/py31compat.py
${PYSITELIB}/pip/_vendor/pkg_resources/py31compat.pyc
${PYSITELIB}/pip/_vendor/pkg_resources/py31compat.pyo
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/progress/__init__.py
${PYSITELIB}/pip/_vendor/progress/__init__.pyc
${PYSITELIB}/pip/_vendor/progress/__init__.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/progress/bar.py
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/progress/bar.pyc
${PYSITELIB}/pip/_vendor/progress/bar.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/progress/counter.py
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/progress/counter.pyc
${PYSITELIB}/pip/_vendor/progress/counter.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/progress/spinner.py
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/progress/spinner.pyc
${PYSITELIB}/pip/_vendor/progress/spinner.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/pyparsing.py
${PYSITELIB}/pip/_vendor/pyparsing.pyc
${PYSITELIB}/pip/_vendor/pyparsing.pyo
${PYSITELIB}/pip/_vendor/pytoml/__init__.py
${PYSITELIB}/pip/_vendor/pytoml/__init__.pyc
${PYSITELIB}/pip/_vendor/pytoml/__init__.pyo
${PYSITELIB}/pip/_vendor/pytoml/core.py
${PYSITELIB}/pip/_vendor/pytoml/core.pyc
${PYSITELIB}/pip/_vendor/pytoml/core.pyo
${PYSITELIB}/pip/_vendor/pytoml/parser.py
${PYSITELIB}/pip/_vendor/pytoml/parser.pyc
${PYSITELIB}/pip/_vendor/pytoml/parser.pyo
py-pip: updated to 19.0.1 19.0.1: Bug Fixes - Fix a crash when using --no-cache-dir with PEP 517 distributions 19.0: Deprecations and Removals - Deprecate support for Python 3.4 - Start printing a warning for Python 2.7 to warn of impending Python 2.7 End-of-life and prompt users to start migrating to Python 3. - Remove the deprecated --process-dependency-links option. - Remove the deprecated SVN editable detection based on dependency links during freeze. Features - Implement PEP 517 (allow projects to specify a build backend via pyproject.toml). - Implement manylinux2010 platform tag support. manylinux2010 is the successor to manylinux1. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. - Improve build isolation: handle .pth files, so namespace packages are correctly supported under Python 3.2 and earlier. - Include the package name in a freeze warning if the package is not installed. - Warn when dropping an --[extra-]index-url value that points to an existing local directory. - Prefix pip's --log file lines with their timestamp. Bug Fixes - Avoid creating excessively long temporary paths when uninstalling packages. - Redact the password from the URL in various log messages. - Avoid creating excessively long temporary paths when uninstalling packages. - Avoid printing a stack trace when given an invalid requirement. - Present 401 warning if username/password do not work for URL - Handle requests.exceptions.RetryError raised in PackageFinder that was causing pip to fail silently when some indexes were unreachable. - Handle a broken stdout pipe more gracefully (e.g. when running pip list | head). - Fix crash from setting PIP_NO_CACHE_DIR=yes. - Fix crash from unparseable requirements when checking installed packages. - Fix content type detection if a directory named like an archive is used as a package source. - Fix listing of outdated packages that are not dependencies of installed packages in pip list --outdated --not-required - Fix sorting TypeError in move_wheel_files() when installing some packages. - Fix support for invoking pip using python src/pip .... - Greatly reduce memory usage when installing wheels containing large files. - Editable non-VCS installs now freeze as editable. - Editable Git installs without a remote now freeze as editable. - Canonicalize sdist file names so they can be matched to a canonicalized package name passed to pip install. - Properly decode special characters in SVN URL credentials. - Make PIP_NO_CACHE_DIR disable the cache also for truthy values like "true", "yes", "1", etc. Vendored Libraries - Include license text of vendored 3rd party libraries. - Update certifi to 2018.11.29 - Update colorama to 0.4.1 - Update distlib to 0.2.8 - Update idna to 2.8 - Update packaging to 19.0 - Update pep517 to 0.5.0 - Update pkg_resources to 40.6.3 (via setuptools) - Update pyparsing to 2.3.1 - Update pytoml to 0.1.20 - Update requests to 2.21.0 - Update six to 1.12.0 - Update urllib3 to 1.24.1 Improved Documentation - Include the Vendoring Policy in the documentation. - Add instructions for running pip from source to Development documentation. - Remove references to removed #egg=<name>-<version> functionality - Fix omission of command name in HTML usage documentation
2019-01-24 09:29:39 +01:00
${PYSITELIB}/pip/_vendor/pytoml/test.py
${PYSITELIB}/pip/_vendor/pytoml/test.pyc
${PYSITELIB}/pip/_vendor/pytoml/test.pyo
${PYSITELIB}/pip/_vendor/pytoml/utils.py
${PYSITELIB}/pip/_vendor/pytoml/utils.pyc
${PYSITELIB}/pip/_vendor/pytoml/utils.pyo
${PYSITELIB}/pip/_vendor/pytoml/writer.py
${PYSITELIB}/pip/_vendor/pytoml/writer.pyc
${PYSITELIB}/pip/_vendor/pytoml/writer.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/requests/__init__.py
${PYSITELIB}/pip/_vendor/requests/__init__.pyc
${PYSITELIB}/pip/_vendor/requests/__init__.pyo
${PYSITELIB}/pip/_vendor/requests/__version__.py
${PYSITELIB}/pip/_vendor/requests/__version__.pyc
${PYSITELIB}/pip/_vendor/requests/__version__.pyo
${PYSITELIB}/pip/_vendor/requests/_internal_utils.py
${PYSITELIB}/pip/_vendor/requests/_internal_utils.pyc
${PYSITELIB}/pip/_vendor/requests/_internal_utils.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/requests/adapters.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/requests/adapters.pyc
${PYSITELIB}/pip/_vendor/requests/adapters.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/requests/api.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/requests/api.pyc
${PYSITELIB}/pip/_vendor/requests/api.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/requests/auth.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/requests/auth.pyc
${PYSITELIB}/pip/_vendor/requests/auth.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/requests/certs.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/requests/certs.pyc
${PYSITELIB}/pip/_vendor/requests/certs.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/requests/compat.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/requests/compat.pyc
${PYSITELIB}/pip/_vendor/requests/compat.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/requests/cookies.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/requests/cookies.pyc
${PYSITELIB}/pip/_vendor/requests/cookies.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/requests/exceptions.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/requests/exceptions.pyc
${PYSITELIB}/pip/_vendor/requests/exceptions.pyo
${PYSITELIB}/pip/_vendor/requests/help.py
${PYSITELIB}/pip/_vendor/requests/help.pyc
${PYSITELIB}/pip/_vendor/requests/help.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/requests/hooks.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/requests/hooks.pyc
${PYSITELIB}/pip/_vendor/requests/hooks.pyo
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/requests/models.py
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/requests/models.pyc
${PYSITELIB}/pip/_vendor/requests/models.pyo
${PYSITELIB}/pip/_vendor/requests/packages.py
${PYSITELIB}/pip/_vendor/requests/packages.pyc
${PYSITELIB}/pip/_vendor/requests/packages.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/requests/sessions.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/requests/sessions.pyc
${PYSITELIB}/pip/_vendor/requests/sessions.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/requests/status_codes.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/requests/status_codes.pyc
${PYSITELIB}/pip/_vendor/requests/status_codes.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/requests/structures.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/requests/structures.pyc
${PYSITELIB}/pip/_vendor/requests/structures.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/requests/utils.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/requests/utils.pyc
${PYSITELIB}/pip/_vendor/requests/utils.pyo
Update to 7.1.2. Previous version was having some difficulty with certain TLS connections. Issue is resolved in this version. Release Notes 7.1.2 (2015-08-22) Don't raise an error if pip is not installed when checking for the latest pip version. 7.1.1 (2015-08-20) Check that the wheel cache directory is writable before we attempt to write cached files to them. Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip. Added debug logging when using a cached wheel. Respect platlib by default on platforms that have it separated from purlib. Upgrade packaging to 15.3. Normalize post-release spellings for rev/r prefixes. Upgrade distlib to 0.2.1. Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled. Ensured that the executable written to shebangs is normcased. Changed ScriptMaker to work better under Jython. Upgrade ipaddress to 1.0.13. 7.1.0 (2015-06-30) Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731. Accept --no-binary and --only-binary via pip.conf. #2867. Allow --allow-all-external within a requirements file. Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file. Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5. Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows. Allow ~ to be expanded within a cache directory in all situations. 7.0.3 (2015-06-01) Fixed a regression where --no-cache-dir would raise an exception, fixes #2855. 7.0.2 (2015-06-01) BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841) BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841) Expand ~ in the cache directory when caching wheels, fixes #2816. Use python -m pip instead of pip when recommending an upgrade command to Windows users. 7.0.1 (2015-05-22) Don't build and cache wheels for non-editable installations from VCSs. Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0. 7.0.0 (2015-05-21) BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options. BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands. BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options. BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option. BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment. BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7' Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497 Support --install-option and --global-option per requirement in requirement files (PR #2537) Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618) Allow fine grained control over the use of wheels and source builds. (PR #2699) --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699) The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677 Improve logging when a requirement marker doesn't match your environment (PR #2735) Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767). Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766). Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761). Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785). Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796). Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798). 6.1.1 (2015-04-07) No longer ignore dependencies which have been added to the standard library, instead continue to install them. 6.1.0 (2015-04-07) Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538) Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar. Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487) Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296. Display format of latest package when using pip list --outdated. (PR #2475) Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467) Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441). Display a warning when an undefined extra has been requested. (PR #2142) Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535) Don't follow symlinks when uninstalling files (PR #2552) Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595) Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616) Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602) Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561) Output warnings and errors to stderr instead of stdout. (PR #2543) Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396) Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421) 6.0.8 (2015-02-04) Fix an issue where the --download flag would cause pip to no longer use randomized build directories. Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!). Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether. Retry deleting directories incase a process like an antivirus is holding the directory open temporarily. Fix an issue where pip would hide the cursor on Windows but would not reshow it. 6.0.7 (2015-01-28) Fix a regression where Numpy requires a build path without symlinks to properly build. Fix a broken log message when running pip wheel without a requirement. Don't mask network errors while downloading the file as a hash failure. Properly create the state file for the pip version check so it only happens once a week. Fix an issue where switching between Python 3 and Python 2 would evict cached items. Fix a regression where pip would be unable to successfully uninstall a project without a normalized version. 6.0.6 (2015-01-03) Continue the regression fix from 6.0.5 which was not a complete fix. 6.0.5 (2015-01-03) Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function. 6.0.4 (2015-01-03) Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar. Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting. Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable. Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer. Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag. Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*. Document the default cache directories for each operating system. Create the cache directory when the pip version check needs to save to it instead of silently logging an error. Fix a regression where the -q flag would not properly suppress the display of the progress bars. 6.0.3 (2014-12-23) Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible. Make --no-index imply --disable-pip-version-check. 6.0.2 (2014-12-23) Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade. Fix left over merge conflict markers in the documentation. Document the backwards incompatible PEP 440 change in the 6.0.0 changelog. 6.0.1 (2014-12-22) Fix executable file permissions for Wheel files when using the distutils scripts option. Fix a confusing error message when an exceptions was raised at certain points in pip's execution. Fix the missing list of versions when a version cannot be found that matches the specifiers. Add a warning about the possibly problematic use of > when the given specifier doesn't match anything. Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them. 6.0 (2014-12-22) PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped. BACKWARD INCOMPATIBLE Dropped support for Python 3.1. BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806) BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933) BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability. BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before. DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion. DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo). Allow the new --trusted-host flag to also disable TLS verification for a particular hostname. Added a --user flag to pip freeze and pip list to check the user site directory only. Fixed #1873. Silence byte compile errors when installation succeed. Added a virtualenv-specific configuration file. (PR #1364) Added site-wide configuation files. (PR #1978) Added an automatic check to warn if there is an updated version of pip available (PR #2049). wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369) Fixed #1424. Add --client-cert option for SSL client certificates. Fixed #1484. pip show --files was broken for wheel installs. (PR #1635) Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642) Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688) Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725) Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723) Fixed #1769. pip wheel now returns an error code if any wheels fail to build. Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements. Allow the use of --no-use-wheel within a requirements file. (PR #1859) Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866) Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868) Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869) Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896) Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902) Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926) Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967) Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021) Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838) Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076) Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991) Fixed #1433. Support environment markers in requirements.txt files. (PR #2134) Automatically retry failed HTTP requests by default. (PR #1444, PR #2147) Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874) Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178) Fixed #2031 - Respect sys.executable on OSX when installing from Wheels. Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183). Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-02 01:11:41 +02:00
${PYSITELIB}/pip/_vendor/retrying.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/retrying.pyc
${PYSITELIB}/pip/_vendor/retrying.pyo
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
2014-01-16 03:40:15 +01:00
${PYSITELIB}/pip/_vendor/six.py
update to py-pip-8.1.2 CHANGES since previous pkgsrc version: * Don't attempt to wrap search results for extremely narrow terminal windows (:issue:`3655`). **8.1.1 (2016-03-17)** * Fix regression with non-ascii requirement files on Python 2 and add support for encoding headers in requirement files (:issue:`3548`, :pull:`3547`). **8.1.0 (2016-03-05)** * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. **8.0.3 (2016-02-25)** * Make ``install --quiet`` really quiet. See :issue:`3418`. * Fix a bug when removing packages in python 3: disable INI-style parsing of the entry_point.txt file to allow entry point names with colons (:pull:`3434`) * Normalize generated script files path in RECORD files. (:pull:`3448`) * Fix bug introduced in 8.0.0 where subcommand output was not shown, even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) * Upgrade distlib to 0.2.2 (fix :issue:`3467`): * Improved support for Jython when quoting executables in output scripts. * Add a `--all` option to `pip freeze` to include usually skipped package (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. **8.0.2 (2016-01-21)** * Stop attempting to trust the system CA trust store because it's extremely common for them to be broken, often in incompatible ways. See :pull:`3416`. **8.0.1 (2016-01-21)** * Detect CAPaths in addition to CAFiles on platforms that provide them. * Installing argparse or wsgiref will no longer warn or error - pip will allow the installation even though it may be useless (since the installed thing will be shadowed by the standard library). * Upgrading a distutils installed item that is installed outside of a virtual environment, while inside of a virtual environment will no longer warn or error. * Fix a bug where pre-releases were showing up in ``pip list --outdated`` without the ``--pre`` flag. * Switch the SOABI emulation from using RuntimeWarnings to debug logging. * Rollback the removal of the ability to uninstall distutils installed items until a future date. **8.0.0 (2016-01-19)** * **BACKWARD INCOMPATIBLE** Drop support for Python 3.2. * **BACKWARD INCOMPATIBLE** Remove the ability to find any files other than the ones directly linked from the index or find-links pages. * **BACKWARD INCOMPATIBLE** Remove the ``--download-cache`` which had been deprecated and no-op'd in 6.0. * **BACKWARD INCOMPATIBLE** Remove the ``--log-explicit-levels`` which had been deprecated in 6.0. * **BACKWARD INCOMPATIBLE** Change pip wheel --wheel-dir default path from <cwd>/wheelhouse to <cwd>. * Deprecate and no-op the ``--allow-external``, ``--allow-all-external``, and ``--allow-unverified`` functionality that was added as part of PEP 438. With changes made to the repository protocol made in PEP 470, these options are no longer functional. * Allow ``--trusted-host`` within a requirements file. :issue:`2822`. * Allow ``--process-dependency-links`` within a requirements file. :issue:`1274`. * Allow ``--pre`` within a requirements file. :issue:`1273`. * Allow repository URLs with secure transports to count as trusted. (E.g., "git+ssh" is okay.) :issue:`2811`. * Implement a top-level ``pip download`` command and deprecate ``pip install --download``. * Fixed :issue:`3141`, when uninstalling, look for the case of paths containing symlinked directories (:pull:`3154`) * When installing, if building a wheel fails, clear up the build directory before falling back to a source install. :issue:`3047`. * Fix user directory expansion when ``HOME=/``. Workaround for Python bug http://bugs.python.org/issue14768, reported in :issue:`2996`. * Fixed :issue:`3009`, correct reporting of requirements file line numbers (:pull:`3125`) * Fixed :issue:`1062`, Exception(IOError) for ``pip freeze`` and ``pip list`` commands with subversion >= 1.7. (:pull:`3346`) * Provide a spinner showing that progress is happening when installing or building a package via ``setup.py``. This will alleviate concerns that projects with unusually long build times have with pip appearing to stall. * Include the functionality of ``peep`` into pip, allowing hashes to be baked into a requirements file and ensuring that the packages being downloaded match one of those hashes. This is an additional, opt-in security measure that, when used, removes the need to trust the repository. * Fix a bug causing pip to not select a wheel compiled against an OSX SDK later than what Python itself was compiled against when running on a newer version of OSX. * Add a new ``--prefix`` option for ``pip install`` that supports wheels and sdists. (:pull:`3252`) * Fixed :issue:`2042` regarding wheel building with setup.py using a different encoding than the system. * Drop PasteScript specific egg_info hack. (:pull:`3270`) * Allow combination of pip list options --editable with --outdated/--uptodate. (:issue:`933`) * Gives VCS implementations control over saying whether a project is under their control (:pull:`3258`) * Git detection now works when ``setup.py`` is not at the Git repo root and when ``package_dir`` is used, so ``pip freeze`` works in more cases (:pull:`3258`) * Correctly freeze Git develop packages in presence of the &subdirectory option (:pull:`3258`) * The detection of editable packages now relies on the presence of ``.egg-link`` instead of looking for a VCS, so ``pip list -e`` is more reliable (:pull:`3258`) * Add the ``--prefix`` flag to ``pip install`` which allows specifying a root prefix to use instead of ``sys.prefix`` (:pull:`3252`). * Allow duplicate specifications in the case that only the extras differ, and union all specified extras together (:pull:`3198`). * Fix the detection of the user's current platform on OSX when determining the OSX SDK version (:pull:`3232`). * Prevent the automatically built wheels from mistakenly being used across multiple versions of Python when they may not be correctly configured for that by making the wheel specific to a specific version of Python and specific interpreter (:pull:`3225`). * Emulate the SOABI support in wheels from Python 2.x on Python 2.x as closely as we can with the information available within the interpreter (:pull:`3075`). * Don't roundtrip to the network when git is pinned to a specific commit hash and that hash already exists locally (:pull:`3066`). * Prefer wheels built against a newer SDK to wheels built against an older SDK on OSX (:pull:`3163`). * Show entry points for projects installed via wheel (:pull:`3122`). * Improve message when an unexisting path is passed to --find-links option (:issue:`2968`). * pip freeze does not add the VCS branch/tag name in the #egg=... fragment anymore (:pull:`3312`). * Warn on installation of editable if the provided #egg=name part does not match the metadata produced by `setup.py egg_info`. :issue:`3143`. * Add support for .xz files for python versions supporting them (>= 3.3). :issue:`722`.
2016-08-27 13:41:23 +02:00
${PYSITELIB}/pip/_vendor/six.pyc
${PYSITELIB}/pip/_vendor/six.pyo
${PYSITELIB}/pip/_vendor/urllib3/__init__.py
${PYSITELIB}/pip/_vendor/urllib3/__init__.pyc
${PYSITELIB}/pip/_vendor/urllib3/__init__.pyo
${PYSITELIB}/pip/_vendor/urllib3/_collections.py
${PYSITELIB}/pip/_vendor/urllib3/_collections.pyc
${PYSITELIB}/pip/_vendor/urllib3/_collections.pyo
${PYSITELIB}/pip/_vendor/urllib3/connection.py
${PYSITELIB}/pip/_vendor/urllib3/connection.pyc
${PYSITELIB}/pip/_vendor/urllib3/connection.pyo
${PYSITELIB}/pip/_vendor/urllib3/connectionpool.py
${PYSITELIB}/pip/_vendor/urllib3/connectionpool.pyc
${PYSITELIB}/pip/_vendor/urllib3/connectionpool.pyo
${PYSITELIB}/pip/_vendor/urllib3/contrib/__init__.py
${PYSITELIB}/pip/_vendor/urllib3/contrib/__init__.pyc
${PYSITELIB}/pip/_vendor/urllib3/contrib/__init__.pyo
py-pip: updated to 19.0.1 19.0.1: Bug Fixes - Fix a crash when using --no-cache-dir with PEP 517 distributions 19.0: Deprecations and Removals - Deprecate support for Python 3.4 - Start printing a warning for Python 2.7 to warn of impending Python 2.7 End-of-life and prompt users to start migrating to Python 3. - Remove the deprecated --process-dependency-links option. - Remove the deprecated SVN editable detection based on dependency links during freeze. Features - Implement PEP 517 (allow projects to specify a build backend via pyproject.toml). - Implement manylinux2010 platform tag support. manylinux2010 is the successor to manylinux1. It allows carefully compiled binary wheels to be installed on compatible Linux platforms. - Improve build isolation: handle .pth files, so namespace packages are correctly supported under Python 3.2 and earlier. - Include the package name in a freeze warning if the package is not installed. - Warn when dropping an --[extra-]index-url value that points to an existing local directory. - Prefix pip's --log file lines with their timestamp. Bug Fixes - Avoid creating excessively long temporary paths when uninstalling packages. - Redact the password from the URL in various log messages. - Avoid creating excessively long temporary paths when uninstalling packages. - Avoid printing a stack trace when given an invalid requirement. - Present 401 warning if username/password do not work for URL - Handle requests.exceptions.RetryError raised in PackageFinder that was causing pip to fail silently when some indexes were unreachable. - Handle a broken stdout pipe more gracefully (e.g. when running pip list | head). - Fix crash from setting PIP_NO_CACHE_DIR=yes. - Fix crash from unparseable requirements when checking installed packages. - Fix content type detection if a directory named like an archive is used as a package source. - Fix listing of outdated packages that are not dependencies of installed packages in pip list --outdated --not-required - Fix sorting TypeError in move_wheel_files() when installing some packages. - Fix support for invoking pip using python src/pip .... - Greatly reduce memory usage when installing wheels containing large files. - Editable non-VCS installs now freeze as editable. - Editable Git installs without a remote now freeze as editable. - Canonicalize sdist file names so they can be matched to a canonicalized package name passed to pip install. - Properly decode special characters in SVN URL credentials. - Make PIP_NO_CACHE_DIR disable the cache also for truthy values like "true", "yes", "1", etc. Vendored Libraries - Include license text of vendored 3rd party libraries. - Update certifi to 2018.11.29 - Update colorama to 0.4.1 - Update distlib to 0.2.8 - Update idna to 2.8 - Update packaging to 19.0 - Update pep517 to 0.5.0 - Update pkg_resources to 40.6.3 (via setuptools) - Update pyparsing to 2.3.1 - Update pytoml to 0.1.20 - Update requests to 2.21.0 - Update six to 1.12.0 - Update urllib3 to 1.24.1 Improved Documentation - Include the Vendoring Policy in the documentation. - Add instructions for running pip from source to Development documentation. - Remove references to removed #egg=<name>-<version> functionality - Fix omission of command name in HTML usage documentation
2019-01-24 09:29:39 +01:00
${PYSITELIB}/pip/_vendor/urllib3/contrib/_appengine_environ.py
${PYSITELIB}/pip/_vendor/urllib3/contrib/_appengine_environ.pyc
${PYSITELIB}/pip/_vendor/urllib3/contrib/_appengine_environ.pyo
${PYSITELIB}/pip/_vendor/urllib3/contrib/_securetransport/__init__.py
${PYSITELIB}/pip/_vendor/urllib3/contrib/_securetransport/__init__.pyc
${PYSITELIB}/pip/_vendor/urllib3/contrib/_securetransport/__init__.pyo
${PYSITELIB}/pip/_vendor/urllib3/contrib/_securetransport/bindings.py
${PYSITELIB}/pip/_vendor/urllib3/contrib/_securetransport/bindings.pyc
${PYSITELIB}/pip/_vendor/urllib3/contrib/_securetransport/bindings.pyo
${PYSITELIB}/pip/_vendor/urllib3/contrib/_securetransport/low_level.py
${PYSITELIB}/pip/_vendor/urllib3/contrib/_securetransport/low_level.pyc
${PYSITELIB}/pip/_vendor/urllib3/contrib/_securetransport/low_level.pyo
${PYSITELIB}/pip/_vendor/urllib3/contrib/appengine.py
${PYSITELIB}/pip/_vendor/urllib3/contrib/appengine.pyc
${PYSITELIB}/pip/_vendor/urllib3/contrib/appengine.pyo
${PYSITELIB}/pip/_vendor/urllib3/contrib/ntlmpool.py
${PYSITELIB}/pip/_vendor/urllib3/contrib/ntlmpool.pyc
${PYSITELIB}/pip/_vendor/urllib3/contrib/ntlmpool.pyo
${PYSITELIB}/pip/_vendor/urllib3/contrib/pyopenssl.py
${PYSITELIB}/pip/_vendor/urllib3/contrib/pyopenssl.pyc
${PYSITELIB}/pip/_vendor/urllib3/contrib/pyopenssl.pyo
${PYSITELIB}/pip/_vendor/urllib3/contrib/securetransport.py
${PYSITELIB}/pip/_vendor/urllib3/contrib/securetransport.pyc
${PYSITELIB}/pip/_vendor/urllib3/contrib/securetransport.pyo
${PYSITELIB}/pip/_vendor/urllib3/contrib/socks.py
${PYSITELIB}/pip/_vendor/urllib3/contrib/socks.pyc
${PYSITELIB}/pip/_vendor/urllib3/contrib/socks.pyo
${PYSITELIB}/pip/_vendor/urllib3/exceptions.py
${PYSITELIB}/pip/_vendor/urllib3/exceptions.pyc
${PYSITELIB}/pip/_vendor/urllib3/exceptions.pyo
${PYSITELIB}/pip/_vendor/urllib3/fields.py
${PYSITELIB}/pip/_vendor/urllib3/fields.pyc
${PYSITELIB}/pip/_vendor/urllib3/fields.pyo
${PYSITELIB}/pip/_vendor/urllib3/filepost.py
${PYSITELIB}/pip/_vendor/urllib3/filepost.pyc
${PYSITELIB}/pip/_vendor/urllib3/filepost.pyo
${PYSITELIB}/pip/_vendor/urllib3/packages/__init__.py
${PYSITELIB}/pip/_vendor/urllib3/packages/__init__.pyc
${PYSITELIB}/pip/_vendor/urllib3/packages/__init__.pyo
${PYSITELIB}/pip/_vendor/urllib3/packages/backports/__init__.py
${PYSITELIB}/pip/_vendor/urllib3/packages/backports/__init__.pyc
${PYSITELIB}/pip/_vendor/urllib3/packages/backports/__init__.pyo
${PYSITELIB}/pip/_vendor/urllib3/packages/backports/makefile.py
${PYSITELIB}/pip/_vendor/urllib3/packages/backports/makefile.pyc
${PYSITELIB}/pip/_vendor/urllib3/packages/backports/makefile.pyo
${PYSITELIB}/pip/_vendor/urllib3/packages/six.py
${PYSITELIB}/pip/_vendor/urllib3/packages/six.pyc
${PYSITELIB}/pip/_vendor/urllib3/packages/six.pyo
${PYSITELIB}/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py
${PYSITELIB}/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.pyc
${PYSITELIB}/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.pyo
${PYSITELIB}/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py
${PYSITELIB}/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.pyc
${PYSITELIB}/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.pyo
${PYSITELIB}/pip/_vendor/urllib3/poolmanager.py
${PYSITELIB}/pip/_vendor/urllib3/poolmanager.pyc
${PYSITELIB}/pip/_vendor/urllib3/poolmanager.pyo
${PYSITELIB}/pip/_vendor/urllib3/request.py
${PYSITELIB}/pip/_vendor/urllib3/request.pyc
${PYSITELIB}/pip/_vendor/urllib3/request.pyo
${PYSITELIB}/pip/_vendor/urllib3/response.py
${PYSITELIB}/pip/_vendor/urllib3/response.pyc
${PYSITELIB}/pip/_vendor/urllib3/response.pyo
${PYSITELIB}/pip/_vendor/urllib3/util/__init__.py
${PYSITELIB}/pip/_vendor/urllib3/util/__init__.pyc
${PYSITELIB}/pip/_vendor/urllib3/util/__init__.pyo
${PYSITELIB}/pip/_vendor/urllib3/util/connection.py
${PYSITELIB}/pip/_vendor/urllib3/util/connection.pyc
${PYSITELIB}/pip/_vendor/urllib3/util/connection.pyo
py-pip: updated to 18.0 18.0: Process - Switch to a Calendar based versioning scheme. - Formally document our deprecation process as a minimum of 6 months of deprecation warnings. - Adopt and document NEWS fragment writing style. - Switch to releasing a new, non bug fix version of pip every 3 months. Deprecations and Removals - Remove the legacy format from pip list. - Dropped support for Python 3.3. - Remove support for cleaning up #egg fragment postfixes. - Remove the shim for the old get-pip.py location. For the past 2 years, it's only been redirecting users to use the newer https://bootstrap.pypa.io/get-pip.py location. Features - Introduce a new --prefer-binary flag, to prefer older wheels over newer source packages. - Improve autocompletion function on file name completion after options which have ``<file>``, ``<dir>`` or ``<path>`` as metavar. - Add support for installing PEP 518 build dependencies from source. - Improve status message when upgrade is skipped due to only-if-needed strategy. Bug Fixes - Update pip's self-check logic to not use a virtualenv specific file and honor cache-dir. - Remove compiled pyo files for wheel packages. - Speed up printing of newly installed package versions. - Restrict install time dependency warnings to directly-dependant packages. Warning about the entire package set has resulted in users getting confused as to why pip is printing these warnings. - Improve handling of PEP 518 build requirements: support environment markers and extras. - Remove username/password from log message when using index with basic auth. - Remove trailing os.sep from PATH directories to avoid false negatives. - Fix "pip wheel pip" being blocked by the "don't use pip to modify itself" check. - Disable pip's version check (and upgrade message) when installed by a different package manager. This works better with Linux distributions where pip's upgrade message may result in users running pip in a manner that modifies files that should be managed by the OS's package manager. - Check for file existence and unlink first when clobbering existing files during a wheel install. - Improve error message to be more specific when no files are found as listed in as listed in PKG-INFO. - Always read ``pyproject.toml`` as UTF-8. This fixes Unicode handling on Windows and Python 2. - Fix a crash that occurs when PATH not set, while generating script location warning. - Disallow packages with ``pyproject.toml`` files that have an empty build-system table. Vendored Libraries - Update CacheControl to 0.12.5. - Update certifi to 2018.4.16. - Update distro to 1.3.0. - Update idna to 2.7. - Update ipaddress to 1.0.22. - Update pkg_resources to 39.2.0 (via setuptools). - Update progress to 1.4. - Update pytoml to 0.1.16. - Update requests to 2.19.1. - Update urllib3 to 1.23. Improved Documentation - Document how to use pip with a proxy server. - Document that the output of pip show is in RFC-compliant mail header format.
2018-08-07 11:56:53 +02:00
${PYSITELIB}/pip/_vendor/urllib3/util/queue.py
${PYSITELIB}/pip/_vendor/urllib3/util/queue.pyc
${PYSITELIB}/pip/_vendor/urllib3/util/queue.pyo
${PYSITELIB}/pip/_vendor/urllib3/util/request.py
${PYSITELIB}/pip/_vendor/urllib3/util/request.pyc
${PYSITELIB}/pip/_vendor/urllib3/util/request.pyo
${PYSITELIB}/pip/_vendor/urllib3/util/response.py
${PYSITELIB}/pip/_vendor/urllib3/util/response.pyc
${PYSITELIB}/pip/_vendor/urllib3/util/response.pyo
${PYSITELIB}/pip/_vendor/urllib3/util/retry.py
${PYSITELIB}/pip/_vendor/urllib3/util/retry.pyc
${PYSITELIB}/pip/_vendor/urllib3/util/retry.pyo
${PYSITELIB}/pip/_vendor/urllib3/util/ssl_.py
${PYSITELIB}/pip/_vendor/urllib3/util/ssl_.pyc
${PYSITELIB}/pip/_vendor/urllib3/util/ssl_.pyo
${PYSITELIB}/pip/_vendor/urllib3/util/timeout.py
${PYSITELIB}/pip/_vendor/urllib3/util/timeout.pyc
${PYSITELIB}/pip/_vendor/urllib3/util/timeout.pyo
${PYSITELIB}/pip/_vendor/urllib3/util/url.py
${PYSITELIB}/pip/_vendor/urllib3/util/url.pyc
${PYSITELIB}/pip/_vendor/urllib3/util/url.pyo
${PYSITELIB}/pip/_vendor/urllib3/util/wait.py
${PYSITELIB}/pip/_vendor/urllib3/util/wait.pyc
${PYSITELIB}/pip/_vendor/urllib3/util/wait.pyo
Update to 9.0.0 Upstream changes: 9.0.0 (2016-11-02) BACKWARD INCOMPATIBLE Remove the attempted autodetection of requirement names from URLs, URLs must include a name via #egg=. DEPRECATION pip install --egg have been deprecated and will be removed in the future. This "feature" has a long list of drawbacks where it breaks almost all of pip's other features in subtle and hard to diagnose ways. Add a pip check command to check installed packages dependencies (PR #3750). Added option to allow user to abort pip operation if file/directory exists Added Appveyor CI Uninstall existing packages when performing an editable installation of the same packages (#1548). Pip show is less verbose by default. --verbose prints multiline fields. (PR #3858). Added optional column formatting to pip list (#3651). Add --not-required option to pip list to list packages that are not dependencies of other packages. Fix the build on systems with symlinked /tmp directory for custom builds such as numpy (PR #3701). Fix regression in pip freeze: when there is more than one git remote, priority is given to the remote named origin (PR #3708, #3616). Fix crash when calling pip freeze with invalid requirement installed (PR #3704, #3681). Support multiple --requirement files in pip freeze (PR #3703). Implementation of pep-503 data-requires-python. When this field is present for a release link, pip will ignore the download when installing to a Python version that doesn't satisfy the requirement. Pip wheel now works on editable packages too (it was only working on editable dependencies before); this allows running pip wheel on the result of pip freeze in presence of editable requirements (PR #3695, #3291). Load credentials from .netrc files (PR #3715, #3569). Add --platform, --python-version, --implementation and --abi parameters to pip download. These allow utilities and advanced users to gather distributions for interpreters other than the one pip is being run on. (PR #3760) Skip scanning virtual environments even when venv/bin/python is a dangling symlink. Added pip completion support for fish shell. Fix problems on Windows on Python 2 when username or hostname contains non-ASCII characters (#3463, PR #3970, PR #4000). Use git fetch --tags to fetch tags in addition to everything else that is normally fetched; this is necessary in case a git requirement url points to a tag or commit that is not on a branch (PR #3791) Normalize package names before using in pip show (#3976) Raise when Requires-Python do not match the running version and add --ignore-requires-python option as escape hatch (PR #3846). Report the correct installed version when performing an upgrade in some corner cases (#2382) Add -i shorthand for --index flag in pip search Do not optionally load C dependencies in requests (#1840, #2930, #3024) Strip authentication from SVN url prior to passing it into svn (PR #3697, #3209). Also install in platlib with --target option (PR #3694, #3682). Restore the ability to use inline comments in requirements files passed to pip freeze (#3680). Deprecate --default-vcs option (#4052).
2016-11-06 01:32:12 +01:00
${PYSITELIB}/pip/_vendor/webencodings/__init__.py
${PYSITELIB}/pip/_vendor/webencodings/__init__.pyc
${PYSITELIB}/pip/_vendor/webencodings/__init__.pyo
${PYSITELIB}/pip/_vendor/webencodings/labels.py
${PYSITELIB}/pip/_vendor/webencodings/labels.pyc
${PYSITELIB}/pip/_vendor/webencodings/labels.pyo
${PYSITELIB}/pip/_vendor/webencodings/mklabels.py
${PYSITELIB}/pip/_vendor/webencodings/mklabels.pyc
${PYSITELIB}/pip/_vendor/webencodings/mklabels.pyo
${PYSITELIB}/pip/_vendor/webencodings/tests.py
${PYSITELIB}/pip/_vendor/webencodings/tests.pyc
${PYSITELIB}/pip/_vendor/webencodings/tests.pyo
${PYSITELIB}/pip/_vendor/webencodings/x_user_defined.py
${PYSITELIB}/pip/_vendor/webencodings/x_user_defined.pyc
${PYSITELIB}/pip/_vendor/webencodings/x_user_defined.pyo