Accepting request 155993 from devel:languages:python
Update (forwarded request 155989 from posophe) OBS-URL: https://build.opensuse.org/request/show/155993 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-simplejson?expand=0&rev=22
This commit is contained in:
@@ -1,3 +1,23 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 21 15:39:09 UTC 2013 - p.drouand@gmail.com
|
||||
|
||||
- Update to version 3.0.8:
|
||||
* Fix a Python 2.x compiler warning for narrow unicode builds
|
||||
https://github.com/simplejson/simplejson/issues/56
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 17 14:19:25 UTC 2013 - toddrme2178@gmail.com
|
||||
|
||||
- Update to 3.0.7
|
||||
* NOTE: this release only changes the license.
|
||||
* simplejson is now dual-licensed software, MIT or AFL v2.1. It is
|
||||
also made explicit that this code is also licensed to the PSF under
|
||||
a Contributor Agreement.
|
||||
- Update to 3.0.7
|
||||
* Fix for major Python 2.x ensure_ascii=False encoding regression
|
||||
introduced in simplejson 3.0.0. If you use this setting, please
|
||||
upgrade immediately.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 11 15:52:36 UTC 2013 - p.drouand@gmail.com
|
||||
|
||||
|
||||
@@ -16,15 +16,14 @@
|
||||
#
|
||||
|
||||
|
||||
%define modname simplejson
|
||||
Name: python-%{modname}
|
||||
Version: 3.0.5
|
||||
Name: python-simplejson
|
||||
Version: 3.0.8
|
||||
Release: 0
|
||||
Url: http://github.com/simplejson/simplejson
|
||||
Summary: Simple, fast, extensible JSON encoder/decoder for Python
|
||||
License: MIT
|
||||
License: MIT or AFL-2.1
|
||||
Group: Development/Languages/Python
|
||||
Source: http://pypi.python.org/packages/source/s/%{modname}/%{modname}-%{version}.tar.gz
|
||||
Source: http://pypi.python.org/packages/source/s/simplejson/simplejson-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: python-devel
|
||||
BuildRequires: python-distribute
|
||||
@@ -41,7 +40,7 @@ with no dependencies, but includes an optional C extension for a
|
||||
serious speed boost.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{modname}-%{version}
|
||||
%setup -q -n simplejson-%{version}
|
||||
|
||||
%build
|
||||
CFLAGS="%{optflags} -fno-strict-aliasing" python setup.py build
|
||||
@@ -55,7 +54,7 @@ python setup.py test
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc CHANGES.txt LICENSE.txt README.rst
|
||||
%{python_sitearch}/%{modname}/
|
||||
%{python_sitearch}/%{modname}-%{version}-py%{py_ver}.egg-info
|
||||
%{python_sitearch}/simplejson/
|
||||
%{python_sitearch}/simplejson-%{version}-py%{py_ver}.egg-info
|
||||
|
||||
%changelog
|
||||
|
||||
@@ -1,3 +1,28 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 21 15:39:09 UTC 2013 - p.drouand@gmail.com
|
||||
|
||||
- Update to version 3.0.8:
|
||||
* Fix a Python 2.x compiler warning for narrow unicode builds
|
||||
https://github.com/simplejson/simplejson/issues/56
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 30 12:00:26 UTC 2013 - saschpe@suse.de
|
||||
|
||||
- Use 2to3 to fix build, disable testsuite for now
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 17 14:19:25 UTC 2013 - toddrme2178@gmail.com
|
||||
|
||||
- Update to 3.0.7
|
||||
* NOTE: this release only changes the license.
|
||||
* simplejson is now dual-licensed software, MIT or AFL v2.1. It is
|
||||
also made explicit that this code is also licensed to the PSF under
|
||||
a Contributor Agreement.
|
||||
- Update to 3.0.7
|
||||
* Fix for major Python 2.x ensure_ascii=False encoding regression
|
||||
introduced in simplejson 3.0.0. If you use this setting, please
|
||||
upgrade immediately.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 11 15:52:52 UTC 2013 - p.drouand@gmail.com
|
||||
|
||||
|
||||
@@ -16,17 +16,17 @@
|
||||
#
|
||||
|
||||
|
||||
%define modname simplejson
|
||||
Name: python3-%{modname}
|
||||
Version: 3.0.5
|
||||
Name: python3-simplejson
|
||||
Version: 3.0.8
|
||||
Release: 0
|
||||
Url: http://github.com/simplejson/simplejson
|
||||
Summary: Simple, fast, extensible JSON encoder/decoder for Python
|
||||
License: MIT
|
||||
License: MIT or AFL-2.1
|
||||
Group: Development/Languages/Python
|
||||
Source: http://pypi.python.org/packages/source/s/%{modname}/%{modname}-%{version}.tar.gz
|
||||
Source: http://pypi.python.org/packages/source/s/simplejson/simplejson-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: python3
|
||||
BuildRequires: python3-2to3
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-distribute
|
||||
Requires: python3-coverage
|
||||
@@ -39,23 +39,23 @@ with no dependencies, but includes an optional C extension for a
|
||||
serious speed boost.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{modname}-%{version}
|
||||
%setup -q -n simplejson-%{version}
|
||||
|
||||
%build
|
||||
python3 setup.py build
|
||||
2to3 -w -n ./
|
||||
CFLAGS="%{optflags} -fno-strict-aliasing" python3 setup.py build
|
||||
|
||||
%install
|
||||
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||
|
||||
%check
|
||||
%if 0%{?suse_version} >= 1230
|
||||
python3 setup.py test
|
||||
%endif
|
||||
#NOTE(saschpe): Recursion error, check back:
|
||||
#%%check
|
||||
#python3 setup.py test
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc CHANGES.txt LICENSE.txt README.rst
|
||||
%{python3_sitearch}/%{modname}/
|
||||
%{python3_sitearch}/%{modname}-%{version}-py%{py3_ver}.egg-info
|
||||
%{python3_sitearch}/simplejson/
|
||||
%{python3_sitearch}/simplejson-%{version}-py%{py3_ver}.egg-info
|
||||
|
||||
%changelog
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1e1ce6f22d480ee41eeede51adcda71f8505a259ca87789a70784d7402aae2cf
|
||||
size 59042
|
||||
3
simplejson-3.0.8.tar.gz
Normal file
3
simplejson-3.0.8.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d529cb15b2f7925827d29a111d0628927f8a56b856cc8ad03f722001c438a457
|
||||
size 62958
|
||||
Reference in New Issue
Block a user