Compare commits
5 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 7c910dc841 | |||
| 636e2d9400 | |||
| 5315113d31 | |||
| 3e5062192c | |||
| 45c1053014 |
168
pyasn1-061.patch
168
pyasn1-061.patch
@@ -1,168 +0,0 @@
|
||||
From 079c176eb00ed7352c9696efa12a0577beeecd71 Mon Sep 17 00:00:00 2001
|
||||
From: Heiko Becker <mail@heiko-becker.de>
|
||||
Date: Wed, 25 Sep 2024 22:38:42 +0200
|
||||
Subject: [PATCH] Stop using pyasn1.compat.octets
|
||||
|
||||
It was removed from pyasn1 in
|
||||
https://github.com/pyasn1/pyasn1/commit/6f770ba886a8931c35cb090a5c3a6d67f5a41bd9
|
||||
|
||||
Fixes #19.
|
||||
---
|
||||
tests/test_pem.py | 3 +--
|
||||
tests/test_rfc3770.py | 3 +--
|
||||
tests/test_rfc4073.py | 3 +--
|
||||
tests/test_rfc4334.py | 3 +--
|
||||
tests/test_rfc5755.py | 3 +--
|
||||
tests/test_rfc6032.py | 7 +++----
|
||||
tests/test_rfc6120.py | 1 -
|
||||
7 files changed, 8 insertions(+), 15 deletions(-)
|
||||
|
||||
diff --git a/tests/test_pem.py b/tests/test_pem.py
|
||||
index dbcca5a7..e0fe334d 100644
|
||||
--- a/tests/test_pem.py
|
||||
+++ b/tests/test_pem.py
|
||||
@@ -7,7 +7,6 @@
|
||||
import sys
|
||||
import unittest
|
||||
|
||||
-from pyasn1.compat.octets import ints2octs
|
||||
from pyasn1_modules import pem
|
||||
|
||||
|
||||
@@ -93,7 +92,7 @@ def testReadBase64fromText(self):
|
||||
24, 102, 241, 236, 50
|
||||
]
|
||||
|
||||
- self.assertEqual(ints2octs(expected), binary)
|
||||
+ self.assertEqual(bytes(expected), binary)
|
||||
|
||||
|
||||
suite = unittest.TestLoader().loadTestsFromModule(sys.modules[__name__])
|
||||
diff --git a/tests/test_rfc3770.py b/tests/test_rfc3770.py
|
||||
index 667ab249..93d40932 100644
|
||||
--- a/tests/test_rfc3770.py
|
||||
+++ b/tests/test_rfc3770.py
|
||||
@@ -10,7 +10,6 @@
|
||||
|
||||
from pyasn1.codec.der.decoder import decode as der_decoder
|
||||
from pyasn1.codec.der.encoder import encode as der_encoder
|
||||
-from pyasn1.compat.octets import str2octs
|
||||
|
||||
from pyasn1_modules import pem
|
||||
from pyasn1_modules import rfc5480
|
||||
@@ -79,7 +78,7 @@ def testOpenTypes(self):
|
||||
self.assertEqual(extn['extnValue'], der_encoder(extnValue))
|
||||
|
||||
if extn['extnID'] == rfc3770.id_pe_wlanSSID:
|
||||
- self.assertIn(str2octs('Example'), extnValue)
|
||||
+ self.assertIn(b'Example', extnValue)
|
||||
|
||||
if extn['extnID'] == rfc5280.id_ce_extKeyUsage:
|
||||
self.assertIn(rfc3770.id_kp_eapOverLAN, extnValue)
|
||||
diff --git a/tests/test_rfc4073.py b/tests/test_rfc4073.py
|
||||
index 4bd5e5f7..3b516ccb 100644
|
||||
--- a/tests/test_rfc4073.py
|
||||
+++ b/tests/test_rfc4073.py
|
||||
@@ -10,7 +10,6 @@
|
||||
|
||||
from pyasn1.codec.der.decoder import decode as der_decoder
|
||||
from pyasn1.codec.der.encoder import encode as der_encoder
|
||||
-from pyasn1.compat.octets import str2octs
|
||||
|
||||
from pyasn1_modules import pem
|
||||
from pyasn1_modules import rfc2634
|
||||
@@ -131,7 +130,7 @@ def testOpenTypes(self):
|
||||
|
||||
self.assertIn(next_ci['contentType'], rfc5652.cmsContentTypesMap)
|
||||
self.assertEqual(rfc5652.id_data, next_ci['contentType'])
|
||||
- self.assertIn(str2octs('Content-Type: text'), next_ci['content'])
|
||||
+ self.assertIn(b'Content-Type: text', next_ci['content'])
|
||||
|
||||
for attr in ci['content']['attrs']:
|
||||
self.assertIn(attr['attrType'], rfc5652.cmsAttributesMap)
|
||||
diff --git a/tests/test_rfc4334.py b/tests/test_rfc4334.py
|
||||
index 9ba5fdf3..e180d676 100644
|
||||
--- a/tests/test_rfc4334.py
|
||||
+++ b/tests/test_rfc4334.py
|
||||
@@ -10,7 +10,6 @@
|
||||
|
||||
from pyasn1.codec.der.decoder import decode as der_decoder
|
||||
from pyasn1.codec.der.encoder import encode as der_encoder
|
||||
-from pyasn1.compat.octets import str2octs
|
||||
|
||||
from pyasn1_modules import pem
|
||||
from pyasn1_modules import rfc5280
|
||||
@@ -67,7 +66,7 @@ def testOpenTypes(self):
|
||||
self.assertEqual(extn['extnValue'], der_encoder(extnValue))
|
||||
|
||||
if extn['extnID'] == rfc4334.id_pe_wlanSSID:
|
||||
- self.assertIn( str2octs('Example'), extnValue)
|
||||
+ self.assertIn(b'Example', extnValue)
|
||||
|
||||
if extn['extnID'] == rfc5280.id_ce_extKeyUsage:
|
||||
self.assertIn(rfc4334.id_kp_eapOverLAN, extnValue)
|
||||
diff --git a/tests/test_rfc5755.py b/tests/test_rfc5755.py
|
||||
index cf4a05fa..46908e23 100644
|
||||
--- a/tests/test_rfc5755.py
|
||||
+++ b/tests/test_rfc5755.py
|
||||
@@ -10,7 +10,6 @@
|
||||
|
||||
from pyasn1.codec.der.decoder import decode as der_decoder
|
||||
from pyasn1.codec.der.encoder import encode as der_encoder
|
||||
-from pyasn1.compat.octets import str2octs
|
||||
|
||||
from pyasn1_modules import pem
|
||||
from pyasn1_modules import rfc5280
|
||||
@@ -85,7 +84,7 @@ def testOpenTypes(self):
|
||||
count += 1
|
||||
if attr['type'] == rfc5755.id_aca_authenticationInfo:
|
||||
self.assertEqual(
|
||||
- str2octs('password'), attr['values'][0]['authInfo'])
|
||||
+ b'password', attr['values'][0]['authInfo'])
|
||||
|
||||
self.assertEqual(5, count)
|
||||
|
||||
diff --git a/tests/test_rfc6032.py b/tests/test_rfc6032.py
|
||||
index 287bad89..2327416d 100644
|
||||
--- a/tests/test_rfc6032.py
|
||||
+++ b/tests/test_rfc6032.py
|
||||
@@ -10,7 +10,6 @@
|
||||
|
||||
from pyasn1.codec.der.decoder import decode as der_decoder
|
||||
from pyasn1.codec.der.encoder import encode as der_encoder
|
||||
-from pyasn1.compat.octets import str2octs
|
||||
|
||||
from pyasn1_modules import pem
|
||||
from pyasn1_modules import rfc5652
|
||||
@@ -64,7 +63,7 @@ def testDerCodec(self):
|
||||
self.assertFalse(rest)
|
||||
self.assertTrue(keyid.prettyPrint())
|
||||
self.assertEqual(attrVal0, der_encoder(keyid))
|
||||
- self.assertEqual(str2octs('ptf-kdc-812374'), keyid)
|
||||
+ self.assertEqual(b'ptf-kdc-812374', keyid)
|
||||
|
||||
def testOpenTypes(self):
|
||||
substrate = pem.readBase64fromText(self.encrypted_key_pkg_pem_text)
|
||||
@@ -86,8 +85,8 @@ def testOpenTypes(self):
|
||||
self.assertNotEqual('0x', attr['attrValues'][0].prettyPrint()[:2])
|
||||
|
||||
if attr['attrType'] == rfc6032.id_aa_KP_contentDecryptKeyID:
|
||||
- self.assertEqual(str2octs(
|
||||
- 'ptf-kdc-812374'), attr['attrValues'][0])
|
||||
+ self.assertEqual(
|
||||
+ b'ptf-kdc-812374', attr['attrValues'][0])
|
||||
|
||||
|
||||
suite = unittest.TestLoader().loadTestsFromModule(sys.modules[__name__])
|
||||
diff --git a/tests/test_rfc6120.py b/tests/test_rfc6120.py
|
||||
index bdedab8c..a6217454 100644
|
||||
--- a/tests/test_rfc6120.py
|
||||
+++ b/tests/test_rfc6120.py
|
||||
@@ -10,7 +10,6 @@
|
||||
|
||||
from pyasn1.codec.der.decoder import decode as der_decoder
|
||||
from pyasn1.codec.der.encoder import encode as der_encoder
|
||||
-from pyasn1.compat.octets import str2octs
|
||||
|
||||
from pyasn1_modules import pem
|
||||
from pyasn1_modules import rfc5280
|
||||
BIN
pyasn1_modules-0.4.1.tar.gz
LFS
BIN
pyasn1_modules-0.4.1.tar.gz
LFS
Binary file not shown.
3
pyasn1_modules-0.4.2.tar.gz
Normal file
3
pyasn1_modules-0.4.2.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:677091de870a80aae844b1ca6134f54652fa2c8c5a52aa396440ac3106e941e6
|
||||
size 307892
|
||||
@@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 19 10:28:23 UTC 2025 - Pablo Suárez Hernández <pablo.suarezhernandez@suse.com>
|
||||
|
||||
- Fix License tag to the right BSD-2-Clause license in spec file
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 6 16:34:49 UTC 2025 - Nico Krapp <nico.krapp@suse.com>
|
||||
|
||||
- fix changelog formatting
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 6 13:42:27 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 0.4.2
|
||||
* Updated dependency constraint to be compatible with pyasn1
|
||||
0.6.1, which removed the pyasn1.compat.octets module
|
||||
- Drop pyasn1-061.patch, merged upstream
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 7 15:29:49 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
@@ -282,7 +300,6 @@ Tue May 7 08:25:25 UTC 2013 - michael@stroeder.com
|
||||
- Update to upstream release 0.0.5
|
||||
|
||||
Revision 0.0.5
|
||||
--------------
|
||||
|
||||
- License updated to vanilla BSD 2-Clause to ease package use
|
||||
(http://opensource.org/licenses/BSD-2-Clause).
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-pyasn1-modules
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,15 +18,13 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-pyasn1-modules
|
||||
Version: 0.4.1
|
||||
Version: 0.4.2
|
||||
Release: 0
|
||||
Summary: Collection of protocols modules written in ASN.1 language
|
||||
License: BSD-3-Clause
|
||||
License: BSD-2-Clause
|
||||
Group: Development/Languages/Python
|
||||
URL: https://github.com/pyasn1/pyasn1-modules
|
||||
Source: https://files.pythonhosted.org/packages/source/p/pyasn1-modules/pyasn1_modules-%{version}.tar.gz
|
||||
# PATCH-FIX-UPSTREAM https://github.com/pyasn1/pyasn1-modules/pull/22 Stop using pyasn1.compat.octets
|
||||
Patch0: pyasn1-061.patch
|
||||
BuildRequires: %{python_module base >= 3.8}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pyasn1 >= 0.4.7}
|
||||
|
||||
Reference in New Issue
Block a user