Accepting request 357124 from home:TheBlackCat:branches:devel:languages:python
update to version 19.6.2 OBS-URL: https://build.opensuse.org/request/show/357124 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setuptools?expand=0&rev=91
This commit is contained in:
parent
4989383544
commit
21bc82447a
@ -1,3 +1,113 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 1 10:57:28 UTC 2016 - toddrme2178@gmail.com
|
||||
|
||||
- update to version 19.6.2:
|
||||
* Issue #491: Correct regression incurred in 19.4 where a
|
||||
double-namespace package installed using pip would cause a
|
||||
TypeError.
|
||||
- update to version 19.6.1:
|
||||
* Restore compatibility for PyPy 3 compatibility lost in 19.4.1
|
||||
addressing Issue #487.
|
||||
* "setuptools.launch" shim now loads scripts in a new namespace,
|
||||
avoiding getting relative imports from the setuptools package on
|
||||
Python 2.
|
||||
- update to version 19.6:
|
||||
* Added a new entry script "setuptools.launch", implementing the
|
||||
shim found in "pip.util.setuptools_build". Use this command to
|
||||
launch distutils-only packages under setuptools in the same way
|
||||
that pip does, causing the setuptools monkeypatching of distutils
|
||||
to be invoked prior to invoking a script. Useful for debugging or
|
||||
otherwise installing a distutils-only package under setuptools
|
||||
when pip isn't available or otherwise does not expose the desired
|
||||
functionality. For example::
|
||||
|
||||
$ python -m setuptools.launch setup.py develop
|
||||
* Issue #488: Fix dual manifestation of Extension class in extension
|
||||
packages installed as dependencies when Cython is present.
|
||||
- update to version 19.5:
|
||||
* Issue #486: Correct TypeError when getfilesystemencoding
|
||||
returns None.
|
||||
* Issue #139: Clarified the license as MIT.
|
||||
* Pull Request #169: Removed special handling of command
|
||||
spec in scripts for Jython.
|
||||
- changes from version 19.4.1:
|
||||
* Issue #487: Use direct invocation of "importlib.machinery" in
|
||||
"pkg_resources" to avoid missing detection on relevant platforms.
|
||||
- update to version 19.4:
|
||||
* Issue #341: Correct error in path handling of package data files
|
||||
in "build_py" command when package is empty.
|
||||
* Distribute #323, Issue #141, Issue #207, and Pull Request #167:
|
||||
Another implementation of "pkg_resources.WorkingSet" and
|
||||
"pkg_resources.Distribution" that supports replacing an extant
|
||||
package with a new one, allowing for setup_requires dependencies
|
||||
to supersede installed packages for the session.
|
||||
- update to version 19.3:
|
||||
* Issue #229: Implement new technique for readily incorporating
|
||||
dependencies conditionally from vendored copies or primary
|
||||
locations. Adds a new dependency on six.
|
||||
- update to version 19.2:
|
||||
* Pull Request #163: Add get_command_list method to Distribution.
|
||||
* Pull Request #162: Add missing whitespace to multiline string
|
||||
literals.
|
||||
- update to version 19.1.1:
|
||||
* Issue #476: Cast version to string (using default encoding) to
|
||||
avoid creating Unicode types on Python 2 clients.
|
||||
* Issue #477: In Powershell downloader, use explicit rendering of
|
||||
strings, rather than rely on "repr", which can be incorrect
|
||||
(especially on Python 2).
|
||||
- changes from version 19.1:
|
||||
* Issue #215: The bootstrap script "ez_setup.py" now automatically
|
||||
detects the latest version of setuptools (using PyPI JSON API)
|
||||
rather than hard-coding a particular value.
|
||||
* Issue #475: Fix incorrect usage in _translate_metadata2.
|
||||
- changes from version 19.0:
|
||||
* Issue #442: Use RawConfigParser for parsing .pypirc file.
|
||||
Interpolated values are no longer honored in .pypirc files.
|
||||
- update to version 18.8.1:
|
||||
* Issue #440: Prevent infinite recursion when a SandboxViolation or
|
||||
other UnpickleableException occurs in a sandbox context with
|
||||
setuptools hidden. Fixes regression introduced in Setuptools 12.0.
|
||||
- changes from version 18.8:
|
||||
* Deprecated ``egg_info.get_pkg_info_revision``.
|
||||
* Issue #471: Don't rely on repr for an HTML attribute value in
|
||||
package_index.
|
||||
* Issue #419: Avoid errors in FileMetadata when the metadata directory
|
||||
is broken.
|
||||
* Issue #472: Remove deprecated use of 'U' in mode parameter
|
||||
when opening files.
|
||||
- update to version 18.7.1:
|
||||
* Issue #469: Refactored logic for Issue #419 fix to re-use metadata
|
||||
loading from Provider.
|
||||
- update to version 18.7:
|
||||
* Update dependency on certify.
|
||||
* Pull Request #160: Improve detection of gui script in
|
||||
"easy_install._adjust_header".
|
||||
* Made "test.test_args" a non-data property; alternate fix
|
||||
for the issue reported in Pull Request #155.
|
||||
* Issue #453: In "ez_setup" bootstrap module, unload all
|
||||
"pkg_resources" modules following download.
|
||||
* Pull Request #158: Honor `PEP-488
|
||||
<https://www.python.org/dev/peps/pep-0488/>`_ when excluding
|
||||
files for namespace packages.
|
||||
* Issue #419 and Pull Request #144: Add experimental support for
|
||||
reading the version info from distutils-installed metadata rather
|
||||
than using the version in the filename.
|
||||
- update to version 18.6.1:
|
||||
* Issue #464: Correct regression in invocation of superclass on
|
||||
old-style class on Python 2.
|
||||
- changes from version 18.6:
|
||||
* Issue #439: When installing entry_point scripts under development,
|
||||
omit the version number of the package, allowing any version of
|
||||
the package to be used.
|
||||
- update to version 18.5:
|
||||
* In preparation for dropping support for Python 3.2, a warning is now
|
||||
logged when pkg_resources is imported on Python 3.2 or earlier
|
||||
Python 3 versions.
|
||||
* `Add support for python_platform_implementation environment marker
|
||||
<https://github.com/jaraco/setuptools/pull/28>`_.
|
||||
* `Fix dictionary mutation during iteration
|
||||
<https://github.com/jaraco/setuptools/pull/29>`_.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 22 13:50:42 UTC 2015 - toddrme2178@gmail.com
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-setuptools
|
||||
#
|
||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: python-setuptools
|
||||
Version: 18.4
|
||||
Version: 19.6.2
|
||||
Release: 0
|
||||
Url: http://pypi.python.org/pypi/setuptools
|
||||
Summary: Easily download, build, install, upgrade, and uninstall Python packages
|
||||
@ -32,13 +32,10 @@ Patch3: fix-sle11-test-failure.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: python-devel
|
||||
BuildRequires: python-xml
|
||||
# for tests
|
||||
#BuildRequires: python-mock
|
||||
#BuildRequires: python-pytest
|
||||
#BuildRequires: python-pytest-runner
|
||||
# needed for SLE
|
||||
Requires: python
|
||||
Requires: python-xml
|
||||
Requires: python-six
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
# NOTE(saschpe): Distribute was merged into 0.7.x, so even though distribute
|
||||
@ -75,8 +72,8 @@ mkdir -p %{buildroot}%{_sysconfdir}/alternatives
|
||||
touch %{buildroot}%{_sysconfdir}/alternatives/easy_install
|
||||
ln -sf %{_sysconfdir}/alternatives/easy_install %{buildroot}/%{_bindir}/easy_install
|
||||
|
||||
%check
|
||||
# Can not run testsuite as this introduces build cycle
|
||||
#%check
|
||||
#export LANG="en_US.UTF-8"
|
||||
#python setup.py ptr --addopts='-rxs'
|
||||
|
||||
@ -99,6 +96,7 @@ fi
|
||||
%{python_sitelib}/setuptools
|
||||
%{python_sitelib}/setuptools-%{version}-py%{py_ver}.egg-info
|
||||
%{python_sitelib}/easy_install.py*
|
||||
%{python_sitelib}/pkg_resources
|
||||
%dir %{python_sitelib}/pkg_resources
|
||||
%{python_sitelib}/pkg_resources/*
|
||||
|
||||
%changelog
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cdea5098e60b4ad83453d58723a61dc481ca8e2df251fe4ccbea9afa5a7d111f
|
||||
size 626632
|
3
setuptools-19.6.2.tar.gz
Normal file
3
setuptools-19.6.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:69261eefdb21057cfbe92ba8032b923d6363d6682967d42cf46388090d0f1a15
|
||||
size 641373
|
Loading…
Reference in New Issue
Block a user