New version 3.0.0
- Remove broken keactrl in favor of systemd unit files - kea.spec: General cleanup and removal of lines that have no effect - kea-msg-compiler was moved from kea to kea-devel Resolves: RHEL-88832
This commit is contained in:
parent
1bdd2ce762
commit
f57d6015dc
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,5 +1,5 @@
|
||||
/.*.swp
|
||||
/kea-*.tar.gz
|
||||
/kea-*.tar.gz.asc
|
||||
/kea-*.tar.xz
|
||||
/kea-*.tar.xz.asc
|
||||
/keama-*.tar.gz
|
||||
/keama-*.tar.gz.asc
|
||||
|
||||
@ -1,30 +0,0 @@
|
||||
diff --git a/m4macros/ax_gtest.m4 b/m4macros/ax_gtest.m4
|
||||
index 138a03f..80ebb98 100644
|
||||
--- a/m4macros/ax_gtest.m4
|
||||
+++ b/m4macros/ax_gtest.m4
|
||||
@@ -173,9 +173,9 @@ if test "x$enable_gtest" = "xyes" ; then
|
||||
for dir in $GTEST_PATHS; do
|
||||
if test -f "$dir/include/gtest/gtest.h"; then
|
||||
if test -f "$dir/lib/libgtest.a" || \
|
||||
- test -f "$dir/lib/libgtest.so"; then
|
||||
+ test -f "$dir/lib64/libgtest.so"; then
|
||||
GTEST_INCLUDES="-I$dir/include"
|
||||
- GTEST_LDFLAGS="-L$dir/lib"
|
||||
+ GTEST_LDFLAGS="-L$dir/lib64"
|
||||
GTEST_LDADD="-lgtest"
|
||||
GTEST_FOUND="true"
|
||||
AC_MSG_RESULT([$dir/lib])
|
||||
diff --git a/src/lib/util/tests/pid_file_unittest.cc b/src/lib/util/tests/pid_file_unittest.cc
|
||||
index 5f00d72..583a35b 100644
|
||||
--- a/src/lib/util/tests/pid_file_unittest.cc
|
||||
+++ b/src/lib/util/tests/pid_file_unittest.cc
|
||||
@@ -181,7 +181,8 @@ TEST_F(PIDFileTest, pidGarbage) {
|
||||
}
|
||||
|
||||
/// @brief Test failing to write a file.
|
||||
-TEST_F(PIDFileTest, pidWriteFail) {
|
||||
+/// Fails to fail for root, it doesn't throw PIDFileError exception.
|
||||
+TEST_F(PIDFileTest, DISABLED_pidWriteFail) {
|
||||
PIDFile pid_file(absolutePath(TESTNAME));
|
||||
|
||||
// Create the test file and change it's permission bits
|
||||
@ -1,13 +0,0 @@
|
||||
diff --git a/m4macros/ax_crypto.m4 b/m4macros/ax_crypto.m4
|
||||
index e1b43f8..a3a2c84 100644
|
||||
--- a/m4macros/ax_crypto.m4
|
||||
+++ b/m4macros/ax_crypto.m4
|
||||
@@ -258,7 +258,7 @@ then
|
||||
else
|
||||
CRYPTO_NAME="OpenSSL"
|
||||
DISABLED_CRYPTO="Botan"
|
||||
- CRYPTO_PACKAGE="openssl-1.1.0"
|
||||
+ CRYPTO_PACKAGE="openssl"
|
||||
DISTCHECK_CRYPTO_CONFIGURE_FLAG="--with-openssl=${use_openssl}"
|
||||
AC_DEFINE_UNQUOTED([WITH_OPENSSL], [], [Compile with OpenSSL crypto])
|
||||
AC_MSG_CHECKING(for OpenSSL library)
|
||||
237
kea.spec
237
kea.spec
@ -1,16 +1,14 @@
|
||||
Name: kea
|
||||
Version: 2.6.3
|
||||
Version: 3.0.0
|
||||
Release: %autorelease
|
||||
Summary: DHCPv4, DHCPv6 and DDNS server from ISC
|
||||
|
||||
License: MPL-2.0 AND BSL-1.0
|
||||
URL: http://kea.isc.org
|
||||
|
||||
# TODO: no support for netconf/sysconf yet
|
||||
# Support for netconf is not enabled
|
||||
%bcond_with sysrepo
|
||||
%bcond_with gtest
|
||||
%bcond_with tests
|
||||
|
||||
#%%global prever P1
|
||||
%global keama_version 4.5.0
|
||||
# Bundled version of Bind libraries linked into Keama
|
||||
%global bind_version 9.11.36
|
||||
@ -23,8 +21,8 @@ Provides: %1 = %{version}-%{release} \
|
||||
Conflicts: %1 \
|
||||
%endif
|
||||
|
||||
Source0: https://downloads.isc.org/isc/kea/%{version}%{?prever:-%{prever}}/kea-%{version}%{?prever:-%{prever}}.tar.gz
|
||||
Source1: https://downloads.isc.org/isc/kea/%{version}%{?prever:-%{prever}}/kea-%{version}%{?prever:-%{prever}}.tar.gz.asc
|
||||
Source0: https://downloads.isc.org/isc/kea/%{version}/kea-%{version}.tar.xz
|
||||
Source1: https://downloads.isc.org/isc/kea/%{version}/kea-%{version}.tar.xz.asc
|
||||
Source2: https://downloads.isc.org/isc/keama/%{keama_version}/keama-%{keama_version}.tar.gz
|
||||
Source3: https://downloads.isc.org/isc/keama/%{keama_version}/keama-%{keama_version}.tar.gz.asc
|
||||
Source10: https://www.isc.org/docs/isc-keyblock.asc
|
||||
@ -35,54 +33,48 @@ Source14: kea-ctrl-agent.service
|
||||
Source15: systemd-tmpfiles.conf
|
||||
Source16: systemd-sysusers.conf
|
||||
|
||||
Patch1: kea-openssl-version.patch
|
||||
Patch2: kea-gtest.patch
|
||||
|
||||
# autoreconf
|
||||
BuildRequires: autoconf automake libtool
|
||||
BuildRequires: boost-devel
|
||||
BuildRequires: gcc-c++
|
||||
# %%configure --with-openssl
|
||||
# %%meson -D crypto=openssl
|
||||
BuildRequires: openssl-devel
|
||||
%if 0%{?fedora}
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=2300868#c4
|
||||
BuildRequires: openssl-devel-engine
|
||||
%endif
|
||||
# %%configure --with-pgsql
|
||||
# %%meson -D krb5=enabled
|
||||
BuildRequires: krb5-devel
|
||||
# %%meson -D mysql=enabled
|
||||
BuildRequires: mariadb-connector-c-devel
|
||||
# %%meson -D postgresql=enabled
|
||||
%if 0%{?fedora} || 0%{?rhel} > 9
|
||||
BuildRequires: libpq-devel
|
||||
%else
|
||||
BuildRequires: postgresql-server-devel
|
||||
%endif
|
||||
# %%configure --with-mysql
|
||||
BuildRequires: mariadb-connector-c-devel
|
||||
BuildRequires: log4cplus-devel
|
||||
%if %{with sysrepo}
|
||||
# %%configure --with-sysrepo
|
||||
# %%meson -D netconf=enabled
|
||||
BuildRequires: sysrepo-devel
|
||||
%endif
|
||||
|
||||
%if %{with tests}
|
||||
# %%meson -D tests=enabled
|
||||
%ifarch %{valgrind_arches}
|
||||
BuildRequires: valgrind-devel
|
||||
%endif
|
||||
%if %{with gtest}
|
||||
# %%configure --enable-gtest
|
||||
BuildRequires: gtest-devel
|
||||
# src/lib/testutils/dhcp_test_lib.sh
|
||||
BuildRequires: procps-ng
|
||||
%endif
|
||||
# %%configure --enable-generate-parser
|
||||
BuildRequires: log4cplus-devel
|
||||
BuildRequires: python3-devel
|
||||
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: autoconf automake libtool
|
||||
BuildRequires: make
|
||||
BuildRequires: meson
|
||||
BuildRequires: bison
|
||||
BuildRequires: flex
|
||||
# %%configure --enable-shell
|
||||
BuildRequires: python3-devel
|
||||
# in case you ever wanted to use %%configure --enable-generate-docs
|
||||
#BuildRequires: elinks asciidoc plantuml
|
||||
BuildRequires: systemd
|
||||
BuildRequires: systemd-rpm-macros
|
||||
BuildRequires: python3-sphinx
|
||||
BuildRequires: python3-sphinx_rtd_theme
|
||||
BuildRequires: make
|
||||
BuildRequires: gnupg2
|
||||
|
||||
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||
@ -91,7 +83,6 @@ Requires: coreutils util-linux
|
||||
%{?systemd_requires}
|
||||
%{?sysusers_requires_compat}
|
||||
|
||||
|
||||
%description
|
||||
DHCP implementation from Internet Systems Consortium, Inc. that features fully
|
||||
functional DHCPv4, DHCPv6 and Dynamic DNS servers.
|
||||
@ -99,7 +90,6 @@ Both DHCP servers fully support server discovery, address assignment, renewal,
|
||||
rebinding and release. The DHCPv6 server supports prefix delegation. Both
|
||||
servers support DNS Update mechanism, using stand-alone DDNS daemon.
|
||||
|
||||
|
||||
%package doc
|
||||
Summary: Documentation for Kea DHCP server
|
||||
BuildArch: noarch
|
||||
@ -107,7 +97,6 @@ BuildArch: noarch
|
||||
%description doc
|
||||
Documentation and example configuration for Kea DHCP server.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Development headers and libraries for Kea DHCP server
|
||||
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||
@ -119,7 +108,6 @@ Requires: pkgconfig
|
||||
%description devel
|
||||
Header files and API documentation.
|
||||
|
||||
|
||||
%package hooks
|
||||
Summary: Hooks libraries for kea
|
||||
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||
@ -130,7 +118,6 @@ Hooking mechanism allow Kea to load one or more dynamically-linked libraries
|
||||
("hook points"), call functions in them. Those functions perform whatever
|
||||
custom processing is required.
|
||||
|
||||
|
||||
%package libs
|
||||
Summary: Shared libraries used by Kea DHCP server
|
||||
%upstream_name_compat %{upstream_name}-libs
|
||||
@ -138,7 +125,6 @@ Summary: Shared libraries used by Kea DHCP server
|
||||
%description libs
|
||||
This package contains shared libraries used by Kea DHCP server.
|
||||
|
||||
|
||||
%package keama
|
||||
Summary: Experimental migration assistant for Kea
|
||||
Provides: bundled(bind-libs) = %{bind_version}
|
||||
@ -147,7 +133,6 @@ Provides: bundled(bind-libs) = %{bind_version}
|
||||
The KEA Migration Assistant is an experimental tool which helps to translate
|
||||
ISC DHCP configurations to Kea.
|
||||
|
||||
|
||||
%prep
|
||||
%if 0%{?fedora} || 0%{?rhel} > 8
|
||||
%{gpgverify} --keyring='%{S:10}' --signature='%{S:1}' --data='%{S:0}'
|
||||
@ -155,42 +140,31 @@ ISC DHCP configurations to Kea.
|
||||
%endif
|
||||
|
||||
%autosetup -T -b2 -N -n keama-%{keama_version}
|
||||
%autosetup -p1 -n kea-%{version}%{?prever:-%{prever}}
|
||||
|
||||
rm -rf doc/sphinx/_build
|
||||
|
||||
# to be able to build on ppc64(le)
|
||||
# https://sourceforge.net/p/flex/bugs/197
|
||||
# https://lists.isc.org/pipermail/kea-dev/2016-January/000599.html
|
||||
sed -i -e 's|ECHO|YYECHO|g' src/lib/eval/lexer.cc
|
||||
|
||||
%autosetup -p1 -n kea-%{version}
|
||||
|
||||
%build
|
||||
autoreconf --verbose --force --install
|
||||
# This removes RPATH from binaries
|
||||
export KEA_PKG_TYPE_IN_CONFIGURE="rpm"
|
||||
|
||||
%configure \
|
||||
--disable-dependency-tracking \
|
||||
--disable-rpath \
|
||||
--disable-silent-rules \
|
||||
--disable-static \
|
||||
--enable-generate-docs \
|
||||
--enable-generate-messages \
|
||||
--enable-generate-parser \
|
||||
--enable-shell \
|
||||
--enable-perfdhcp \
|
||||
%if %{with gtest}
|
||||
--with-gtest \
|
||||
%endif
|
||||
--with-mysql \
|
||||
--with-pgsql \
|
||||
--with-gnu-ld \
|
||||
--with-log4cplus \
|
||||
%meson \
|
||||
--install-umask 0022 \
|
||||
%if %{with sysrepo}
|
||||
--with-sysrepo \
|
||||
-D netconf=enabled \
|
||||
%else
|
||||
-D netconf=disabled \
|
||||
%endif
|
||||
--with-openssl
|
||||
%if %{with tests}
|
||||
-D tests=enabled \
|
||||
%else
|
||||
-D tests=disabled \
|
||||
%endif
|
||||
-D crypto=openssl \
|
||||
-D krb5=enabled \
|
||||
-D mysql=enabled \
|
||||
-D postgresql=enabled
|
||||
|
||||
%make_build
|
||||
%meson_build
|
||||
%meson_build doc
|
||||
|
||||
# Configure & build Keama
|
||||
pushd ../keama-%{keama_version}
|
||||
@ -220,15 +194,13 @@ autoreconf --verbose --force --install
|
||||
%make_build
|
||||
popd
|
||||
|
||||
|
||||
%if %{with gtest}
|
||||
%if %{with tests}
|
||||
%check
|
||||
make check
|
||||
%meson_test
|
||||
%endif
|
||||
|
||||
|
||||
%install
|
||||
%make_install docdir=%{_pkgdocdir}
|
||||
%meson_install
|
||||
|
||||
# Install Keama
|
||||
pushd ../keama-%{keama_version}
|
||||
@ -236,20 +208,23 @@ pushd ../keama-%{keama_version}
|
||||
popd
|
||||
|
||||
# Remove Keama's static library, dhcp headers and man pages
|
||||
rm -f %{buildroot}/%{_libdir}/libdhcp.a
|
||||
rm %{buildroot}/%{_libdir}/libdhcp.a
|
||||
rm -rf %{buildroot}/%{_includedir}/omapip/
|
||||
rm -rf %{buildroot}%{_mandir}/man5/
|
||||
|
||||
# Get rid of .la files
|
||||
find %{buildroot} -type f -name "*.la" -delete -print
|
||||
# Remove keactrl
|
||||
rm %{buildroot}%{_sysconfdir}/kea/keactrl.conf
|
||||
rm %{buildroot}%{_sbindir}/keactrl
|
||||
rm %{buildroot}%{_mandir}/man8/keactrl.8*
|
||||
|
||||
%if %{without sysrepo}
|
||||
# Remove netconf files
|
||||
rm %{buildroot}%{_mandir}/man8/kea-netconf.8
|
||||
%endif
|
||||
|
||||
rm -f %{buildroot}%{_pkgdocdir}/COPYING
|
||||
rm -f %{buildroot}%{_pkgdocdir}/html/.buildinfo
|
||||
rm %{buildroot}%{_pkgdocdir}/COPYING
|
||||
|
||||
rm -rf %{buildroot}/usr/share/kea/meson-info/
|
||||
|
||||
# Create empty password file for the Kea Control Agent
|
||||
install -m 0640 /dev/null %{buildroot}%{_sysconfdir}/kea/kea-api-password
|
||||
@ -275,7 +250,6 @@ install -dm 0750 %{buildroot}%{_rundir}/kea/
|
||||
mkdir -p %{buildroot}%{_localstatedir}/log
|
||||
install -dm 0750 %{buildroot}%{_localstatedir}/log/kea/
|
||||
|
||||
|
||||
%pre
|
||||
%sysusers_create_compat %{S:16}
|
||||
|
||||
@ -294,7 +268,7 @@ install -dm 0750 %{buildroot}%{_localstatedir}/log/kea/
|
||||
&& chown root:kea %{_sysconfdir}/kea/kea*.conf && chmod 0640 %{_sysconfdir}/kea/kea*.conf
|
||||
|
||||
# Remove /tmp/ from socket-name for existing configurations to fix CVE-2025-32802
|
||||
for i in kea-ctrl-agent.conf keactrl.conf kea-dhcp4.conf kea-dhcp6.conf kea-dhcp-ddns.conf; do
|
||||
for i in kea-ctrl-agent.conf kea-dhcp4.conf kea-dhcp6.conf kea-dhcp-ddns.conf; do
|
||||
if [ -n "`grep '\"socket-name\": \"/tmp/' %{_sysconfdir}/kea/$i`" ]; then
|
||||
sed -i.CVE-2025-32802.bak 's#\("socket-name": "/tmp/\)\(.*\)#"socket-name": "\2#g' %{_sysconfdir}/kea/$i
|
||||
fi
|
||||
@ -311,13 +285,10 @@ fi
|
||||
|
||||
%postun
|
||||
%systemd_postun_with_restart kea-dhcp4.service kea-dhcp6.service kea-dhcp-ddns.service kea-ctrl-agent.service
|
||||
|
||||
%ldconfig_scriptlets libs
|
||||
|
||||
|
||||
%files
|
||||
%license COPYING
|
||||
%{_bindir}/kea-msg-compiler
|
||||
%{_sbindir}/kea-admin
|
||||
%{_sbindir}/kea-ctrl-agent
|
||||
%{_sbindir}/kea-dhcp-ddns
|
||||
@ -325,7 +296,6 @@ fi
|
||||
%{_sbindir}/kea-dhcp6
|
||||
%{_sbindir}/kea-lfc
|
||||
%{_sbindir}/kea-shell
|
||||
%{_sbindir}/keactrl
|
||||
%{_sbindir}/perfdhcp
|
||||
%{_unitdir}/kea*.service
|
||||
%{_datarootdir}/kea
|
||||
@ -347,7 +317,6 @@ fi
|
||||
%{_mandir}/man8/kea-netconf.8*
|
||||
%endif
|
||||
%{_mandir}/man8/kea-shell.8*
|
||||
%{_mandir}/man8/keactrl.8*
|
||||
%{_mandir}/man8/perfdhcp.8*
|
||||
%{_tmpfilesdir}/kea.conf
|
||||
%{_sysusersdir}/kea.conf
|
||||
@ -365,46 +334,96 @@ fi
|
||||
%doc %{_pkgdocdir}/SECURITY.md
|
||||
|
||||
%files devel
|
||||
%{_bindir}/kea-msg-compiler
|
||||
%{_includedir}/kea
|
||||
%{_libdir}/libkea-*.so
|
||||
%{_libdir}/libkea-asiodns.so
|
||||
%{_libdir}/libkea-asiolink.so
|
||||
%{_libdir}/libkea-cc.so
|
||||
%{_libdir}/libkea-cfgrpt.so
|
||||
%{_libdir}/libkea-config.so
|
||||
%{_libdir}/libkea-cryptolink.so
|
||||
%{_libdir}/libkea-d2srv.so
|
||||
%{_libdir}/libkea-database.so
|
||||
%{_libdir}/libkea-dhcp_ddns.so
|
||||
%{_libdir}/libkea-dhcp.so
|
||||
%{_libdir}/libkea-dhcpsrv.so
|
||||
%{_libdir}/libkea-dns.so
|
||||
%{_libdir}/libkea-eval.so
|
||||
%{_libdir}/libkea-exceptions.so
|
||||
%{_libdir}/libkea-hooks.so
|
||||
%{_libdir}/libkea-http.so
|
||||
%{_libdir}/libkea-log-interprocess.so
|
||||
%{_libdir}/libkea-log.so
|
||||
%{_libdir}/libkea-mysql.so
|
||||
%{_libdir}/libkea-pgsql.so
|
||||
%{_libdir}/libkea-process.so
|
||||
%{_libdir}/libkea-stats.so
|
||||
%{_libdir}/libkea-tcp.so
|
||||
%{_libdir}/libkea-util-io.so
|
||||
%{_libdir}/libkea-util.so
|
||||
%{_libdir}/pkgconfig/kea.pc
|
||||
|
||||
%files hooks
|
||||
%dir %{_sysconfdir}/kea/radius
|
||||
%{_sysconfdir}/kea/radius/dictionary
|
||||
%dir %{_libdir}/kea
|
||||
%{_libdir}/kea/hooks
|
||||
%dir %{_libdir}/kea/hooks
|
||||
%{_libdir}/kea/hooks/libddns_gss_tsig.so
|
||||
%{_libdir}/kea/hooks/libdhcp_bootp.so
|
||||
%{_libdir}/kea/hooks/libdhcp_class_cmds.so
|
||||
%{_libdir}/kea/hooks/libdhcp_ddns_tuning.so
|
||||
%{_libdir}/kea/hooks/libdhcp_flex_id.so
|
||||
%{_libdir}/kea/hooks/libdhcp_flex_option.so
|
||||
%{_libdir}/kea/hooks/libdhcp_ha.so
|
||||
%{_libdir}/kea/hooks/libdhcp_host_cache.so
|
||||
%{_libdir}/kea/hooks/libdhcp_host_cmds.so
|
||||
%{_libdir}/kea/hooks/libdhcp_lease_cmds.so
|
||||
%{_libdir}/kea/hooks/libdhcp_lease_query.so
|
||||
%{_libdir}/kea/hooks/libdhcp_legal_log.so
|
||||
%{_libdir}/kea/hooks/libdhcp_limits.so
|
||||
%{_libdir}/kea/hooks/libdhcp_mysql.so
|
||||
%{_libdir}/kea/hooks/libdhcp_perfmon.so
|
||||
%{_libdir}/kea/hooks/libdhcp_pgsql.so
|
||||
%{_libdir}/kea/hooks/libdhcp_ping_check.so
|
||||
%{_libdir}/kea/hooks/libdhcp_radius.so
|
||||
%{_libdir}/kea/hooks/libdhcp_run_script.so
|
||||
%{_libdir}/kea/hooks/libdhcp_stat_cmds.so
|
||||
%{_libdir}/kea/hooks/libdhcp_subnet_cmds.so
|
||||
|
||||
%files libs
|
||||
%license COPYING
|
||||
# older: find `rpm --eval %%{_topdir}`/BUILDROOT/kea-*/usr/lib64/ -type f | grep /usr/lib64/libkea | sed -e 's#.*/usr/lib64\(.*\.so\.[0-9]\+\)\.[0-9]\+\.[0-9]\+#%%{_libdir}\1*#' | sort
|
||||
# >=f41: find `rpm --eval %%{_topdir}`/BUILD/kea-*/BUILDROOT/usr/lib64/ -type f | grep /usr/lib64/libkea | sed -e 's#.*/usr/lib64\(.*\.so\.[0-9]\+\)\.[0-9]\+\.[0-9]\+#%%{_libdir}\1*#' | sort
|
||||
%{_libdir}/libkea-asiodns.so.49*
|
||||
%{_libdir}/libkea-asiolink.so.72*
|
||||
%{_libdir}/libkea-cc.so.68*
|
||||
%{_libdir}/libkea-cfgclient.so.66*
|
||||
%{_libdir}/libkea-cryptolink.so.50*
|
||||
%{_libdir}/libkea-d2srv.so.47*
|
||||
%{_libdir}/libkea-database.so.62*
|
||||
%{_libdir}/libkea-dhcp_ddns.so.57*
|
||||
%{_libdir}/libkea-dhcp++.so.92*
|
||||
%{_libdir}/libkea-dhcpsrv.so.111*
|
||||
%{_libdir}/libkea-dns++.so.57*
|
||||
%{_libdir}/libkea-eval.so.69*
|
||||
%{_libdir}/libkea-exceptions.so.33*
|
||||
%{_libdir}/libkea-hooks.so.100*
|
||||
%{_libdir}/libkea-http.so.72*
|
||||
%{_libdir}/libkea-log.so.61*
|
||||
%{_libdir}/libkea-mysql.so.71*
|
||||
%{_libdir}/libkea-pgsql.so.71*
|
||||
%{_libdir}/libkea-process.so.74*
|
||||
%{_libdir}/libkea-stats.so.41*
|
||||
%{_libdir}/libkea-tcp.so.19*
|
||||
%{_libdir}/libkea-util-io.so.0*
|
||||
%{_libdir}/libkea-util.so.86*
|
||||
%{_libdir}/libkea-asiodns.so.62*
|
||||
%{_libdir}/libkea-asiolink.so.87*
|
||||
%{_libdir}/libkea-cc.so.82*
|
||||
%{_libdir}/libkea-cfgrpt.so.3*
|
||||
%{_libdir}/libkea-config.so.83*
|
||||
%{_libdir}/libkea-cryptolink.so.63*
|
||||
%{_libdir}/libkea-d2srv.so.63*
|
||||
%{_libdir}/libkea-database.so.76*
|
||||
%{_libdir}/libkea-dhcp_ddns.so.68*
|
||||
%{_libdir}/libkea-dhcp.so.109*
|
||||
%{_libdir}/libkea-dhcpsrv.so.129*
|
||||
%{_libdir}/libkea-dns.so.71*
|
||||
%{_libdir}/libkea-eval.so.84*
|
||||
%{_libdir}/libkea-exceptions.so.45*
|
||||
%{_libdir}/libkea-hooks.so.118*
|
||||
%{_libdir}/libkea-http.so.87*
|
||||
%{_libdir}/libkea-log-interprocess.so.3*
|
||||
%{_libdir}/libkea-log.so.75*
|
||||
%{_libdir}/libkea-mysql.so.88*
|
||||
%{_libdir}/libkea-pgsql.so.88*
|
||||
%{_libdir}/libkea-process.so.90*
|
||||
%{_libdir}/libkea-stats.so.53*
|
||||
%{_libdir}/libkea-tcp.so.33*
|
||||
%{_libdir}/libkea-util-io.so.12*
|
||||
%{_libdir}/libkea-util.so.101*
|
||||
|
||||
%files keama
|
||||
%license COPYING
|
||||
%{_bindir}/keama
|
||||
%{_mandir}/man8/keama.8*
|
||||
|
||||
|
||||
%changelog
|
||||
%autochangelog
|
||||
|
||||
4
sources
4
sources
@ -1,4 +1,4 @@
|
||||
SHA512 (kea-2.6.3.tar.gz) = d7781c0b95529bfe89c19615c1dd5952fd4c4b60274e187a641992dad81ef5af921dfb15050ec43169a0c2ad267639642b2e294c5d43405f85a5fb11bb1a939a
|
||||
SHA512 (kea-2.6.3.tar.gz.asc) = ceb5771c7e8533ed93103a6d3ed9a616ffeec0c8d4feb697e3514d1be90993f8a3255c96990be96b2698b708abadbe7a42cd87a80326f376a1d450dc226a12e0
|
||||
SHA512 (kea-3.0.0.tar.xz) = 1a01a449907fe5f68c918504aa952d3991fe02d7944a1fc70f13316eb075ca1348e85386d387730347d599c229454b926089300407eae8bce0215b64fef077f2
|
||||
SHA512 (kea-3.0.0.tar.xz.asc) = f569d44b107b6a19a10acb3c4b71ae8f082263400f19101d65f79b3b0a94fbdf7ba4053cccbaa2b8b425f9c304e92715ab1866e6f2c60a3e00c6a587b2399298
|
||||
SHA512 (keama-4.5.0.tar.gz) = 2e48987e21999718be7ceb5b604be672c84666b07dde9545285ff7146ab6825e81af1ec3b5a4b50f20e61b40ed11b0254e3705cc580bb85de24b77ee8cbca162
|
||||
SHA512 (keama-4.5.0.tar.gz.asc) = 8ec416e44e143037a6936682d1e11b96c1a48be05f3e747e7a26b190e1f11c75104ef16c23eda9b257433b8de5a73c081b65fd903b611d8faa9c4b3b47702763
|
||||
|
||||
Loading…
Reference in New Issue
Block a user