[Python-modules-commits] [python-pex] branch master updated (48c6723 -> 9c6b544)

Barry Warsaw barry at moszumanska.debian.org
Tue Jun 2 19:01:28 UTC 2015


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

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

      from  48c6723   Release to unstable
       new  51bea7c   record new upstream branch created by importing python-pex_1.0.0.orig.tar.gz
       new  c274193   Import python-pex_1.0.0.orig.tar.gz
       new  7ac33d1   Work around Debian's devendorizing of pkg_resource dependencies.
       new  b94c872   merge patched into master
       new  b65f56a   New upstream release.
       new  9c6b544   d/control, d/tests: Add a simple DEP-8 smoketest.

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


Summary of changes:
 CHANGES.rst                                        |  93 +++-
 LICENSE                                            | 201 ++++++++
 MANIFEST.in                                        |   8 +-
 PKG-INFO                                           |  95 +++-
 README.rst                                         |  77 +--
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   7 +
 debian/control                                     |   1 +
 .../handle-pkg_resources-devendorization.patch     |  10 +-
 debian/patches/modern-setuptools.patch             |  24 -
 debian/patches/series                              |   1 -
 debian/tests/control                               |   2 +
 debian/tests/smoketest                             |   4 +
 docs/Makefile                                      | 177 +++++++
 docs/api/index.rst                                 | 159 ++++++
 docs/buildingpex.rst                               | 330 +++++++++++++
 docs/conf.py                                       | 273 +++++++++++
 docs/index.rst                                     |  31 ++
 docs/rtd/requirements.txt                          |   2 +
 docs/whatispex.rst                                 |  47 ++
 pex.egg-info/PKG-INFO                              |  95 +++-
 pex.egg-info/SOURCES.txt                           |  45 +-
 pex.egg-info/entry_points.txt                      |   2 +-
 pex.egg-info/requires.txt                          |   5 +-
 pex/archiver.py                                    |   3 +
 pex/base.py                                        |   2 +-
 pex/bin/pex.py                                     | 534 ++++++++++++++-------
 pex/common.py                                      |   9 +
 pex/crawler.py                                     |   6 +
 pex/environment.py                                 |  65 ++-
 pex/fetcher.py                                     |  22 +-
 pex/finders.py                                     |  60 ++-
 pex/http.py                                        |  21 +-
 pex/installer.py                                   |   6 +-
 pex/interpreter.py                                 |   7 +-
 pex/iterator.py                                    |  79 ++-
 pex/link.py                                        |   3 +
 pex/pex.py                                         | 268 +++++++----
 pex/pex_bootstrapper.py                            |  33 +-
 pex/pex_builder.py                                 |  99 ++--
 pex/pex_info.py                                    |  73 +--
 pex/requirements.py                                |  94 ++++
 pex/resolvable.py                                  | 295 ++++++++++++
 pex/resolver.py                                    | 377 +++++++++------
 pex/resolver_options.py                            | 174 +++++++
 pex/sorter.py                                      |  37 ++
 pex/testing.py                                     |  24 +-
 pex/tracer.py                                      |  27 +-
 pex/translator.py                                  |  16 +-
 pex/util.py                                        |  42 +-
 pex/variables.py                                   | 265 ++++++++++
 pex/version.py                                     |   8 +-
 scripts/combine_coverage.py                        |  68 +++
 scripts/coverage.sh                                |   7 +
 scripts/do_nothing.py                              |   0
 setup.py                                           |  12 +-
 tests/test_archiver.py                             |  28 ++
 tests/test_compatibility.py                        |  18 +
 tests/test_crawler.py                              | 105 ++++
 tests/test_environment.py                          |  96 ++++
 tests/test_fetcher.py                              |  18 +
 tests/test_finders.py                              | 101 ++++
 tests/test_http.py                                 | 240 +++++++++
 tests/test_integration.py                          |  32 ++
 tests/test_interpreter.py                          |  23 +
 tests/test_iterator.py                             |  38 ++
 tests/test_link.py                                 |  54 +++
 tests/test_package.py                              |  52 ++
 tests/test_pep425.py                               |  51 ++
 tests/test_pex.py                                  | 134 ++++++
 tests/test_pex_binary.py                           |  82 ++++
 tests/test_pex_bootstrapper.py                     |  31 ++
 tests/test_pex_builder.py                          |  67 +++
 tests/test_pex_info.py                             |  34 ++
 tests/test_platform.py                             |  58 +++
 tests/test_requirements.py                         | 113 +++++
 tests/test_resolvable.py                           | 113 +++++
 tests/test_resolver.py                             |  59 +++
 tests/test_sorter.py                               |  45 ++
 tests/test_translator.py                           |  39 ++
 tests/test_util.py                                 | 158 ++++++
 tests/test_variables.py                            |  74 +++
 tox.ini                                            | 134 ++++++
 83 files changed, 5758 insertions(+), 678 deletions(-)
 create mode 100644 LICENSE
 delete mode 100644 debian/patches/modern-setuptools.patch
 create mode 100644 debian/tests/control
 create mode 100755 debian/tests/smoketest
 create mode 100644 docs/Makefile
 create mode 100644 docs/api/index.rst
 create mode 100644 docs/buildingpex.rst
 create mode 100644 docs/conf.py
 create mode 100644 docs/index.rst
 create mode 100644 docs/rtd/requirements.txt
 create mode 100644 docs/whatispex.rst
 create mode 100644 pex/requirements.py
 create mode 100644 pex/resolvable.py
 create mode 100644 pex/resolver_options.py
 create mode 100644 pex/sorter.py
 create mode 100644 pex/variables.py
 create mode 100644 scripts/combine_coverage.py
 create mode 100755 scripts/coverage.sh
 create mode 100644 scripts/do_nothing.py
 create mode 100644 tests/test_archiver.py
 create mode 100644 tests/test_compatibility.py
 create mode 100644 tests/test_crawler.py
 create mode 100644 tests/test_environment.py
 create mode 100644 tests/test_fetcher.py
 create mode 100644 tests/test_finders.py
 create mode 100644 tests/test_http.py
 create mode 100644 tests/test_integration.py
 create mode 100644 tests/test_interpreter.py
 create mode 100644 tests/test_iterator.py
 create mode 100644 tests/test_link.py
 create mode 100644 tests/test_package.py
 create mode 100644 tests/test_pep425.py
 create mode 100644 tests/test_pex.py
 create mode 100644 tests/test_pex_binary.py
 create mode 100644 tests/test_pex_bootstrapper.py
 create mode 100644 tests/test_pex_builder.py
 create mode 100644 tests/test_pex_info.py
 create mode 100644 tests/test_platform.py
 create mode 100644 tests/test_requirements.py
 create mode 100644 tests/test_resolvable.py
 create mode 100644 tests/test_resolver.py
 create mode 100644 tests/test_sorter.py
 create mode 100644 tests/test_translator.py
 create mode 100644 tests/test_util.py
 create mode 100644 tests/test_variables.py
 create mode 100644 tox.ini

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



More information about the Python-modules-commits mailing list