Accepting request 529092 from devel:languages:python
- Fix Source url - README->README.rst, add CHANGES - update to version 1.11.0: * Pull request #178: `with_metaclass` now properly proxies `__prepare__` to the underlying metaclass. * Pull request #191: Allow `with_metaclass` to work with metaclasses implemented in C. * Pull request #203: Add parse_http_list and parse_keqv_list to moved urllib.request. * Pull request #172 and issue #171: Add unquote_to_bytes to moved urllib.parse. * Pull request #167: Add `six.moves.getoutput`. * Pull request #80: Add `six.moves.urllib_parse.splitvalue`. * Pull request #75: Add `six.moves.email_mime_image`. * Pull request #72: Avoid creating reference cycles through tracebacks in `reraise`. - Fix Source url - README->README.rst, add CHANGES - update to version 1.11.0: * Pull request #178: `with_metaclass` now properly proxies `__prepare__` to the underlying metaclass. * Pull request #191: Allow `with_metaclass` to work with metaclasses implemented in C. * Pull request #203: Add parse_http_list and parse_keqv_list to moved urllib.request. * Pull request #172 and issue #171: Add unquote_to_bytes to moved urllib.parse. OBS-URL: https://build.opensuse.org/request/show/529092 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-six?expand=0&rev=26
This commit is contained in:
commit
0ca43684b8
@ -1,3 +1,28 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 28 07:47:18 UTC 2017 - tbechtold@suse.com
|
||||||
|
|
||||||
|
- Fix Source url
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Sep 23 20:49:03 UTC 2017 - arun@gmx.de
|
||||||
|
|
||||||
|
- README->README.rst, add CHANGES
|
||||||
|
|
||||||
|
- update to version 1.11.0:
|
||||||
|
* Pull request #178: `with_metaclass` now properly proxies
|
||||||
|
`__prepare__` to the underlying metaclass.
|
||||||
|
* Pull request #191: Allow `with_metaclass` to work with metaclasses
|
||||||
|
implemented in C.
|
||||||
|
* Pull request #203: Add parse_http_list and parse_keqv_list to
|
||||||
|
moved urllib.request.
|
||||||
|
* Pull request #172 and issue #171: Add unquote_to_bytes to moved
|
||||||
|
urllib.parse.
|
||||||
|
* Pull request #167: Add `six.moves.getoutput`.
|
||||||
|
* Pull request #80: Add `six.moves.urllib_parse.splitvalue`.
|
||||||
|
* Pull request #75: Add `six.moves.email_mime_image`.
|
||||||
|
* Pull request #72: Avoid creating reference cycles through
|
||||||
|
tracebacks in `reraise`.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 23 14:47:06 UTC 2017 - jmatejek@suse.com
|
Thu Feb 23 14:47:06 UTC 2017 - jmatejek@suse.com
|
||||||
|
|
||||||
|
@ -18,13 +18,13 @@
|
|||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-six-doc
|
Name: python-six-doc
|
||||||
Version: 1.10.0
|
Version: 1.11.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Url: http://pypi.python.org/pypi/six/
|
Url: http://pypi.python.org/pypi/six/
|
||||||
Summary: Python 2 and 3 compatibility utilities
|
Summary: Python 2 and 3 compatibility utilities
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Libraries/Python
|
Group: Development/Libraries/Python
|
||||||
Source: http://pypi.python.org/packages/source/s/six/six-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/s/six/six-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: %{python_module six}
|
BuildRequires: %{python_module six}
|
||||||
# require old python 2 explicitly to get the ssl module
|
# require old python 2 explicitly to get the ssl module
|
||||||
@ -67,6 +67,6 @@ rm -rf test
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc LICENSE README documentation/_build/html
|
%doc LICENSE README.rst CHANGES documentation/_build/html
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,3 +1,28 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 28 07:47:18 UTC 2017 - tbechtold@suse.com
|
||||||
|
|
||||||
|
- Fix Source url
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Sep 23 20:49:03 UTC 2017 - arun@gmx.de
|
||||||
|
|
||||||
|
- README->README.rst, add CHANGES
|
||||||
|
|
||||||
|
- update to version 1.11.0:
|
||||||
|
* Pull request #178: `with_metaclass` now properly proxies
|
||||||
|
`__prepare__` to the underlying metaclass.
|
||||||
|
* Pull request #191: Allow `with_metaclass` to work with metaclasses
|
||||||
|
implemented in C.
|
||||||
|
* Pull request #203: Add parse_http_list and parse_keqv_list to
|
||||||
|
moved urllib.request.
|
||||||
|
* Pull request #172 and issue #171: Add unquote_to_bytes to moved
|
||||||
|
urllib.parse.
|
||||||
|
* Pull request #167: Add `six.moves.getoutput`.
|
||||||
|
* Pull request #80: Add `six.moves.urllib_parse.splitvalue`.
|
||||||
|
* Pull request #75: Add `six.moves.email_mime_image`.
|
||||||
|
* Pull request #72: Avoid creating reference cycles through
|
||||||
|
tracebacks in `reraise`.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 5 14:33:14 UTC 2016 - jmatejek@suse.com
|
Wed Oct 5 14:33:14 UTC 2016 - jmatejek@suse.com
|
||||||
|
|
||||||
|
@ -18,13 +18,13 @@
|
|||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-six
|
Name: python-six
|
||||||
Version: 1.10.0
|
Version: 1.11.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Url: http://pypi.python.org/pypi/six/
|
Url: http://pypi.python.org/pypi/six/
|
||||||
Summary: Python 2 and 3 compatibility utilities
|
Summary: Python 2 and 3 compatibility utilities
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Libraries/Python
|
Group: Development/Libraries/Python
|
||||||
Source: http://pypi.python.org/packages/source/s/six/six-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/s/six/six-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: %{python_module base}
|
BuildRequires: %{python_module base}
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
@ -61,7 +61,7 @@ what is provided.
|
|||||||
|
|
||||||
%files %python_files
|
%files %python_files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc LICENSE README
|
%doc LICENSE README.rst CHANGES
|
||||||
%{python_sitelib}/six.py*
|
%{python_sitelib}/six.py*
|
||||||
%pycache_only %{python3_sitelib}/__pycache__/*
|
%pycache_only %{python3_sitelib}/__pycache__/*
|
||||||
%{python_sitelib}/six-%{version}-py*.egg-info
|
%{python_sitelib}/six-%{version}-py*.egg-info
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a
|
|
||||||
size 29630
|
|
3
six-1.11.0.tar.gz
Normal file
3
six-1.11.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9
|
||||||
|
size 29860
|
Loading…
x
Reference in New Issue
Block a user