import spacewalk-certs-tools-2.8.8-1.1.el8
This commit is contained in:
commit
58aff7032e
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
SOURCES/spacewalk-certs-tools-2.8.8.tar.gz
|
1
.spacewalk-certs-tools.metadata
Normal file
1
.spacewalk-certs-tools.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
7c21053141f16a42c3a710d3027f713cb5743100 SOURCES/spacewalk-certs-tools-2.8.8.tar.gz
|
63
SOURCES/9eaa08a3a881a756357ae5777ea6f5d3d90c79a6.patch
Normal file
63
SOURCES/9eaa08a3a881a756357ae5777ea6f5d3d90c79a6.patch
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
From 9eaa08a3a881a756357ae5777ea6f5d3d90c79a6 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Michael Mraka <michael.mraka@redhat.com>
|
||||||
|
Date: Mon, 15 Jul 2019 13:46:01 +0200
|
||||||
|
Subject: [PATCH] 1728416 - python3 compatible file operations
|
||||||
|
|
||||||
|
---
|
||||||
|
spacewalk/certs-tools/client_config_update.py | 19 +++++++++++++------
|
||||||
|
1 file changed, 13 insertions(+), 6 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/spacewalk/certs-tools/client_config_update.py b/spacewalk/certs-tools/client_config_update.py
|
||||||
|
index 01eca6ba8b0..9bd6df9aa56 100755
|
||||||
|
--- a/spacewalk/certs-tools/client_config_update.py
|
||||||
|
+++ b/spacewalk/certs-tools/client_config_update.py
|
||||||
|
@@ -65,6 +65,13 @@
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import tempfile
|
||||||
|
+try:
|
||||||
|
+ from rhn.i18n import bstr, sstr
|
||||||
|
+except ImportError:
|
||||||
|
+ def sstr(s):
|
||||||
|
+ return s
|
||||||
|
+ def bstr(s):
|
||||||
|
+ return s
|
||||||
|
|
||||||
|
DEFAULT_CLIENT_CONFIG_OVERRIDES = 'client-config-overrides.txt'
|
||||||
|
|
||||||
|
@@ -110,7 +117,7 @@ def readConfigFile(configFile):
|
||||||
|
d = {}
|
||||||
|
|
||||||
|
for line in fin.readlines():
|
||||||
|
- kv = _parseConfigLine(line)
|
||||||
|
+ kv = _parseConfigLine(sstr(line))
|
||||||
|
if kv:
|
||||||
|
d[kv[0]] = kv[1]
|
||||||
|
return d
|
||||||
|
@@ -131,21 +138,21 @@ def mapNewSettings(configFile, dnew):
|
||||||
|
|
||||||
|
# write to temp file
|
||||||
|
for line in fin.readlines():
|
||||||
|
- kv = _parseConfigLine(line)
|
||||||
|
+ kv = _parseConfigLine(sstr(line))
|
||||||
|
if not kv:
|
||||||
|
# not a setting, write the unaltered line
|
||||||
|
- fo.write(line)
|
||||||
|
+ fo.write(bstr(line))
|
||||||
|
else:
|
||||||
|
# it's a setting, populate from the dictionary
|
||||||
|
if kv[0] in dnew:
|
||||||
|
if dnew[kv[0]] != kv[1]:
|
||||||
|
- fo.write('%s=%s\n' % (kv[0], dnew[kv[0]]))
|
||||||
|
+ fo.write(bstr('%s=%s\n' % (kv[0], dnew[kv[0]])))
|
||||||
|
changedYN = 1
|
||||||
|
else:
|
||||||
|
- fo.write(line)
|
||||||
|
+ fo.write(bstr(line))
|
||||||
|
# it's a setting but not being mapped
|
||||||
|
else:
|
||||||
|
- fo.write(line)
|
||||||
|
+ fo.write(bstr(line))
|
||||||
|
fin.close()
|
||||||
|
|
||||||
|
if changedYN:
|
31
SOURCES/f8d386fbd42339912284bd9ef4d6be2e065958b9.patch
Normal file
31
SOURCES/f8d386fbd42339912284bd9ef4d6be2e065958b9.patch
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
From f8d386fbd42339912284bd9ef4d6be2e065958b9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Michael Mraka <michael.mraka@redhat.com>
|
||||||
|
Date: Fri, 20 Sep 2019 15:07:59 +0200
|
||||||
|
Subject: [PATCH] sys.stderr.write() expects string not bytes
|
||||||
|
|
||||||
|
fixing
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/usr/bin/rhn-ssl-tool", line 50, in <module>
|
||||||
|
sys.exit(mod.main() or 0)
|
||||||
|
File "/usr/lib/python3.7/site-packages/certs/rhn_ssl_tool.py", line 1298, in main
|
||||||
|
writeError(e)
|
||||||
|
File "/usr/lib/python3.7/site-packages/certs/rhn_ssl_tool.py", line 1275, in writeError
|
||||||
|
sys.stderr.write(bstr('\nERROR: %s\n' % e))
|
||||||
|
TypeError: write() argument must be str, not bytes
|
||||||
|
---
|
||||||
|
spacewalk/certs-tools/rhn_ssl_tool.py | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/spacewalk/certs-tools/rhn_ssl_tool.py b/spacewalk/certs-tools/rhn_ssl_tool.py
|
||||||
|
index 7d28b24063b..ae761576c5f 100755
|
||||||
|
--- a/spacewalk/certs-tools/rhn_ssl_tool.py
|
||||||
|
+++ b/spacewalk/certs-tools/rhn_ssl_tool.py
|
||||||
|
@@ -1272,7 +1272,7 @@ def main():
|
||||||
|
"""
|
||||||
|
|
||||||
|
def writeError(e):
|
||||||
|
- sys.stderr.write(bstr('\nERROR: %s\n' % e))
|
||||||
|
+ sys.stderr.write('\nERROR: %s\n' % e)
|
||||||
|
|
||||||
|
ret = 0
|
||||||
|
try:
|
278
SPECS/spacewalk-certs-tools.spec
Normal file
278
SPECS/spacewalk-certs-tools.spec
Normal file
@ -0,0 +1,278 @@
|
|||||||
|
%if 0%{?suse_version}
|
||||||
|
%global pub_bootstrap_dir /srv/www/htdocs/pub/bootstrap
|
||||||
|
%else
|
||||||
|
%global pub_bootstrap_dir /var/www/html/pub/bootstrap
|
||||||
|
%endif
|
||||||
|
%global rhnroot %{_datadir}/rhn
|
||||||
|
|
||||||
|
%if 0%{?fedora} || 0%{?rhel} >= 8
|
||||||
|
%global build_py3 1
|
||||||
|
%global default_py3 1
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if ( 0%{?fedora} && 0%{?fedora} < 28 ) || ( 0%{?rhel} && 0%{?rhel} < 8 )
|
||||||
|
%global build_py2 1
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%define pythonX %{?default_py3: python3}%{!?default_py3: python2}
|
||||||
|
|
||||||
|
Name: spacewalk-certs-tools
|
||||||
|
Summary: Spacewalk SSL Key/Cert Tool
|
||||||
|
License: GPLv2
|
||||||
|
Version: 2.8.8
|
||||||
|
Release: 1.1%{?dist}
|
||||||
|
URL: https://github.com/spacewalkproject/spacewalk
|
||||||
|
Source0: https://github.com/spacewalkproject/spacewalk/archive/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
# Upstream patches
|
||||||
|
Patch0: 9eaa08a3a881a756357ae5777ea6f5d3d90c79a6.patch
|
||||||
|
Patch1: f8d386fbd42339912284bd9ef4d6be2e065958b9.patch
|
||||||
|
|
||||||
|
BuildArch: noarch
|
||||||
|
Requires: %{pythonX}-%{name} = %{version}-%{release}
|
||||||
|
Requires: openssl rpm-build
|
||||||
|
Requires: tar
|
||||||
|
Requires: /usr/bin/sudo
|
||||||
|
BuildRequires: docbook-utils
|
||||||
|
%if 0%{?build_py3}
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
Requires: python3-rhn-client-tools
|
||||||
|
Requires: python3-rhn-setup
|
||||||
|
%else
|
||||||
|
BuildRequires: python-devel
|
||||||
|
Requires: python2-rhn-client-tools
|
||||||
|
Requires: python2-rhn-setup
|
||||||
|
%endif
|
||||||
|
Obsoletes: rhns-certs < 5.3.0
|
||||||
|
Obsoletes: rhns-certs-tools < 5.3.0
|
||||||
|
# can not provides = %%{version} since some old packages expect > 3.6.0
|
||||||
|
Provides: rhns-certs = 5.3.0
|
||||||
|
Provides: rhns-certs-tools = 5.3.0
|
||||||
|
|
||||||
|
%description
|
||||||
|
This package contains tools to generate the SSL certificates required by
|
||||||
|
Spacewalk.
|
||||||
|
|
||||||
|
%if 0%{?build_py2}
|
||||||
|
%package -n python2-%{name}
|
||||||
|
Summary: Spacewalk SSL Key/Cert Tool
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
Requires: python2-rhn-client-tools
|
||||||
|
Requires: spacewalk-backend-libs >= 0.8.28
|
||||||
|
%if 0%{?rhel} && 0%{?rhel} <= 5
|
||||||
|
Requires: python-hashlib
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%description -n python2-%{name}
|
||||||
|
Python 2 specific files for %{name}.
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?build_py3}
|
||||||
|
%package -n python3-%{name}
|
||||||
|
Summary: Spacewalk SSL Key/Cert Tool
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
Requires: python3-rhn-client-tools
|
||||||
|
Requires: python3-spacewalk-backend-libs
|
||||||
|
BuildRequires: python3-rpm-macros
|
||||||
|
BuildRequires: python3
|
||||||
|
|
||||||
|
%description -n python3-%{name}
|
||||||
|
Python 3 specific files for %{name}.
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%patch0 -p3
|
||||||
|
%patch1 -p3
|
||||||
|
|
||||||
|
%build
|
||||||
|
make -f Makefile.certs all
|
||||||
|
|
||||||
|
%if 0%{?suse_version}
|
||||||
|
# we need to rewrite etc/httpd/conf => etc/apache2
|
||||||
|
sed -i 's|etc/httpd/conf|etc/apache2|g' rhn_ssl_tool.py
|
||||||
|
sed -i 's|etc/httpd/conf|etc/apache2|g' sslToolConfig.py
|
||||||
|
sed -i 's|etc/httpd/conf|etc/apache2|g' sign.sh
|
||||||
|
sed -i 's|etc/httpd/conf|etc/apache2|g' ssl-howto.txt
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%install
|
||||||
|
install -d -m 755 $RPM_BUILD_ROOT/%{rhnroot}/certs
|
||||||
|
%if 0%{?build_py2}
|
||||||
|
make -f Makefile.certs install PREFIX=$RPM_BUILD_ROOT ROOT=%{rhnroot} \
|
||||||
|
PYTHONPATH=%{python2_sitelib} PYTHONVERSION=%{python2_version} \
|
||||||
|
MANDIR=%{_mandir} PUB_BOOTSTRAP_DIR=%{pub_bootstrap_dir}
|
||||||
|
%endif
|
||||||
|
%if 0%{?build_py3}
|
||||||
|
sed -i 's|#!/usr/bin/python|#!/usr/bin/python3|' rhn-ssl-tool rhn-bootstrap client_config_update.py
|
||||||
|
sed -i 's|import urlparse|from urllib.parse import urlparse|' rhn_bootstrap.py
|
||||||
|
make -f Makefile.certs install PREFIX=$RPM_BUILD_ROOT ROOT=%{rhnroot} \
|
||||||
|
PYTHONPATH=%{python3_sitelib} PYTHONVERSION=%{python3_version} \
|
||||||
|
MANDIR=%{_mandir} PUB_BOOTSTRAP_DIR=%{pub_bootstrap_dir}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%define default_suffix %{?default_py3:-%{python3_version}}%{!?default_py3:-%{python2_version}}
|
||||||
|
ln -s rhn-ssl-tool%{default_suffix} $RPM_BUILD_ROOT%{_bindir}/rhn-ssl-tool
|
||||||
|
ln -s rhn-bootstrap%{default_suffix} $RPM_BUILD_ROOT%{_bindir}/rhn-bootstrap
|
||||||
|
|
||||||
|
%if 0%{?suse_version}
|
||||||
|
%py_compile -O %{buildroot}/%{python_sitelib}
|
||||||
|
%if 0%{?build_py3}
|
||||||
|
%py3_compile -O %{buildroot}/%{python3_sitelib}
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%clean
|
||||||
|
|
||||||
|
%files
|
||||||
|
%attr(755,root,root) %{rhnroot}/certs/sign.sh
|
||||||
|
%attr(755,root,root) %{rhnroot}/certs/gen-rpm.sh
|
||||||
|
%attr(755,root,root) %{rhnroot}/certs/update-ca-cert-trust.sh
|
||||||
|
%attr(755,root,root) %{_bindir}/rhn-sudo-ssl-tool
|
||||||
|
%attr(755,root,root) %{_bindir}/rhn-ssl-tool
|
||||||
|
%attr(755,root,root) %{_bindir}/rhn-bootstrap
|
||||||
|
%doc %{_mandir}/man1/rhn-*.1*
|
||||||
|
%doc LICENSE
|
||||||
|
%doc ssl-howto-simple.txt ssl-howto.txt
|
||||||
|
%{pub_bootstrap_dir}/client_config_update.py*
|
||||||
|
%if 0%{?suse_version}
|
||||||
|
%dir %{rhnroot}
|
||||||
|
%dir /srv/www/htdocs/pub
|
||||||
|
%dir %{pub_bootstrap_dir}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?build_py2}
|
||||||
|
%files -n python2-%{name}
|
||||||
|
%{python2_sitelib}/certs
|
||||||
|
%attr(755,root,root) %{_bindir}/rhn-ssl-tool-%{python2_version}
|
||||||
|
%attr(755,root,root) %{_bindir}/rhn-bootstrap-%{python2_version}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?build_py3}
|
||||||
|
%files -n python3-%{name}
|
||||||
|
%{python3_sitelib}/certs
|
||||||
|
%attr(755,root,root) %{_bindir}/rhn-ssl-tool-%{python3_version}
|
||||||
|
%attr(755,root,root) %{_bindir}/rhn-bootstrap-%{python3_version}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Aug 20 2024 Andrew Lukoshko <alukoshko@almalinux.org> 2.8.8-1.1
|
||||||
|
- made python2 optional
|
||||||
|
- made python3 default for RHEL >= 8
|
||||||
|
- added upstream fixes
|
||||||
|
|
||||||
|
* Wed Mar 21 2018 Jiri Dostal <jdostal@redhat.com> 2.8.8-1
|
||||||
|
- Updating copyright years for 2018
|
||||||
|
|
||||||
|
* Tue Feb 27 2018 Michael Mraka <michael.mraka@redhat.com> 2.8.7-1
|
||||||
|
- options are not defined
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Michael Mraka <michael.mraka@redhat.com> 2.8.6-1
|
||||||
|
- removed %%%%defattr from specfile
|
||||||
|
- remove install/clean section initial cleanup
|
||||||
|
- removed Group from specfile
|
||||||
|
- removed BuildRoot from specfiles
|
||||||
|
|
||||||
|
* Thu Dec 14 2017 Eric Herget <eherget@redhat.com> 2.8.5-1
|
||||||
|
- 1456471 - PR570 - Using own certificates for installer
|
||||||
|
- 1456471 - PR570 - [RFE] Using own certifications for installer (CA, private
|
||||||
|
key)
|
||||||
|
|
||||||
|
* Fri Oct 27 2017 Michael Mraka <michael.mraka@redhat.com> 2.8.4-1
|
||||||
|
- python3 is missing in buildroot on Fedora 25
|
||||||
|
|
||||||
|
* Wed Oct 25 2017 Michael Mraka <michael.mraka@redhat.com> 2.8.3-1
|
||||||
|
- python3 compatibility fixes
|
||||||
|
|
||||||
|
* Fri Oct 20 2017 Michael Mraka <michael.mraka@redhat.com> 2.8.2-1
|
||||||
|
- made code python3 compatible
|
||||||
|
- install files into python_sitelib/python3_sitelib
|
||||||
|
- splitted spacewalk-certs-tools into python2/python3 specific packages
|
||||||
|
|
||||||
|
* Wed Sep 06 2017 Michael Mraka <michael.mraka@redhat.com> 2.8.1-1
|
||||||
|
- purged changelog entries for Spacewalk 2.0 and older
|
||||||
|
- use standard brp-python-bytecompile
|
||||||
|
- Bumping package versions for 2.8.
|
||||||
|
|
||||||
|
* Mon Jul 31 2017 Eric Herget <eherget@redhat.com> 2.7.3-1
|
||||||
|
- update copyright year
|
||||||
|
|
||||||
|
* Thu Jun 22 2017 Grant Gainey 2.7.2-1
|
||||||
|
- Allow passing multiple GPG keys to rhn-bootstrap
|
||||||
|
|
||||||
|
* Tue May 16 2017 Grant Gainey 2.7.1-1
|
||||||
|
- 1030013 - fix minor typos in bootstrap.sh
|
||||||
|
- Remove unused imports.
|
||||||
|
- Updated links to github in spec files
|
||||||
|
- Migrating Fedorahosted to GitHub
|
||||||
|
- Bumping package versions for 2.7.
|
||||||
|
- Bumping package versions for 2.6.
|
||||||
|
|
||||||
|
* Wed May 25 2016 Tomas Kasparek <tkasparek@redhat.com> 2.5.3-1
|
||||||
|
- updating copyright years
|
||||||
|
|
||||||
|
* Tue May 10 2016 Grant Gainey 2.5.2-1
|
||||||
|
- spacewalk-certs-tools: build on openSUSE
|
||||||
|
|
||||||
|
* Wed Feb 03 2016 Jan Dobes 2.5.1-1
|
||||||
|
- 1302900 - not run on EL5 systems
|
||||||
|
- Bumping package versions for 2.5.
|
||||||
|
|
||||||
|
* Thu Sep 24 2015 Jan Dobes 2.4.7-1
|
||||||
|
- Bumping copyright year.
|
||||||
|
|
||||||
|
* Fri Aug 07 2015 Jan Dobes 2.4.6-1
|
||||||
|
- add file to RPM
|
||||||
|
|
||||||
|
* Fri Aug 07 2015 Jan Dobes 2.4.5-1
|
||||||
|
- add file to RPM
|
||||||
|
|
||||||
|
* Thu Aug 06 2015 Jan Dobes 2.4.4-1
|
||||||
|
- trust CA certificate when client RPM is installed
|
||||||
|
|
||||||
|
* Tue Jul 14 2015 Tomas Kasparek <tkasparek@redhat.com> 2.4.3-1
|
||||||
|
- remove Except KeyboardInterrupt from imports
|
||||||
|
|
||||||
|
* Fri May 08 2015 Stephen Herr <sherr@redhat.com> 2.4.2-1
|
||||||
|
- 1219946 - We need python-hashlib for doing sha256 on RHEL 5
|
||||||
|
- 1219946 - Make rhn-ssl-tool use sha256 by default for crt / csr signatures
|
||||||
|
|
||||||
|
* Fri Apr 24 2015 Matej Kollar <mkollar@redhat.com> 2.4.1-1
|
||||||
|
- remove whitespace from .sgml files
|
||||||
|
- Bumping package versions for 2.4.
|
||||||
|
|
||||||
|
* Fri Mar 27 2015 Grant Gainey 2.3.3-1
|
||||||
|
- tuple assignment should be list in client_config_update.py
|
||||||
|
|
||||||
|
* Thu Mar 19 2015 Grant Gainey 2.3.2-1
|
||||||
|
- Updating copyright info for 2015
|
||||||
|
|
||||||
|
* Wed Jan 14 2015 Matej Kollar <mkollar@redhat.com> 2.3.1-1
|
||||||
|
- Getting rid of Tabs and trailing spaces in Python
|
||||||
|
- Getting rid of Tabs and trailing spaces in LICENSE, COPYING, and README files
|
||||||
|
- Bumping package versions for 2.3.
|
||||||
|
|
||||||
|
* Fri Jul 11 2014 Milan Zazrivec <mzazrivec@redhat.com> 2.2.1-1
|
||||||
|
- fix copyright years
|
||||||
|
- Bumping package versions for 2.2.
|
||||||
|
|
||||||
|
* Tue Jan 14 2014 Matej Kollar <mkollar@redhat.com> 2.1.6-1
|
||||||
|
- Updating the copyright years info
|
||||||
|
|
||||||
|
* Fri Jan 10 2014 Michael Mraka <michael.mraka@redhat.com> 2.1.5-1
|
||||||
|
- 1040682 - older Proxies don't implement PRODUCT_NAME
|
||||||
|
|
||||||
|
* Mon Oct 14 2013 Michael Mraka <michael.mraka@redhat.com> 2.1.4-1
|
||||||
|
- cleaning up old svn Ids
|
||||||
|
|
||||||
|
* Mon Sep 30 2013 Michael Mraka <michael.mraka@redhat.com> 2.1.3-1
|
||||||
|
- removed trailing whitespaces
|
||||||
|
|
||||||
|
* Tue Sep 17 2013 Michael Mraka <michael.mraka@redhat.com> 2.1.2-1
|
||||||
|
- Grammar error occurred
|
||||||
|
|
||||||
|
* Tue Aug 06 2013 Tomas Kasparek <tkasparek@redhat.com> 2.1.1-1
|
||||||
|
- Branding clean-up of proxy stuff in cert-tools dir
|
||||||
|
- Bumping package versions for 2.1.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user