Hello community,
here is the log from the commit of package python3-setuptools for
openSUSE:Factory checked in at 2014-02-26 06:55:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-setuptools (Old)
and /work/SRC/openSUSE:Factory/.python3-setuptools.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-setuptools"
Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-setuptools/python3-setuptools.changes
2013-10-15 10:44:12.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.python3-setuptools.new/python3-setuptools.changes
2014-02-26 06:55:34.000000000 +0100
@@ -1,0 +2,64 @@
+Mon Feb 10 14:56:15 UTC 2014 - [email protected]
+
+- Update to version 2.1:
+ * Issue #129: Suppress inspection of '*.whl' files when searching for files
+ in a zip-imported file.
+ * Issue #131: Fix RuntimeError when constructing an egg fetcher.
+- Changes from version 2.0.2:
+ * Fix NameError during installation with Python implementations (e.g. Jython)
+ not containing parser module.
+ * Fix NameError in sdist:re_finder.
+- Changes from version 2.0.1:
+ * Issue #124: Fixed error in list detection in upload_docs.
+- Changes from version 2.0:
+ * Issue #121: Exempt lib2to3 pickled grammars from DirectorySandbox.
+ * Issue #41: Dropped support for Python 2.4 and Python 2.5. Clients requiring
+ setuptools for those versions of Python should use setuptools 1.x.
+ * Removed setuptools.command.easy_install.HAS_USER_SITE. Clients
+ expecting this boolean variable should use site.ENABLE_USER_SITE
+ instead.
+ * Removed pkg_resources.ImpWrapper. Clients that expected this class
+ should use pkgutil.ImpImporter instead.
+- Changes from version 1.4.2:
+ * Issue #116: Correct TypeError when reading a local package index on Python
+ 3.
+- Changes from version 1.4.1:
+ * Issue #114: Use sys.getfilesystemencoding for decoding config in
+ bdist_wininst distributions.
+ * Issue #105 and Issue #113: Establish a more robust technique for
+ determining the terminal encoding
+- Changes from version 1.4:
+ * Issue #27: easy_install will now use credentials from .pypirc if
+ present for connecting to the package index.
+ * Pull Request #21: Omit unwanted newlines in package_index._encode_auth
+ when the username/password pair length indicates wrapping.
+- Changes from version 1.3.2:
+ * Issue #99: Fix filename encoding issues in SVN support.
+- Changes from version 1.3.1:
+ * Remove exuberant warning in SVN support when SVN is not used.
+- Changes from version 1.3:
+ * Address security vulnerability in SSL match_hostname check as reported in
+ Python #17997.
+ * Prefer backports.ssl_match_hostname
+ <https://pypi.python.org/pypi/backports.ssl_match_hostname>_ for backport
+ implementation if present.
+ * Correct NameError in ssl_support module (socket.error).
+- Changes from version 1.2:
+ * Issue #26: Add support for SVN 1.7. Special thanks to Philip Thiem for the
+ contribution.
+ * Issue #93: Wheels are now distributed with every release. Note that as
+ reported in Issue #108, as of Pip 1.4, scripts aren't installed properly
+ from wheels. Therefore, if using Pip to install setuptools from a wheel,
+ the easy_install command will not be available.
+ * Setuptools "natural" launcher support, introduced in 1.0, is now officially
+ supported.
+- Changes from version 1.1.7:
+ * Fixed behavior of NameError handling in 'script template (dev).py' (script
+ launcher for 'develop' installs).
+ * ez_setup.py now ensures partial downloads are cleaned up following
+ a failed download.
+ * Distribute #363 and Issue #55: Skip an sdist test that fails on locales
+ other than UTF-8.
+- Fix update-alternatives usage
+
+-------------------------------------------------------------------
Old:
----
setuptools-1.1.6.tar.gz
New:
----
setuptools-2.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python3-setuptools.spec ++++++
--- /var/tmp/diff_new_pack.BlnZB4/_old 2014-02-26 06:55:36.000000000 +0100
+++ /var/tmp/diff_new_pack.BlnZB4/_new 2014-02-26 06:55:36.000000000 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python3-setuptools
#
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products 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: python3-setuptools
-Version: 1.1.6
+Version: 2.1
Release: 0
Url: http://pypi.python.org/pypi/setuptools
Summary: Easily download, build, install, upgrade, and uninstall Python
packages
@@ -28,8 +28,9 @@
Source2: zpl.txt
Patch1: setuptools-0.6c9-create-sitedir.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} == 1220
+#NOTE(saschpe): Need 'python3' for the 'xml' module:
BuildRequires: python3
+%if 0%{?suse_version} == 1220
BuildRequires: python3-2to3
%endif
BuildRequires: python3-devel
@@ -59,22 +60,18 @@
%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
rm %{buildroot}%{_bindir}/easy_install
-ln -s %{_bindir}/easy_install-%{py3_ver} %{buildroot}%{_bindir}/easy_install
+mkdir -p %{buildroot}%{_sysconfdir}/alternatives
+touch %{buildroot}%{_sysconfdir}/alternatives/easy_install
+ln -sf %{_sysconfdir}/alternatives/easy_install
%{buildroot}/%{_bindir}/easy_install
%check
python3 setup.py test
-%pre
-# Since /usr/bin/easy_install became ghosted to be used with
update-alternatives,
-# we have to get rid of the old binary:
-[[ ! -L %{_bindir}/easy_install ]] && rm -f %{_bindir}/easy_install
-exit 0
-
%post
update-alternatives \
--install %{_bindir}/easy_install easy_install
%{_bindir}/easy_install-%{py3_ver} 30
-%preun
+%postun
if [ $1 -eq 0 ] ; then
update-alternatives --remove easy_install
%{_bindir}/easy_install-%{py3_ver}
fi
@@ -82,8 +79,9 @@
%files
%defattr(-,root,root,-)
%doc CHANGES.txt README.txt
-%ghost %{_bindir}/easy_install
+%{_bindir}/easy_install
%{_bindir}/easy_install-%{py3_ver}
+%ghost %{_sysconfdir}/alternatives/easy_install
%{python3_sitelib}/_markerlib
%{python3_sitelib}/__pycache__
%{python3_sitelib}/easy_install.py*
++++++ setuptools-1.1.6.tar.gz -> setuptools-2.1.tar.gz ++++++
++++ 7715 lines of diff (skipped)
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]