You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
3.6 KiB
117 lines
3.6 KiB
## START: Set by rpmautospec
|
|
## (rpmautospec version 0.6.5)
|
|
## RPMAUTOSPEC: autorelease, autochangelog
|
|
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
|
release_number = 1;
|
|
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
|
print(release_number + base_release_number - 1);
|
|
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
|
|
## END: Set by rpmautospec
|
|
|
|
%global forgeurl https://github.com/oracle/ktls-utils
|
|
%global baseversion 0.11
|
|
|
|
Name: ktls-utils
|
|
Version: %{baseversion}
|
|
# Using a base release of 3 to continue the sequence from the SRPM taken
|
|
# from Fedora ELN.
|
|
Release: %{autorelease}
|
|
Summary: TLS handshake agent for kernel sockets
|
|
|
|
%forgemeta
|
|
|
|
License: GPL-2.0-only AND (GPL-2.0-only OR BSD-3-Clause)
|
|
URL: %{forgeurl}
|
|
|
|
# FIXME: is this a bug in the tagging scheme or forgesource macro?
|
|
Source0: %{forgeurl}/releases/download/%{name}-%{baseversion}/%{name}-%{baseversion}.tar.gz
|
|
|
|
Patch0: ktls-utils-0.11-openscanhub.patch
|
|
|
|
BuildRequires: bash systemd-rpm-macros
|
|
BuildRequires: gcc make coreutils
|
|
BuildRequires: pkgconfig(gnutls) >= 3.3.0
|
|
BuildRequires: autoconf >= 2.69
|
|
BuildRequires: automake
|
|
BuildRequires: pkgconfig(libkeyutils)
|
|
BuildRequires: pkgconfig(glib-2.0) >= 2.6
|
|
BuildRequires: pkgconfig(libnl-3.0) >= 3.1
|
|
|
|
%description
|
|
In-kernel TLS consumers need a mechanism to perform TLS handshakes
|
|
on a connected socket to negotiate TLS session parameters that can
|
|
then be programmed into the kernel's TLS record protocol engine.
|
|
|
|
This package of software provides a TLS handshake user agent that
|
|
listens for kernel requests and then materializes a user space
|
|
socket endpoint on which to perform these handshakes. The resulting
|
|
negotiated session parameters are passed back to the kernel via
|
|
standard kTLS socket options.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{baseversion}
|
|
%autopatch -p1
|
|
|
|
%build
|
|
./autogen.sh
|
|
%configure --with-systemd
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
|
|
%files
|
|
%config(noreplace) %{_sysconfdir}/tlshd.conf
|
|
%{_sbindir}/tlshd
|
|
%{_mandir}/man5/tlshd.conf.5.gz
|
|
%{_mandir}/man8/tlshd.8.gz
|
|
%{_unitdir}/tlshd.service
|
|
%license COPYING
|
|
%doc README.md
|
|
%doc SECURITY.md
|
|
|
|
%post
|
|
%systemd_post tlshd.service
|
|
|
|
%preun
|
|
%systemd_preun tlshd.service
|
|
|
|
%postun
|
|
%systemd_postun_with_restart tlshd.service
|
|
|
|
%changelog
|
|
* Tue Nov 26 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 0.11-1
|
|
- Rebuilt for MSVSphere 10
|
|
|
|
## START: Generated by rpmautospec
|
|
* Wed Jul 17 2024 Scott Mayhew <smayhew@redhat.com> - 0.11-1
|
|
- Update to 0.11 (RHEL-48604)
|
|
- Also fix some OpenScanHub warnings.
|
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 0.10-6
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
* Thu Jun 13 2024 Scott Mayhew <smayhew@redhat.com> - 0.10-5
|
|
- Add initial gating for RHEL 10
|
|
|
|
* Tue Jun 11 2024 Scott Mayhew <smayhew@redhat.com> - 0.10-4
|
|
- spec: update autorelease to continue the sequence from the base SRPM
|
|
taken from Fedora ELN.
|
|
|
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.10-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.10-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
* Sat Oct 07 2023 Steve Dickson <steved@redhat.com> - 0.10-1
|
|
- Updated to the latest upstream release: 0.10
|
|
|
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.9^20230627.g52ac9ff05a5e-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
* Tue Jun 27 2023 Jeff Layton <jlayton@kernel.org> - 0.9^20230627.g52ac9ff05a5e-1
|
|
- Initial import (fedora#2182151)
|
|
|
|
## END: Generated by rpmautospec
|