Accepting request 1030897 from security:idm
OBS-URL: https://build.opensuse.org/request/show/1030897 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/cepces?expand=0&rev=7
This commit is contained in:
commit
14795b88c9
@ -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.6.tar.bz2
Normal file
3
cepces-0.3.6.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:727e7ee1efee0ae09a2d32c61b76ca59ca8167b2b81c156846d979bfce6abe39
|
||||||
|
size 42650
|
@ -1,3 +1,25 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 20 12:15:15 UTC 2022 - David Mulder <dmulder@suse.com>
|
||||||
|
|
||||||
|
Release v0.3.6:
|
||||||
|
- Fix Bug #15 cepces.conf.dist: server should be pointed to actual CEP host
|
||||||
|
- Replace old requests_kerberos with requests_gssapi
|
||||||
|
- setup: Do not install example configs
|
||||||
|
- setup: Respect the prefix the user specifies
|
||||||
|
- Delete the spec file
|
||||||
|
- Make Kerberos delegation configurable
|
||||||
|
- Fix Bug #24 cepces-submit 'TypeError: option values must be strings'
|
||||||
|
- Removed b755b56d25f3e54f8f15d9985fd0597b21c1051d.patch because
|
||||||
|
it is now upstream.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
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>
|
Tue May 10 19:19:56 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@ -21,14 +21,13 @@
|
|||||||
%global logdir %{_localstatedir}/log/%{app_name}
|
%global logdir %{_localstatedir}/log/%{app_name}
|
||||||
|
|
||||||
Name: %{app_name}
|
Name: %{app_name}
|
||||||
Version: 0.3.4
|
Version: 0.3.6
|
||||||
Release: 0%{?dist}
|
Release: 0%{?dist}
|
||||||
Summary: Certificate Enrollment through CEP/CES
|
Summary: Certificate Enrollment through CEP/CES
|
||||||
|
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
URL: https://github.com/ufven/%{app_name}
|
URL: https://github.com/ufven/%{app_name}
|
||||||
Source0: %{name}-%{version}.tar.bz2
|
Source0: %{name}-%{version}.tar.bz2
|
||||||
Patch1: https://github.com/openSUSE/cepces/pull/11/commits/b755b56d25f3e54f8f15d9985fd0597b21c1051d.patch
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
Requires: %{app_name}-certmonger == %{version}
|
Requires: %{app_name}-certmonger == %{version}
|
||||||
@ -47,12 +46,12 @@ Summary: Python part of %{app_name}
|
|||||||
BuildRequires: python3-cryptography >= 1.2
|
BuildRequires: python3-cryptography >= 1.2
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-requests
|
BuildRequires: python3-requests
|
||||||
BuildRequires: python3-requests-kerberos >= 0.9
|
BuildRequires: python3-requests-gssapi
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
|
|
||||||
Requires: python3-cryptography >= 1.2
|
Requires: python3-cryptography >= 1.2
|
||||||
Requires: python3-requests
|
Requires: python3-requests
|
||||||
Requires: python3-requests-kerberos >= 0.9
|
Requires: python3-requests-gssapi
|
||||||
|
|
||||||
%description -n python3-%{app_name}
|
%description -n python3-%{app_name}
|
||||||
%{app_name} is an application for enrolling certificates through CEP and CES.
|
%{app_name} is an application for enrolling certificates through CEP and CES.
|
||||||
@ -83,7 +82,6 @@ SELinux support for %{app_name}
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{app_name}-%{version}
|
%setup -q -n %{app_name}-%{version}
|
||||||
%autopatch -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%py3_build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user