Compare commits

...

No commits in common. 'c9' and 'i10cs' have entirely different histories.
c9 ... i10cs

2
.gitignore vendored

@ -1 +1 @@
SOURCES/RELEASE_1_1.tar.gz
SOURCES/keycloak-httpd-client-install-1.3.tar.gz

@ -1 +1 @@
eb45498bf2c433419dae95b6f89a8009980e82bd SOURCES/RELEASE_1_1.tar.gz
f2764c3e2ebb1d96b954045c084c6fc5739c9b2e SOURCES/keycloak-httpd-client-install-1.3.tar.gz

@ -12,24 +12,24 @@
%endif
Name: %{srcname}
Version: 1.1
Release: 10%{?dist}
Version: 1.3
Release: 2%{?dist}
Summary: %{summary}
%global git_tag RELEASE_%(r=%{version}; echo $r | tr '.' '_')
License: GPLv3
URL: https://github.com/jdennis/keycloak-httpd-client-install
Source0: https://github.com/jdennis/keycloak-httpd-client-install/archive/%{git_tag}.tar.gz
License: GPL-3.0-or-later
URL: https://github.com/latchset/keycloak-httpd-client-install
Source0: https://github.com/latchset/keycloak-httpd-client-install/releases/download/v%{version}/%{name}-%{version}.tar.gz
BuildArch: noarch
%if %{with python2}
BuildRequires: python2-devel
%endif # with_python2
%endif
# ^^^ with_python2
%if 0%{?with_python3}
BuildRequires: python3-devel
BuildRequires: (python3-setuptools if python3-devel >= 3.12)
%endif
Requires: %{_bindir}/keycloak-httpd-client-install
@ -58,7 +58,8 @@ Requires: %{_bindir}/keycloak-httpd-client-install
Keycloak is an authentication server. This package contains libraries and
programs which can invoke the Keycloak REST API and configure clients
of a Keycloak server.
%endif # with_python2
%endif
# ^^^ with_python2
%if 0%{?with_python3}
%package -n python3-%{srcname}
@ -70,6 +71,7 @@ Requires: %{name} = %{version}-%{release}
Requires: python3-requests
Requires: python3-requests-oauthlib
Requires: python3-jinja2
Requires: python3-lxml
%description -n python3-%{srcname}
Keycloak is an authentication server. This package contains libraries and
@ -79,12 +81,13 @@ of a Keycloak server.
%endif
%prep
%autosetup -n %{srcname}-%{git_tag} -p1
%autosetup -n %{name}-%{version} -p1
%build
%if %{with python2}
%py2_build
%endif # with_python2
%endif
# ^^^ with_python2
%if 0%{?with_python3}
%py3_build
@ -96,7 +99,8 @@ of a Keycloak server.
# overwritten with every setup.py install, and in general we want the
# python3 version to be the default.
%py2_install
%endif # with_python2
%endif
# ^^^ with_python2
%if 0%{?with_python3}
# py3_install won't overwrite files if they have a timestamp greater-than
@ -105,7 +109,8 @@ of a Keycloak server.
# version in the py3 install. Therefore remove any files susceptible to this.
%if %{with python2}
rm %{buildroot}%{_bindir}/keycloak-httpd-client-install
%endif # with_python2
%endif
# ^^^ with_python2
%py3_install
%endif
@ -127,7 +132,8 @@ install -c -m 644 doc/keycloak-httpd-client-install.8 %{buildroot}/%{_mandir}/ma
%{_bindir}/keycloak-rest
%{_mandir}/man8/*
%endif
%endif # with_python2
%endif
# ^^^ with_python2
%if 0%{?with_python3}
%files -n python3-%{srcname}
@ -138,12 +144,59 @@ install -c -m 644 doc/keycloak-httpd-client-install.8 %{buildroot}/%{_mandir}/ma
%endif
%changelog
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.1-10
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.3-2
- Bump release for October 2024 mass rebuild:
Resolves: RHEL-64018
* Fri Oct 25 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 1.3-1
- Rebuilt for MSVSphere 10
* Fri Sep 20 2024 Tomas Halman <thalman@redhat.com> - 1.3-1
- Rebase to version 1.3
- Resolves: RHEL-59677 - khci won't work with Quarkus-based Keycloak due to missing /auth path
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.1-22
- Bump release for June 2024 mass rebuild
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-21
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-20
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Wed Oct 4 2023 Tomas Halman <thalman@redhat.com> - 1.1-19
- Resolves: rhbz#2115262 keycloak-httpd-client-install missing dependency to python-lxml
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-18
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 1.1-17
- Rebuilt for Python 3.12
* Tue Mar 7 2023 Tomas Halman <thalman@redhat.com> - 1.1-16
- migrated to SPDX license
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Wed Jan 4 2023 keycloak-httpd-client-install fails to build with Python 3.12 - 1.1.14
- Resolves: rhbz#2155009 - keycloak-httpd-client-install fails to build with
Python 3.12: ModuleNotFoundError: No module named 'distutils'
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1.1-12
- Rebuilt for Python 3.11
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.1-9
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1.1-9
- Rebuilt for Python 3.10
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild

Loading…
Cancel
Save