2016-05-31 20:35:13 +00:00
|
|
|
%global srcname keycloak-httpd-client-install
|
|
|
|
%global summary Tools to configure Apache HTTPD as Keycloak client
|
|
|
|
|
|
|
|
%if 0%{?fedora}
|
|
|
|
%global with_python3 1
|
|
|
|
%endif
|
|
|
|
|
|
|
|
Name: %{srcname}
|
2017-01-06 22:29:46 +00:00
|
|
|
Version: 0.5
|
2017-02-10 17:46:04 +00:00
|
|
|
Release: 2%{?dist}
|
2016-05-31 20:35:13 +00:00
|
|
|
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#/%{srcname}-%{version}.tar.gz
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
BuildRequires: python2-devel
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
%endif
|
|
|
|
|
|
|
|
Requires: %{_bindir}/keycloak-httpd-client-install
|
|
|
|
|
|
|
|
%description
|
|
|
|
Keycloak is a federated Identity Provider (IdP). Apache HTTPD supports
|
|
|
|
a variety of authentication modules which can be configured to utilize
|
|
|
|
a Keycloak IdP to perform authentication. This package contains
|
|
|
|
libraries and tools which can automate and simplify configuring an
|
|
|
|
Apache HTTPD authentication module and registering as a client of a
|
|
|
|
Keycloak IdP.
|
|
|
|
|
|
|
|
%package -n python2-%{srcname}
|
|
|
|
Summary: %{summary}
|
|
|
|
|
|
|
|
%{?python_provide:%python_provide python2-%{srcname}}
|
|
|
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: python-requests
|
|
|
|
Requires: python-requests-oauthlib
|
|
|
|
Requires: python-jinja2
|
|
|
|
Requires: %{_bindir}/keycloak-httpd-client-install
|
|
|
|
|
|
|
|
%description -n python2-%{srcname}
|
|
|
|
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.
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
%package -n python3-%{srcname}
|
|
|
|
Summary: %{summary}
|
|
|
|
|
|
|
|
%{?python_provide:%python_provide python3-%{srcname}}
|
|
|
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: python3-requests
|
|
|
|
Requires: python3-requests-oauthlib
|
|
|
|
Requires: python3-jinja2
|
|
|
|
|
|
|
|
%description -n python3-%{srcname}
|
|
|
|
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
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%autosetup -n %{srcname}-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%py2_build
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
%py3_build
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%install
|
|
|
|
# Must do the python2 install first because the scripts in /usr/bin are
|
|
|
|
# overwritten with every setup.py install, and in general we want the
|
|
|
|
# python3 version to be the default.
|
|
|
|
%py2_install
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
# py3_install won't overwrite files if they have a timestamp greater-than
|
|
|
|
# or equal to the py2 installed files. If both the py2 and py3 builds execute
|
|
|
|
# quickly the files end up with the same timestamps thus leaving the py2
|
|
|
|
# version in the py3 install. Therefore remove any files susceptible to this.
|
|
|
|
rm %{buildroot}%{_bindir}/keycloak-httpd-client-install
|
|
|
|
%py3_install
|
|
|
|
%endif
|
|
|
|
|
|
|
|
install -d -m 755 %{buildroot}/%{_mandir}/man8
|
|
|
|
install -c -m 644 doc/keycloak-httpd-client-install.8 %{buildroot}/%{_mandir}/man8
|
|
|
|
|
|
|
|
%files
|
|
|
|
%license LICENSE.txt
|
|
|
|
%doc README.md doc/ChangeLog
|
|
|
|
%{_datadir}/%{srcname}/
|
|
|
|
|
|
|
|
# Note that there is no %%files section for the unversioned python module if we are building for several python runtimes
|
|
|
|
%files -n python2-%{srcname}
|
|
|
|
%{python2_sitelib}/*
|
|
|
|
%if ! 0%{?with_python3}
|
|
|
|
%{_bindir}/keycloak-httpd-client-install
|
|
|
|
%{_mandir}/man8/*
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
%files -n python3-%{srcname}
|
|
|
|
%{python3_sitelib}/*
|
|
|
|
%{_bindir}/keycloak-httpd-client-install
|
|
|
|
%{_mandir}/man8/*
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%changelog
|
2017-02-10 17:46:04 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-06 22:29:46 +00:00
|
|
|
* Fri Jan 6 2017 John Dennis <jdennis@redhat.com> - 0.5-1
|
|
|
|
- Fix default port bug
|
|
|
|
Strip the port from the URL if it matches the scheme (e.g. 80 for
|
|
|
|
http and 443 for https)
|
|
|
|
|
2016-12-19 17:20:36 +00:00
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.4-3
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-07-19 07:31:56 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4-2
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-06-27 14:24:44 +00:00
|
|
|
* Mon Jun 27 2016 John Dennis <jdennis@redhat.com> - 0.4-1
|
|
|
|
- new upstream
|
|
|
|
See ChangeLog for details
|
|
|
|
|
2016-05-31 20:35:13 +00:00
|
|
|
* Fri May 20 2016 John Dennis <jdennis@redhat.com> - 0.3-1
|
|
|
|
- new upstream
|
|
|
|
See ChangeLog for details
|
|
|
|
|
|
|
|
* Tue May 17 2016 John Dennis <jdennis@redhat.com> - 0.2-1
|
|
|
|
- new upstream
|
|
|
|
- Add keycloak-httpd-client-install.8 man page
|
|
|
|
|
|
|
|
* Fri May 13 2016 John Dennis <jdennis@redhat.com> - 0.1-1
|
|
|
|
- Initial version
|