14
0
forked from pool/python-pyasn1

Accepting request 1129186 from devel:languages:python

- update to 0.5.1:
  * Added support for PyPy 3.10 and Python 3.12
  * Updated RTD configuration to include a dummy index.rst
    redirecting to contents.html, ensuring compatibility with
    third-party documentation and search indexes.
  * Fixed the API breakage wih decoder.decode(substrateFun=...).
  * A substrateFun passed to ``decoder.decode()`` can now be
    either v0.4 Non-Streaming or v0.5 Streaming.
    pyasn1 will detect and handle both cases transparently.
  * A substrateFun passed to one of the new streaming decoders is
  * still expected to be v0.5 Streaming only.

  * Debug logging refactored for more efficiency when disabled and for more
    functionality when in use. Specifically, the global LOG object can easily
    be used from any function/method, not just from codec main loop as it used
  * More debug logging added to BER family of codecs to ease encoding problems
  - Constructed types now verify their consistency by invoking
    components rather than isSuperTypeOf() as it used to be. Constriants check
  - The abs(Integer()) & abs(Real()) operation now returns respective pyasn1
    format for the type (e.g. BOOLEAN is always PRIMITIVE, SET is always
 * Fixed a bug/typo at Boolean CER encoder

OBS-URL: https://build.opensuse.org/request/show/1129186
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyasn1?expand=0&rev=44
This commit is contained in:
2023-11-28 21:18:36 +00:00
committed by Git OBS Bridge
4 changed files with 28 additions and 19 deletions

BIN
pyasn1-0.5.0.tar.gz (Stored with Git LFS)

Binary file not shown.

3
pyasn1-0.5.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6d391a96e59b23130a5cfa74d6fd7f388dbbe26cc8f1edf39fdddf08d9d6676c
size 147134

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Mon Nov 27 15:52:23 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 0.5.1:
* Added support for PyPy 3.10 and Python 3.12
* Updated RTD configuration to include a dummy index.rst
redirecting to contents.html, ensuring compatibility with
third-party documentation and search indexes.
* Fixed the API breakage wih decoder.decode(substrateFun=...).
* A substrateFun passed to ``decoder.decode()`` can now be
either v0.4 Non-Streaming or v0.5 Streaming.
pyasn1 will detect and handle both cases transparently.
* A substrateFun passed to one of the new streaming decoders is
* still expected to be v0.5 Streaming only.
-------------------------------------------------------------------
Thu May 4 19:21:20 UTC 2023 - Dirk Müller <dmueller@suse.com>

View File

@@ -16,11 +16,9 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define oldpython python
%{?sle15_python_module_pythons}
Name: python-pyasn1
Version: 0.5.0
Version: 0.5.1
Release: 0
Summary: ASN.1 types and codecs
License: BSD-2-Clause
@@ -33,10 +31,6 @@ BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%ifpython2
Obsoletes: %{oldpython}-asn1 < 0.2.3
Provides: %{oldpython}-asn1 = %{version}
%endif
%python_subpackages
%description