Sync from SUSE:SLFO:Main python-cbor2 revision c812e7593ad0cc6160e429a4adbe7417
This commit is contained in:
parent
70ac062191
commit
8a0ca859f2
BIN
cbor2-5.5.1.tar.gz
(Stored with Git LFS)
BIN
cbor2-5.5.1.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
cbor2-5.6.5.tar.gz
(Stored with Git LFS)
Normal file
BIN
cbor2-5.6.5.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,71 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 22 13:48:00 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 5.6.5:
|
||||
* Published binary wheels for Python 3.13
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 6 10:36:17 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 5.6.4
|
||||
* Fixed compilation of C extension failing on GCC 14
|
||||
* Fixed compiler warnings when building C extension
|
||||
- Drop patches for issues fixed upstream
|
||||
* https://github.com/agronholm/cbor2/pull/238.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 5 15:47:30 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 5.6.3
|
||||
* Fixed decoding of epoch-based dates being affected by the local
|
||||
time zone in the C extension
|
||||
- from version 5.6.2
|
||||
* Fixed ``__hash__()`` of the C version of the ``CBORTag`` type crashing
|
||||
when there's a recursive reference cycle
|
||||
* Fixed type annotation for the file object in ``cbor2.dump()``, ``cbor2.load()``,
|
||||
``CBOREncoder`` and ``CBORDecoder`` to be ``IO[bytes]`` instead of ``BytesIO``
|
||||
* Worked around a `CPython bug <https://github.com/python/cpython/issues/99612>`_
|
||||
that caused a ``SystemError`` to be raised, or even a buffer overflow to occur
|
||||
when decoding a long text string that contained only ASCII characters
|
||||
* Changed the return type annotations of ``cbor2.load()`` and ``cbor2.load()``
|
||||
to return ``Any`` instead of ``object`` so as not to force users to make type casts
|
||||
- from version 5.6.1
|
||||
* Fixed use-after-free in the decoder's C version when prematurely encountering
|
||||
the end of stream
|
||||
* Fixed the C version of the decoder improperly raising ``CBORDecodeEOF`` when
|
||||
decoding a text string longer than 65536 bytes
|
||||
- from version 5.6.0
|
||||
* Added the ``cbor2`` command line tool (for ``pipx run cbor2``)
|
||||
* Added support for native date encoding (bschoenmaeckers)
|
||||
* Made the C extension mandatory when the environment variable
|
||||
``CBOR2_BUILD_C_EXTENSION`` is set to ``1``.
|
||||
* Fixed ``SystemError`` in the C extension when decoding a ``Fractional``
|
||||
with a bad number of arguments or a non-tuple value
|
||||
* Fixed ``SystemError`` in the C extension when the decoder object hook
|
||||
raises an exception
|
||||
* Fixed a segmentation fault when decoding invalid unicode data
|
||||
* Fixed infinite recursion when trying to hash a CBOR tag whose
|
||||
value points to the tag itself
|
||||
* Fixed ``MemoryError`` when maliciously constructed bytestrings or string
|
||||
(declared to be absurdly large) are being decoded
|
||||
* Fixed ``UnicodeDecodeError`` from failed parsing of a UTF-8 text string
|
||||
not being wrapped as ``CBORDecodeValueError``
|
||||
* Fixed ``TypeError`` or ``ZeroDivisionError`` from a failed decoding of
|
||||
``Fraction`` not being wrapped as ``CBORDecodeValueError``
|
||||
* Fixed ``TypeError`` or ``ValueError`` from a failed decoding of ``UUID``
|
||||
not being wrapped as ``CBORDecodeValueError``
|
||||
* Fixed ``TypeError`` from a failed decoding of ``MIMEMessage`` not being
|
||||
wrapped as ``CBORDecodeValueError``
|
||||
* Fixed ``OverflowError``, ``OSError`` or ``ValueError`` from a failed decoding
|
||||
of epoch-based ``datetime`` not being wrapped as ``CBORDecodeValueError``
|
||||
- Cherry-pick upstream patch to fix build with GCC 14
|
||||
* https://github.com/agronholm/cbor2/pull/238.patch
|
||||
- Add update-alternatives to Requires for post and postun
|
||||
- Install cbor2 binary in %files section using %python_alternative
|
||||
- Run %python_install_alternative in %post section
|
||||
- Run %python_uninstall_alternative in %postun section
|
||||
- Set CBOR2_BUILD_C_EXTENSION to 1 to build C extension
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 14 09:18:38 UTC 2023 - Petr Gajdos <pgajdos@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-cbor2
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -18,7 +18,7 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-cbor2
|
||||
Version: 5.5.1
|
||||
Version: 5.6.5
|
||||
Release: 0
|
||||
Summary: Pure Python CBOR (de)serializer with extensive tag support
|
||||
License: MIT
|
||||
@ -33,6 +33,8 @@ BuildRequires: %{python_module setuptools_scm >= 6.4}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
@ -45,20 +47,29 @@ sed -i 's/--cov//' pyproject.toml
|
||||
|
||||
%build
|
||||
export LANG=en_US.UTF8
|
||||
export CBOR2_BUILD_C_EXTENSION=1
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
export LANG=en_US.UTF8
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
||||
%python_clone -a %{buildroot}%{_bindir}/cbor2
|
||||
|
||||
%check
|
||||
export LANG=en_US.UTF8
|
||||
%pytest_arch
|
||||
|
||||
%post
|
||||
%python_install_alternative cbor2
|
||||
|
||||
%postun
|
||||
%python_uninstall_alternative cbor2
|
||||
|
||||
%files %{python_files}
|
||||
%doc README.rst
|
||||
%license LICENSE.txt
|
||||
%python_alternative %{_bindir}/cbor2
|
||||
%{python_sitearch}/*.so
|
||||
%{python_sitearch}/cbor2
|
||||
%{python_sitearch}/cbor2*-info
|
||||
|
Loading…
Reference in New Issue
Block a user