Compare commits

...

14 Commits
epel8 ... epel9

Author SHA1 Message Date
Fedora Release Engineering 60030db8cd - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
3 years ago
Denis Fateyev 76e69442b0 python-msgpack: 1.0.3 release
3 years ago
Fedora Release Engineering 40b1915f67 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
4 years ago
Python Maint 8064fb509e Rebuilt for Python 3.10
4 years ago
Fedora Release Engineering a17ce5c06a - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
4 years ago
Fabian Affolter e4f8dc955b
* Fri Dec 18 2020 Fabian Affolter <mail@fabian-affolter.ch> - 1.0.2-1
4 years ago
Fabian Affolter c1e9a2723d
* Wed Dec 16 2020 Fabian Affolter <mail@fabian-affolter.ch> - 1.0.1-1
4 years ago
Fedora Release Engineering 07197fae10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
5 years ago
Fabian Affolter 4503ccc94b
Add condition
5 years ago
Fabian Affolter 016fb4db37
Exclude failing tests
5 years ago
Fabian Affolter 89a53caa08
Merge branch 'master' of ssh://pkgs.fedoraproject.org/rpms/python-msgpack
5 years ago
Fabian Affolter 8b65207a4a
* Sat Apr 18 2020 Fabian Affolter <mail@fabian-affolter.ch> - 1.0.0-1
5 years ago
Miro Hrončok 6d21a6d906 Rebuilt for Python 3.9
5 years ago
Fedora Release Engineering a80df1cc27 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
5 years ago

4
.gitignore vendored

@ -19,3 +19,7 @@
/msgpack-0.6.0.tar.gz
/msgpack-0.6.1.tar.gz
/msgpack-0.6.2.tar.gz
/msgpack-1.0.0.tar.gz
/msgpack-1.0.1.tar.gz
/msgpack-1.0.2.tar.gz
/msgpack-1.0.3.tar.gz

@ -1,20 +1,16 @@
%global srcname msgpack
%global sum A Python MessagePack (de)serializer
%bcond_with tests
Name: python-%{srcname}
Version: 0.6.2
Release: 1%{?dist}
Summary: %{sum}
Version: 1.0.3
Release: 2%{?dist}
Summary: Python MessagePack (de)serializer
License: ASL 2.0
URL: https://msgpack.org/
Source0: %pypi_source
Source0: https://github.com/msgpack/msgpack-python/archive/v%{version}/%{srcname}-%{version}.tar.gz
BuildRequires: gcc-c++
BuildRequires: python%{python3_pkgversion}-Cython
BuildRequires: python%{python3_pkgversion}-devel
BuildRequires: python%{python3_pkgversion}-setuptools
BuildRequires: python%{python3_pkgversion}-pytest
%description
MessagePack is a binary-based efficient data interchange format that is
@ -22,7 +18,12 @@ focused on high performance. It is like JSON, but very fast and small.
This is a Python (de)serializer for MessagePack.
%package -n python%{python3_pkgversion}-%{srcname}
Summary: %{sum}
Summary: %{summary}
BuildRequires: python%{python3_pkgversion}-Cython
BuildRequires: python%{python3_pkgversion}-devel
BuildRequires: python%{python3_pkgversion}-setuptools
BuildRequires: python%{python3_pkgversion}-pytest
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
# For backwards compatibility
@ -35,7 +36,9 @@ focused on high performance. It is like JSON, but very fast and small.
This is a Python %{python3_version} (de)serializer for MessagePack.
%prep
%autosetup -n %{srcname}-%{version}
%autosetup -n %{srcname}-python-%{version}
# There is a circular dependency with python-msgpack-ext
rm -rf test/test_timestamp.py
%build
%py3_build
@ -43,17 +46,53 @@ This is a Python %{python3_version} (de)serializer for MessagePack.
%install
%py3_install
%if %{with network}
%check
export PYTHONPATH=$(pwd)
py.test-%{python3_version} -v test
PYTHONPATH=%{buildroot}%{python3_sitelib} pytest-%{python3_version} -v test \
-k "not test_unicode and not test_read_array_header and not test_partialdata \
and not test_read_map_header and not test_issue124"
%endif
%files -n python%{python3_pkgversion}-%{srcname}
%doc README.rst
%doc README.md
%license COPYING
%{python3_sitearch}/%{srcname}/
%{python3_sitearch}/%{srcname}*.egg-info
%changelog
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Nov 26 2021 Denis Fateyev <denis@fateyev.com> - 1.0.3-1
- Update to 1.0.3 version
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1.0.2-3
- Rebuilt for Python 3.10
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Fri Dec 18 2020 Fabian Affolter <mail@fabian-affolter.ch> - 1.0.2-1
- Update to new upstream release 1.0.2 (#1906739)
* Wed Dec 16 2020 Fabian Affolter <mail@fabian-affolter.ch> - 1.0.1-1
- Update to new upstream release 1.0.1 (#1906739)
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Sat Jun 06 2020 Fabian Affolter <mail@fabian-affolter.ch> - 1.0.0-1
- Update to latest upstream release 1.0.0 (#1816567)
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.6.2-3
- Rebuilt for Python 3.9
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Wed Nov 20 2019 Orion Poplawski <orion@nwra.com> - 0.6.2-1
- Update to 0.6.2

@ -1 +1 @@
SHA512 (msgpack-0.6.2.tar.gz) = 95b92e3d35e0500dd4256d18bf76e586e57cc66319b4459ac5daef599277a5049177a89ad86e291dbdc4c7a918901a89d9218353ddc4a7d0b399e8a98afef363
SHA512 (msgpack-1.0.3.tar.gz) = ff8278d8a3cf001fe19660a8affe3ca33229a69b20389ca04a1d8c0ab92da7013dc9da70517d0a29358c9faf0e85e0339929aab423f521d2664bd198a7c2d738

Loading…
Cancel
Save