Accepting request 980394 from home:dmulder:branches:security:idm
Release v0.3.5: - Added polling_interval which tells certmonger how long to wait in seconds before retrying. - Implemented Certificate authentication method. - Python 3.10 compatible. OBS-URL: https://build.opensuse.org/request/show/980394 OBS-URL: https://build.opensuse.org/package/show/security:idm/cepces?expand=0&rev=12
This commit is contained in:
parent
043a7a5567
commit
4d2d1d9b19
@ -1,23 +0,0 @@
|
||||
From b755b56d25f3e54f8f15d9985fd0597b21c1051d Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Dirk=20M=C3=BCller?= <dirk@dmllr.de>
|
||||
Date: Tue, 10 May 2022 18:18:32 +0200
|
||||
Subject: [PATCH] Use Python 3.10 compatible import path
|
||||
|
||||
This should work with any python >= 3.0
|
||||
---
|
||||
cepces/xml/binding.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/cepces/xml/binding.py b/cepces/xml/binding.py
|
||||
index 2749399..9928c1f 100644
|
||||
--- a/cepces/xml/binding.py
|
||||
+++ b/cepces/xml/binding.py
|
||||
@@ -18,7 +18,7 @@
|
||||
# pylint: disable=protected-access,too-few-public-methods,too-many-arguments
|
||||
# pylint: disable=too-many-ancestors
|
||||
"""Module containing XML bindings."""
|
||||
-from collections import MutableSequence
|
||||
+from collections.abc import MutableSequence
|
||||
from xml.etree import ElementTree
|
||||
import inspect
|
||||
from abc import ABCMeta, abstractmethod
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ec51326f2f887471926ec1c62a48d7a071ca577c80a1c1dc5eb859d7dd68d48b
|
||||
size 43412
|
3
cepces-0.3.5.tar.bz2
Normal file
3
cepces-0.3.5.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c5d6af8946bec6ea9982e007059af690f9222b4e3c2c12630cc3e26519826ddf
|
||||
size 43801
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 01 18:58:29 UTC 2022 - David Mulder <dmulder@suse.com>
|
||||
|
||||
Release v0.3.5:
|
||||
- Added polling_interval which tells certmonger how long to wait in seconds before retrying.
|
||||
- Implemented Certificate authentication method.
|
||||
- Python 3.10 compatible.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 10 19:19:56 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
@ -21,14 +21,13 @@
|
||||
%global logdir %{_localstatedir}/log/%{app_name}
|
||||
|
||||
Name: %{app_name}
|
||||
Version: 0.3.4
|
||||
Version: 0.3.5
|
||||
Release: 0%{?dist}
|
||||
Summary: Certificate Enrollment through CEP/CES
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
URL: https://github.com/ufven/%{app_name}
|
||||
Source0: %{name}-%{version}.tar.bz2
|
||||
Patch1: https://github.com/openSUSE/cepces/pull/11/commits/b755b56d25f3e54f8f15d9985fd0597b21c1051d.patch
|
||||
BuildArch: noarch
|
||||
|
||||
Requires: %{app_name}-certmonger == %{version}
|
||||
@ -83,7 +82,6 @@ SELinux support for %{app_name}
|
||||
|
||||
%prep
|
||||
%setup -q -n %{app_name}-%{version}
|
||||
%autopatch -p1
|
||||
|
||||
%build
|
||||
%py3_build
|
||||
|
Loading…
Reference in New Issue
Block a user