Blame SPECS/kronosnet.spec

d33c0d
###############################################################################
d33c0d
###############################################################################
d33c0d
##
ec2c96
##  Copyright (C) 2012-2020 Red Hat, Inc.  All rights reserved.
d33c0d
##
d33c0d
##  This copyrighted material is made available to anyone wishing to use,
d33c0d
##  modify, copy, or redistribute it subject to the terms and conditions
d33c0d
##  of the GNU General Public License v.2 or higher
d33c0d
##
d33c0d
###############################################################################
d33c0d
###############################################################################
d33c0d
d33c0d
# set defaults from ./configure invokation
d33c0d
%bcond_without sctp
d33c0d
%bcond_without nss
d33c0d
%bcond_without openssl
d33c0d
%bcond_without zlib
d33c0d
%bcond_without lz4
d33c0d
%bcond_without lzo2
d33c0d
%bcond_without lzma
d33c0d
%bcond_without bzip2
d33c0d
%bcond_with zstd
d33c0d
%bcond_with kronosnetd
d33c0d
%bcond_without libnozzle
d33c0d
%bcond_without runautogen
d33c0d
%bcond_with rpmdebuginfo
d33c0d
%bcond_with overriderpmdebuginfo
d33c0d
%bcond_without installtests
d33c0d
d33c0d
# DWZ crashes when making debuginfos. This workaround is from
d33c0d
# https://github.com/docker/docker/issues/22051
d33c0d
# I got this via https://bugzilla.redhat.com/show_bug.cgi?id=1691946
d33c0d
%global _dwz_low_mem_die_limit 0
d33c0d
d33c0d
%if %{with overriderpmdebuginfo}
d33c0d
%undefine _enable_debug_packages
d33c0d
%endif
d33c0d
d33c0d
%if %{with sctp}
d33c0d
%global buildsctp 1
d33c0d
%endif
d33c0d
%if %{with nss}
d33c0d
%global buildcryptonss 1
d33c0d
%endif
d33c0d
%if %{with openssl}
d33c0d
%global buildcryptoopenssl 1
d33c0d
%endif
d33c0d
%if %{with zlib}
d33c0d
%global buildcompresszlib 1
d33c0d
%endif
d33c0d
%if %{with lz4}
d33c0d
%global buildcompresslz4 1
d33c0d
%endif
d33c0d
%if %{with lzo2}
d33c0d
%global buildcompresslzo2 1
d33c0d
%endif
d33c0d
%if %{with lzma}
d33c0d
%global buildcompresslzma 1
d33c0d
%endif
d33c0d
%if %{with bzip2}
d33c0d
%global buildcompressbzip2 1
d33c0d
%endif
d33c0d
%if %{with zstd}
d33c0d
%global buildcompresszstd 1
d33c0d
%endif
d33c0d
%if %{with libnozzle}
d33c0d
%global buildlibnozzle 1
d33c0d
%endif
d33c0d
%if %{with kronosnetd}
d33c0d
%global buildlibnozzle 1
d33c0d
%global buildkronosnetd 1
d33c0d
%endif
d33c0d
%if %{with runautogen}
d33c0d
%global buildautogen 1
d33c0d
%endif
d33c0d
%if %{with installtests}
d33c0d
%global installtestsuite 1
d33c0d
%endif
d33c0d
d33c0d
# main (empty) package
d33c0d
# http://www.rpm.org/max-rpm/s1-rpm-subpack-spec-file-changes.html
d33c0d
d33c0d
Name: kronosnet
d33c0d
Summary: Multipoint-to-Multipoint VPN daemon
ec2c96
Version: 1.18
7c8a42
Release: 1%{?dist}
d33c0d
License: GPLv2+ and LGPLv2+
d33c0d
URL: http://www.kronosnet.org
d33c0d
Source0: http://www.kronosnet.org/releases/kronosnet-%{version}.tar.gz
d33c0d
d33c0d
# Build dependencies
d33c0d
BuildRequires: gcc
d33c0d
# required to build man pages
d33c0d
BuildRequires: libxml2-devel doxygen
d33c0d
BuildRequires: libqb-devel
d33c0d
%if %{defined buildsctp}
d33c0d
BuildRequires: lksctp-tools-devel
d33c0d
%endif
d33c0d
%if %{defined buildcryptonss}
d33c0d
BuildRequires: nss-devel
d33c0d
%endif
d33c0d
%if %{defined buildcryptoopenssl}
d33c0d
BuildRequires: openssl-devel
d33c0d
%endif
d33c0d
%if %{defined buildcompresszlib}
d33c0d
BuildRequires: zlib-devel
d33c0d
%endif
d33c0d
%if %{defined buildcompresslz4}
d33c0d
BuildRequires: lz4-devel
d33c0d
%endif
d33c0d
%if %{defined buildcompresslzo2}
d33c0d
BuildRequires: lzo-devel
d33c0d
%endif
d33c0d
%if %{defined buildcompresslzma}
d33c0d
BuildRequires: xz-devel
d33c0d
%endif
d33c0d
%if %{defined buildcompressbzip2}
d33c0d
BuildRequires: bzip2-devel
d33c0d
%endif
d33c0d
%if %{defined buildcompresszstd}
d33c0d
BuildRequires: libzstd-devel
d33c0d
%endif
d33c0d
%if %{defined buildkronosnetd}
d33c0d
BuildRequires: systemd
d33c0d
BuildRequires: pam-devel
d33c0d
%endif
d33c0d
%if %{defined buildlibnozzle}
d33c0d
BuildRequires: libnl3-devel
d33c0d
%endif
d33c0d
%if %{defined buildautogen}
d33c0d
BuildRequires: automake
d33c0d
BuildRequires: libtool
d33c0d
BuildRequires: autoconf
d33c0d
%endif
d33c0d
d33c0d
%prep
d33c0d
%setup -q -n %{name}-%{version}
d33c0d
d33c0d
%build
d33c0d
%if %{defined buildautogen}
d33c0d
    ./autogen.sh
d33c0d
%endif
d33c0d
d33c0d
%{configure} \
d33c0d
%if %{defined buildsctp}
d33c0d
	--enable-libknet-sctp \
d33c0d
%else
d33c0d
	--disable-libknet-sctp \
d33c0d
%endif
d33c0d
%if %{defined buildcryptonss}
d33c0d
	--enable-crypto-nss \
d33c0d
%else
d33c0d
	--disable-crypto-nss \
d33c0d
%endif
d33c0d
%if %{defined buildcryptoopenssl}
d33c0d
	--enable-crypto-openssl \
d33c0d
%else
d33c0d
	--disable-crypto-openssl \
d33c0d
%endif
d33c0d
%if %{defined buildcompresszlib}
d33c0d
	--enable-compress-zlib \
d33c0d
%else
d33c0d
	--disable-compress-zlib \
d33c0d
%endif
d33c0d
%if %{defined buildcompresslz4}
d33c0d
	--enable-compress-lz4 \
d33c0d
%else
d33c0d
	--disable-compress-lz4 \
d33c0d
%endif
d33c0d
%if %{defined buildcompresslzo2}
d33c0d
	--enable-compress-lzo2 \
d33c0d
%else
d33c0d
	--disable-compress-lzo2 \
d33c0d
%endif
d33c0d
%if %{defined buildcompresslzma}
d33c0d
	--enable-compress-lzma \
d33c0d
%else
d33c0d
	--disable-compress-lzma \
d33c0d
%endif
d33c0d
%if %{defined buildcompresszstd}
d33c0d
	--enable-compress-zstd \
d33c0d
%else
d33c0d
	--disable-compress-zstd \
d33c0d
%endif
d33c0d
%if %{defined buildkronosnetd}
d33c0d
	--enable-kronosnetd \
d33c0d
%endif
d33c0d
%if %{defined buildlibnozzle}
d33c0d
	--enable-libnozzle \
d33c0d
%endif
d33c0d
%if %{defined installtestsuite}
d33c0d
	--enable-install-tests \
d33c0d
%else
d33c0d
	--disable-install-tests \
d33c0d
%endif
d33c0d
	--with-initdefaultdir=%{_sysconfdir}/sysconfig/ \
d33c0d
	--with-systemddir=%{_unitdir}
d33c0d
d33c0d
make %{_smp_mflags}
d33c0d
d33c0d
%install
d33c0d
make install DESTDIR=%{buildroot}
d33c0d
d33c0d
# tree cleanup
d33c0d
# remove static libraries
d33c0d
find %{buildroot} -name "*.a" -exec rm {} \;
d33c0d
# remove libtools leftovers
d33c0d
find %{buildroot} -name "*.la" -exec rm {} \;
d33c0d
d33c0d
# handle systemd vs init script
d33c0d
# remove init scripts
d33c0d
rm -rf %{buildroot}/etc/init.d
d33c0d
d33c0d
# remove docs
d33c0d
rm -rf %{buildroot}/usr/share/doc/kronosnet
d33c0d
d33c0d
# Disabled because of concern that the testsuite does not play nice with the 
d33c0d
# network loopback interface. Upstream has a comprehensive CI/CD system which
d33c0d
# tests different versions of Fedora and should be very safe. In the unlikely
d33c0d
# event of bugs, we should probably avoid DoS´ing the fedora builders by 
d33c0d
# generating unwanted traffic.
d33c0d
#%check
d33c0d
d33c0d
# main empty package
d33c0d
%description
d33c0d
kronosnet source
d33c0d
d33c0d
%if %{defined buildkronosnetd}
d33c0d
## Runtime and subpackages section
d33c0d
%package -n kronosnetd
d33c0d
Summary: Multipoint-to-Multipoint VPN daemon
d33c0d
License: GPLv2+
d33c0d
Requires(post): shadow-utils
d33c0d
Requires: pam, /etc/pam.d/passwd
d33c0d
%{?systemd_requires}
d33c0d
d33c0d
%description -n kronosnetd
d33c0d
The kronosnet daemon is a bridge between kronosnet switching engine
d33c0d
and kernel network tap devices, to create and administer a
d33c0d
distributed LAN over multipoint-to-multipoint VPNs.
d33c0d
 
d33c0d
The daemon does a poor attempt to provide a configure UI similar
d33c0d
to other known network devices/tools (Cisco, quagga).
d33c0d
Beside looking horrific, it allows runtime changes and
d33c0d
reconfiguration of the kronosnet(s) without daemon reload
d33c0d
or service disruption.
d33c0d
d33c0d
%post -n kronosnetd
d33c0d
%systemd_post kronosnetd.service
d33c0d
getent group kronosnetadm >/dev/null || groupadd --force kronosnetadm
d33c0d
d33c0d
%postun -n kronosnetd
d33c0d
%systemd_postun kronosnetd.service
d33c0d
d33c0d
%preun -n kronosnetd
d33c0d
%systemd_preun kronosnetd.service
d33c0d
d33c0d
%files -n kronosnetd
d33c0d
%license COPYING.* COPYRIGHT 
d33c0d
%dir %{_sysconfdir}/kronosnet
d33c0d
%dir %{_sysconfdir}/kronosnet/*
d33c0d
%config(noreplace) %{_sysconfdir}/sysconfig/kronosnetd
d33c0d
%config(noreplace) %{_sysconfdir}/pam.d/kronosnetd
d33c0d
%config(noreplace) %{_sysconfdir}/logrotate.d/kronosnetd
d33c0d
%{_unitdir}/kronosnetd.service
d33c0d
%{_sbindir}/*
d33c0d
%{_mandir}/man8/*
d33c0d
%endif
d33c0d
d33c0d
%if %{defined buildlibnozzle}
d33c0d
%package -n libnozzle1
d33c0d
Summary: Simple userland wrapper around kernel tap devices
d33c0d
License: LGPLv2+
d33c0d
d33c0d
%description -n libnozzle1
d33c0d
This is an over-engineered commodity library to manage a pool
d33c0d
of tap devices and provides the basic
d33c0d
pre-up.d/up.d/down.d/post-down.d infrastructure.
d33c0d
d33c0d
%files -n libnozzle1
d33c0d
%license COPYING.* COPYRIGHT
d33c0d
%{_libdir}/libnozzle.so.*
d33c0d
7c8a42
%ldconfig_scriptlets -n libnozzle1
d33c0d
d33c0d
%package -n libnozzle1-devel
d33c0d
Summary: Simple userland wrapper around kernel tap devices (developer files)
d33c0d
License: LGPLv2+
d33c0d
Requires: libnozzle1%{_isa} = %{version}-%{release}
d33c0d
Requires: pkgconfig
d33c0d
d33c0d
%description -n libnozzle1-devel
d33c0d
This is an over-engineered commodity library to manage a pool
d33c0d
of tap devices and provides the basic
d33c0d
pre-up.d/up.d/down.d/post-down.d infrastructure.
d33c0d
d33c0d
%files -n libnozzle1-devel
d33c0d
%license COPYING.* COPYRIGHT
d33c0d
%{_libdir}/libnozzle.so
d33c0d
%{_includedir}/libnozzle.h
d33c0d
%{_libdir}/pkgconfig/libnozzle.pc
d33c0d
%endif
d33c0d
d33c0d
%package -n libknet1
d33c0d
Summary: Kronosnet core switching implementation (protocol v1)
d33c0d
License: LGPLv2+
d33c0d
BuildRequires: libqb-devel
d33c0d
BuildRequires: doxygen
d33c0d
d33c0d
%description -n libknet1
d33c0d
Kronosnet, often referred to as knet, is a network abstraction layer 
d33c0d
designed for High Availability use cases, where redundancy, security, 
d33c0d
fault tolerance and fast fail-over are the core requirements of your 
d33c0d
application.
d33c0d
d33c0d
The whole kronosnet core is implemented in this library.
d33c0d
Please refer to https://kronosnet.org/ for further  information.
d33c0d
d33c0d
%files -n libknet1
d33c0d
%license COPYING.* COPYRIGHT
d33c0d
%{_libdir}/libknet.so.*
d33c0d
%dir %{_libdir}/kronosnet
d33c0d
d33c0d
%ldconfig_scriptlets -n libknet1
d33c0d
d33c0d
%package -n libknet1-devel
d33c0d
Summary: Kronosnet core switching implementation (developer files)
d33c0d
License: LGPLv2+
d33c0d
Requires: libknet1%{_isa} = %{version}-%{release}
d33c0d
Requires: pkgconfig
d33c0d
d33c0d
%description -n libknet1-devel
d33c0d
The whole kronosnet core is implemented in this library.
d33c0d
Please refer to the not-yet-existing documentation for further
d33c0d
information. 
d33c0d
d33c0d
# libknet.pc leading to pkgconfig(libknet) automatic virtual provides,
d33c0d
# like other files, is not explicitly versioned in the name like the
d33c0d
# subpackages are -- intention of doing so for subpackage names is
d33c0d
# to ease the cross-checking the compatibility of the remote clients
d33c0d
# interchanging data using this network communication library, as
d33c0d
# the number denotes the protocol version (providing multiple
d33c0d
# protocol versions in parallel is not planned).
d33c0d
%files -n libknet1-devel
d33c0d
%{_libdir}/libknet.so
d33c0d
%{_includedir}/libknet.h
d33c0d
%{_libdir}/pkgconfig/libknet.pc
d33c0d
%{_mandir}/man3/*.3.gz
d33c0d
d33c0d
%if %{defined buildcryptonss}
d33c0d
%package -n libknet1-crypto-nss-plugin
d33c0d
Summary: Libknet1 nss support
d33c0d
License: LGPLv2+
d33c0d
Requires: libknet1%{_isa} = %{version}-%{release}
d33c0d
d33c0d
%description -n libknet1-crypto-nss-plugin
d33c0d
NSS crypto support for libknet1.
d33c0d
d33c0d
%files -n libknet1-crypto-nss-plugin
d33c0d
%{_libdir}/kronosnet/crypto_nss.so
d33c0d
%endif
d33c0d
d33c0d
%if %{defined buildcryptoopenssl}
d33c0d
%package -n libknet1-crypto-openssl-plugin
d33c0d
Summary: Libknet1 openssl support
d33c0d
License: LGPLv2+
d33c0d
Requires: libknet1%{_isa} = %{version}-%{release}
d33c0d
d33c0d
%description -n libknet1-crypto-openssl-plugin
d33c0d
OpenSSL crypto support for libknet1.
d33c0d
d33c0d
%files -n libknet1-crypto-openssl-plugin
d33c0d
%{_libdir}/kronosnet/crypto_openssl.so
d33c0d
%endif
d33c0d
d33c0d
%if %{defined buildcompresszlib}
d33c0d
%package -n libknet1-compress-zlib-plugin
d33c0d
Summary: Libknet1 zlib support
d33c0d
License: LGPLv2+
d33c0d
Requires: libknet1%{_isa} = %{version}-%{release}
d33c0d
d33c0d
%description -n libknet1-compress-zlib-plugin
d33c0d
zlib compression support for libknet1.
d33c0d
d33c0d
%files -n libknet1-compress-zlib-plugin
d33c0d
%{_libdir}/kronosnet/compress_zlib.so
d33c0d
%endif
d33c0d
%if %{defined buildcompresslz4}
d33c0d
%package -n libknet1-compress-lz4-plugin
d33c0d
Summary: Libknet1 lz4 and lz4hc support
d33c0d
License: LGPLv2+
d33c0d
Requires: libknet1%{_isa} = %{version}-%{release}
d33c0d
d33c0d
%description -n libknet1-compress-lz4-plugin
d33c0d
lz4 and lz4hc compression support for libknet1.
d33c0d
d33c0d
%files -n libknet1-compress-lz4-plugin
d33c0d
%{_libdir}/kronosnet/compress_lz4.so
d33c0d
%{_libdir}/kronosnet/compress_lz4hc.so
d33c0d
%endif
d33c0d
d33c0d
%if %{defined buildcompresslzo2}
d33c0d
%package -n libknet1-compress-lzo2-plugin
d33c0d
Summary: Libknet1 lzo2 support
d33c0d
License: LGPLv2+
d33c0d
Requires: libknet1%{_isa} = %{version}-%{release}
d33c0d
d33c0d
%description -n libknet1-compress-lzo2-plugin
d33c0d
lzo2 compression support for libknet1.
d33c0d
d33c0d
%files -n libknet1-compress-lzo2-plugin
d33c0d
%{_libdir}/kronosnet/compress_lzo2.so
d33c0d
%endif
d33c0d
d33c0d
%if %{defined buildcompresslzma}
d33c0d
%package -n libknet1-compress-lzma-plugin
d33c0d
Summary: Libknet1 lzma support
d33c0d
License: LGPLv2+
d33c0d
Requires: libknet1%{_isa} = %{version}-%{release}
d33c0d
d33c0d
%description -n libknet1-compress-lzma-plugin
d33c0d
lzma compression support for libknet1.
d33c0d
d33c0d
%files -n libknet1-compress-lzma-plugin
d33c0d
%{_libdir}/kronosnet/compress_lzma.so
d33c0d
%endif
d33c0d
d33c0d
%if %{defined buildcompressbzip2}
d33c0d
%package -n libknet1-compress-bzip2-plugin
d33c0d
Summary: Libknet1 bzip2 support
d33c0d
License: LGPLv2+
d33c0d
Requires: libknet1%{_isa} = %{version}-%{release}
d33c0d
d33c0d
%description -n libknet1-compress-bzip2-plugin
d33c0d
bzip2 compression support for libknet1.
d33c0d
d33c0d
%files -n libknet1-compress-bzip2-plugin
d33c0d
%{_libdir}/kronosnet/compress_bzip2.so
d33c0d
%endif
d33c0d
d33c0d
%if %{defined buildcompresszstd}
d33c0d
%package -n libknet1-compress-zstd-plugin
d33c0d
Summary: Libknet1 zstd support
d33c0d
License: LGPLv2+
d33c0d
Requires: libknet1%{_isa} = %{version}-%{release}
d33c0d
d33c0d
%description -n libknet1-compress-zstd-plugin
d33c0d
zstd compression support for libknet1.
d33c0d
d33c0d
%files -n libknet1-compress-zstd-plugin
d33c0d
%{_libdir}/kronosnet/compress_zstd.so
d33c0d
%endif
d33c0d
d33c0d
%package -n libknet1-crypto-plugins-all
d33c0d
Summary: Libknet1 crypto plugins meta package
d33c0d
License: LGPLv2+
d33c0d
%if %{defined buildcryptonss}
d33c0d
Requires: libknet1-crypto-nss-plugin%{_isa} = %{version}-%{release}
d33c0d
%endif
d33c0d
%if %{defined buildcryptoopenssl}
d33c0d
Requires: libknet1-crypto-openssl-plugin%{_isa} = %{version}-%{release}
d33c0d
%endif
d33c0d
d33c0d
%description -n libknet1-crypto-plugins-all
d33c0d
meta package to install all of libknet1 crypto plugins
d33c0d
d33c0d
%files -n libknet1-crypto-plugins-all
d33c0d
d33c0d
%package -n libknet1-compress-plugins-all
d33c0d
Summary: Libknet1 compress plugins meta package
d33c0d
License: LGPLv2+
d33c0d
%if %{defined buildcompresszlib}
d33c0d
Requires: libknet1-compress-zlib-plugin%{_isa} = %{version}-%{release}
d33c0d
%endif
d33c0d
%if %{defined buildcompresslz4}
d33c0d
Requires: libknet1-compress-lz4-plugin%{_isa} = %{version}-%{release}
d33c0d
%endif
d33c0d
%if %{defined buildcompresslzo2}
d33c0d
Requires: libknet1-compress-lzo2-plugin%{_isa} = %{version}-%{release}
d33c0d
%endif
d33c0d
%if %{defined buildcompresslzma}
d33c0d
Requires: libknet1-compress-lzma-plugin%{_isa} = %{version}-%{release}
d33c0d
%endif
d33c0d
%if %{defined buildcompressbzip2}
d33c0d
Requires: libknet1-compress-bzip2-plugin%{_isa} = %{version}-%{release}
d33c0d
%endif
d33c0d
%if %{defined buildcompresszstd}
d33c0d
Requires: libknet1-compress-zstd-plugin%{_isa} = %{version}-%{release}
d33c0d
%endif
d33c0d
d33c0d
%description -n libknet1-compress-plugins-all
d33c0d
meta package to install all of libknet1 compress plugins
d33c0d
d33c0d
%files -n libknet1-compress-plugins-all
d33c0d
d33c0d
%package -n libknet1-plugins-all
d33c0d
Summary: Libknet1 plugins meta package
d33c0d
License: LGPLv2+
d33c0d
Requires: libknet1-compress-plugins-all%{_isa} = %{version}-%{release}
d33c0d
Requires: libknet1-crypto-plugins-all%{_isa} = %{version}-%{release}
d33c0d
d33c0d
%description -n libknet1-plugins-all
d33c0d
meta package to install all of libknet1 plugins
d33c0d
d33c0d
%files -n libknet1-plugins-all
d33c0d
d33c0d
%if %{with installtests}
d33c0d
%package -n kronosnet-tests
d33c0d
Group: System Environment/Libraries
d33c0d
Summary: kronosnet test suite
d33c0d
Requires: libknet1 = %{version}-%{release}
d33c0d
Requires: libnozzle1%{_isa} = %{version}-%{release}
d33c0d
d33c0d
%description -n kronosnet-tests
d33c0d
 this package contains the libknet test suite
d33c0d
d33c0d
%files -n kronosnet-tests
d33c0d
%defattr(-,root,root,-)
d33c0d
%{_libdir}/kronosnet/tests/*
d33c0d
%endif
d33c0d
d33c0d
%if %{with rpmdebuginfo}
d33c0d
# This is left over from upstream.
d33c0d
%debug_package
d33c0d
%endif
d33c0d
d33c0d
%changelog
ec2c96
* Wed Sep 23 2020 Christine Caulfield <ccaulfie@redhat.com> - 1.18-1
ec2c96
  Rebase to 1.18
ec2c96
  Resolves: rhbz#1855301
ec2c96
5e9ade
* Wed May  6 2020 Christine Caulfield <ccaulfie@redhat.com> - 1.16-1
5e9ade
  Rebase to 1.16
5e9ade
  Resolves: rhbz#1796503
5e9ade
7c8a42
* Wed Apr 15 2020 Christine Caulfield <ccaulfie@redhat.com> - 1.15-1
7c8a42
  Rebase to 1.15
7c8a42
  Resolves: rhbz#1796503
7c8a42
cf5375
* Thu Oct 17 2019 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.10-4
cf5375
  Disable fun_pmtud_crypto_test as it can take several hours to run
cf5375
  Resolves: rhbz#1736872
cf5375
cf5375
* Wed Oct 16 2019 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.10-3
cf5375
  PMTUd: Fix MTU calculation when using crypto
cf5375
  Resolves: rhbz#1736872
cf5375
  host: Fix defrag buffer reclaim logic that could cause delivery
cf5375
        of corrupted data
cf5375
  ResolveS: rhbz#1761711
cf5375
cf5375
* Wed Oct 16 2019 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.10-2
cf5375
  link: Fix memory corruption when too many up/down events are recorded
cf5375
  Resolves: rhbz#1753517
cf5375
d33c0d
* Wed Jun 12 2019 Christine Caulfield <ccaulfie@redhat.com> - 1.10-1
d33c0d
  Rebase to 1.10 for ACL support
d33c0d
  Resolves: rhbz#1688880
d33c0d
d33c0d
* Tue May 21 2019 Christine Caulfield <ccaulfie@redhat.com> - 1.9-3
d33c0d
  Fix kronosnet-tests dependancies and add workaround for dwz crash
d33c0d
  Resolves: rhbz#1688880
d33c0d
d33c0d
* Tue May 14 2019 Christine Caulfield <ccaulfie@redhat.com> - 1.9-2
d33c0d
  add some covscan fixes
d33c0d
  Resolves: rhbz#1688880
d33c0d
d33c0d
* Tue May 14 2019 Christine Caulfield <ccaulfie@redhat.com> - 1.9-1
d33c0d
  Rebase to knet 1.9
d33c0d
  Resolves: rhbz#1688880
d33c0d
d33c0d
* Thu Mar 28 2019 Christine Caulfield <ccaulfie@redhat.com> - 1.4-5
d33c0d
  link: Check address families on a link always match
d33c0d
  Resolves: rhbz#1691419
d33c0d
d33c0d
* Thu Mar 14 2019 Christine Caulfield <ccaulfie@redhat.com> - 1.4-4
d33c0d
  Add Gating tests
d33c0d
  Resolves: rhbz#1682128
d33c0d
d33c0d
* Fri Dec 14 2018 Christine Caulfield <ccaulfie@redhat.com> - 1.4-3
d33c0d
  Don't spin if we get EPERM from sendmsg - iptables can cause this
d33c0d
  Resolves: rhbz#1658301
d33c0d
d33c0d
* Fri Oct 19 2018 Christine Caulfield <ccaulfie@redhat.com> - 1.4-2
d33c0d
  Don't close the loopback link when all the 'real' nodes are down
d33c0d
  Resolves: rhbz1640619
d33c0d
d33c0d
* Tue Aug  7 2018 Christine Caulfield <ccaulfie@redhat.com> - 1.4-1
d33c0d
- Rebase to v1.4
d33c0d
d33c0d
* Tue May 22 2018 Christine Caulfield <ccaulfie@redhat.com> - 1.3-1
d33c0d
- Rebase to v1.3
d33c0d
d33c0d
* Tue Apr 10 2018 Christine Caulfield <ccaulfie@redhat.com> - 1.1-9
d33c0d
- Rebase from Fedora
d33c0d
d33c0d
* Fri Mar 09 2018 Madison Kelly <mkelly@alteeve.ca> - 1.1-8
d33c0d
- Changed pkgconfig() to normal package names to help avoid the wrong
d33c0d
  package being pulled in to satisfy dependencies.
d33c0d
d33c0d
* Wed Mar 07 2018 Madison Kelly <mkelly@alteeve.ca> - 1.1-7
d33c0d
- Moved the comment back above '%%files -n libknet1-devel'.
d33c0d
- Added comment to '%%debug_package'.
d33c0d
d33c0d
* Wed Mar 07 2018 Madison Kelly <mkelly@alteeve.ca> - 1.1-6
d33c0d
- Added a version requirement to lz4 to deal with koji pulling in the
d33c0d
  wrong package.
d33c0d
d33c0d
* Tue Mar 06 2018 Madison Kelly <mkelly@alteeve.ca> - 1.1-5
d33c0d
- Updated ldconfig scriptlet calls.
d33c0d
- Moved the debug_package leading comment.
d33c0d
d33c0d
* Sun Mar 04 2018 Madison Kelly <mkelly@alteeve.ca> - 1.1-4
d33c0d
- Removed leading spaces from descriptions.
d33c0d
- Added the (commented out) %%check tests.
d33c0d
- Updated the changelog macro references to have two percent signs.
d33c0d
- Dropped the redundant libknet1-devel license files.
d33c0d
- Changed 'GPLv2+ + LGPLv2+' to 'GPLv2+ and LGPLv2+'.
d33c0d
- Updated %%ldconfig_scriptlets call.
d33c0d
- Clarified the kronosnet protocol version in the summary. 
d33c0d
d33c0d
* Mon Feb 26 2018 Madison Kelly <mkelly@alteeve.ca> - 1.1-3
d33c0d
- Fixed the changelog to not have the full macro names.
d33c0d
d33c0d
* Sun Feb 25 2018 Madison Kelly <mkelly@alteeve.ca> - 1.1-2
d33c0d
- Moved the 'BuildRequires: systemd' to be conditional with kronostnetd.
d33c0d
d33c0d
* Sun Feb 25 2018 Madison Kelly <mkelly@alteeve.ca> - 1.1-1
d33c0d
- Rerolled for 1.1 upstream release.
d33c0d
- Removed the (no longer needed) gcc8-fixes.patch
d33c0d
- Added the new doxygen and libqb-devel buildrequires for libknetd.
d33c0d