95fb228
%global _hardened_build 1
Vladis Dronov fcd3898
Vladis Dronov aedde8e
# this is a correct if, bcond_with actually means without and vice versa
e438127
%if 0%{?rhel} && 0%{?rhel} >= 9
e438127
%bcond_with    pkcs11
Vladis Dronov fcd3898
%bcond_with    rtlsdr
e438127
%else
e438127
%bcond_without pkcs11
Vladis Dronov fcd3898
%bcond_without rtlsdr
e438127
%endif
e438127
ac59ed7
Summary:        Random number generator related utilities
ac59ed7
Name:           rng-tools
Vladis Dronov aed1fb4
Version:        6.16
Vladis Dronov 222ba6c
Release:        7%{?dist}
Vladis Dronov 93f911d
License:        GPL-2.0-or-later
Neil Horman e46e2a5
URL:            https://github.com/nhorman/rng-tools
Vladis Dronov d975414
Source0:        %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
ac59ed7
Source1:        rngd.service
Vladis Dronov 12e926e
Source2:        rngd.sysconfig
Neil Horman 2aa45be
Vladis Dronov 941b9f1
BuildRequires: gcc make binutils
Vladis Dronov fcd3898
BuildRequires: gettext
Vladis Dronov c898f13
BuildRequires: systemd systemd-rpm-macros
Vladis Dronov aaca5d6
BuildRequires: autoconf >= 2.57, automake >= 1.7
Vladis Dronov b9ce661
BuildRequires: libgcrypt-devel libcurl-devel
Neil Horman ba78ef9
BuildRequires: libxml2-devel openssl-devel
Neil Horman 9a9f6e6
BuildRequires: jitterentropy-devel
Neil Horman c5639d9
BuildRequires: jansson-devel
Vladis Dronov 5103660
BuildRequires: libcap-devel
Vladis Dronov fcd3898
%if %{with rtlsdr}
Neil Horman 3656dda
BuildRequires: rtl-sdr-devel
Vladis Dronov fcd3898
%endif
e438127
%if %{with pkcs11}
e438127
BuildRequires: libp11-devel
Vladis Dronov aed1fb4
Suggests: opensc
e438127
%endif
Neil Horman 9a9f6e6
Vladis Dronov c898f13
Requires(post): systemd
Vladis Dronov c898f13
Requires(preun): systemd
Vladis Dronov c898f13
Requires(postun): systemd
ca7cd39
Vladis Dronov aaca5d6
# This ensures that the selinux-policy package and all its dependencies
Vladis Dronov aaca5d6
# are not pulled into containers and other systems that do not use SELinux.
Vladis Dronov aaca5d6
Requires: (selinux-policy >= 36.5 if selinux-policy)
Vladis Dronov aaca5d6
Vladis Dronov aaca5d6
Patch0: 1-rt-comment-out-have-aesni.patch
Vladis Dronov aaca5d6
Patch1: 2-rt-revert-build-randstat.patch
Vladis Dronov 8e825f6
ca7cd39
%description
Vladis Dronov aedde8e
This is a random number generator daemon and its tools. It monitors
Vladis Dronov aedde8e
a set of entropy sources present on a system (like /dev/hwrng, RDRAND,
Vladis Dronov aedde8e
TPM, jitter) and supplies entropy from them to a kernel entropy pool.
ca7cd39
Vladis Dronov fcd3898
%prep
Vladis Dronov 8e825f6
%autosetup -p0
ca7cd39
ca7cd39
%build
Vladis Dronov fcd3898
%if !%{with pkcs11}
Vladis Dronov fcd3898
%define _without_pkcs11 --without-pkcs11
Vladis Dronov fcd3898
%endif
Vladis Dronov fcd3898
%if !%{with rtlsdr}
Vladis Dronov fcd3898
%define _without_rtlsdr --without-rtlsdr
e438127
%endif
Vladis Dronov fcd3898
Vladis Dronov fcd3898
./autogen.sh
Vladis Dronov 805e2b6
# a dirty hack to force PIC for a PIC-aware assembly code for i686
Vladis Dronov 805e2b6
# /usr/lib/rpm/redhat/redhat-hardened-cc1 in Koji/Brew does not
Vladis Dronov 805e2b6
# force PIC for assembly sources as of now
Vladis Dronov 805e2b6
%ifarch i386 i686
Vladis Dronov 805e2b6
sed -i -e '/^#define RDRAND_RETRY_LIMIT\t10/a#define __PIC__ 1' rdrand_asm.S
Vladis Dronov 805e2b6
%endif
Vladis Dronov 941b9f1
# a dirty hack so libdarn_impl_a_CFLAGS overrides common CFLAGS
Vladis Dronov 941b9f1
sed -i -e 's/$(libdarn_impl_a_CFLAGS) $(CFLAGS)/$(CFLAGS) $(libdarn_impl_a_CFLAGS)/' Makefile.in
Vladis Dronov fcd3898
%configure %{?_without_pkcs11} %{?_without_rtlsdr}
8d6b73f
%make_build
ca7cd39
ca7cd39
%install
8d6b73f
%make_install
ca7cd39
ac59ed7
# install systemd unit file
8d6b73f
install -Dt %{buildroot}%{_unitdir} -m0644 %{SOURCE1}
Vladis Dronov 12e926e
# install sysconfig file
Vladis Dronov 12e926e
install -D %{SOURCE2} -m0644 %{buildroot}%{_sysconfdir}/sysconfig/rngd
Neil Horman 2aa45be
ac59ed7
%post
Jaromir Capik 27b1912
%systemd_post rngd.service
Neil Horman 2aa45be
ac59ed7
%preun
Jaromir Capik 27b1912
%systemd_preun rngd.service
ac59ed7
ac59ed7
%postun
Jaromir Capik 27b1912
%systemd_postun_with_restart rngd.service
ca7cd39
ca7cd39
%files
c4c98fe
%{!?_licensedir:%global license %%doc}
c4c98fe
%license COPYING
Vladis Dronov aaca5d6
%doc AUTHORS README.md
ca7cd39
%{_bindir}/rngtest
ca7cd39
%{_sbindir}/rngd
ca7cd39
%{_mandir}/man1/rngtest.1.*
ca7cd39
%{_mandir}/man8/rngd.8.*
Vladis Dronov 12e926e
%attr(0644,root,root)    %{_unitdir}/rngd.service
Vladis Dronov 12e926e
%config(noreplace) %attr(0644,root,root)    %{_sysconfdir}/sysconfig/rngd
ca7cd39
ca7cd39
%changelog
Vladis Dronov 222ba6c
* Sat Mar 30 2024 Vladis Dronov <vdronov@redhat.com> - 6.16-7
Vladis Dronov 222ba6c
- Update to the upstream v6.16 + tip of origin/master @ 98cf8d63
Vladis Dronov 222ba6c
Vladis Dronov 93f911d
* Thu Feb 08 2024 Vladis Dronov <vdronov@redhat.com> - 6.16-6
Vladis Dronov 93f911d
- Use proper SPDX license identifiers
Vladis Dronov 93f911d
1f64a82
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 6.16-5
1f64a82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
1f64a82
f139464
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 6.16-4
f139464
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
f139464
fe32a19
* Tue Dec 19 2023 Florian Weimer <fweimer@redhat.com> - 6.16-3
fe32a19
- Fix C compatibility issue in configure script
fe32a19
afcfc3c
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 6.16-2
afcfc3c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
afcfc3c
Vladis Dronov aed1fb4
* Thu Feb 02 2023 Vladis Dronov <vdronov@redhat.com> - 6.16-1
Vladis Dronov aed1fb4
- Update to the upstream v6.16 + tip of origin/master @ 0e560296
Vladis Dronov aed1fb4
- Get rid of text relocations in -fPIE build
Vladis Dronov aed1fb4
- Add a hint for opensc package (bz 1845854)
Vladis Dronov aed1fb4
6aa9070
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 6.15-6
6aa9070
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
6aa9070
Vladis Dronov 6473399
* Tue Dec 27 2022 Vladis Dronov <vdronov@redhat.com> - 6.15-5
Vladis Dronov 6473399
- Update to the upstream v6.15 + tip of origin/master @ cb8cc624
Vladis Dronov 6473399
Vladis Dronov aaca5d6
* Wed Sep 21 2022 Vladis Dronov <vdronov@redhat.com> - 6.15-4
Vladis Dronov aaca5d6
- Update to the upstream v6.15 + tip of origin/master @ 6dcc9ec2
Vladis Dronov aaca5d6
- Do not require selinux-policy if it is not present
Vladis Dronov aaca5d6
f974664
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 6.15-3
f974664
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
f974664
Vladis Dronov 941b9f1
* Sat Apr 16 2022 Vladis Dronov <vdronov@redhat.com> - 6.15-2
Vladis Dronov 941b9f1
- Update to the upstream v6.15 + tip of origin/master @ 172bf0e3
Vladis Dronov 4e7f1f5
- Add a requirement for selinux-policy of a certain version
Vladis Dronov 941b9f1
- Fix an error building with jitterentropy-3.4.0
Vladis Dronov 4e7f1f5
Vladis Dronov 5103660
* Tue Feb 22 2022 Vladis Dronov <vdronov@redhat.com> - 6.15-1
Vladis Dronov 5103660
- Update to the upstream v6.15 + tip of origin/master @ 3009fdd5
Vladis Dronov 5103660
- Allow rngd process to drop privileges
Vladis Dronov 5103660
a4a34ec
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 6.14-3.git.b2b7934e
a4a34ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
a4a34ec
Vladis Dronov 7eb8344
* Tue Nov 16 2021 Vladis Dronov <vdronov@redhat.com> - 6.14-2.git.b2b7934e
Vladis Dronov 7eb8344
- Update to the upstream v6.14 + tip of origin/master @ b2b7934e
Vladis Dronov 7eb8344
Vladis Dronov 12e926e
* Mon Sep 20 2021 Vladis Dronov <vdronov@redhat.com> - 6.14-1.git.56626083
Vladis Dronov 8e825f6
- Update to the upstream v6.14 + tip of origin/master @ 56626083
Vladis Dronov 12e926e
- Add an important 82f665c4 and a revert of 2ce93190
Vladis Dronov 8e825f6
- Add a fix for covscan unused variable warning
Vladis Dronov 12e926e
- Add a config file for storing rngd options
Vladis Dronov 8e825f6
9b37845
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 6.13-4.git.d207e0b6
9b37845
- Rebuilt with OpenSSL 3.0.0
9b37845
83ddc64
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 6.13-3.git.d207e0b6
83ddc64
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
83ddc64
Vladis Dronov 1f699a2
* Sun Jul 11 2021 Vladis Dronov <vdronov@redhat.com> - 6.13-2.git.d207e0b6
Vladis Dronov 1f699a2
- Update sources to incorporate the latest chages
Vladis Dronov 1f699a2
- Add more fixes for the onecpu branch
Vladis Dronov 1f699a2
Vladis Dronov 65d2e53
* Tue Jul 06 2021 Vladis Dronov <vdronov@redhat.com> - 6.13.git.d207e0b6-1
Vladis Dronov 65d2e53
- Update to the upstream v6.13 + tip of origin/master + onecpu
Vladis Dronov 65d2e53
  branch + revert of 2ce93190
Vladis Dronov 65d2e53
- Rebuild rng-tools against the latest jitterentropy library
Vladis Dronov 65d2e53
  3.0.2.git.d18d5863 with fixes for an important issue:
Vladis Dronov 65d2e53
  https://github.com/nhorman/rng-tools/pull/123
Vladis Dronov 65d2e53
  https://github.com/smuellerDD/jitterentropy-library/issues/37
Vladis Dronov 65d2e53
- Add important upstream fixes for the one CPU case (bz 1974132)
Vladis Dronov 65d2e53
- Revert introducing a new but mostly useless randstat binary
Vladis Dronov 65d2e53
- A couple of minor code and test fixes
Vladis Dronov 65d2e53
Vladis Dronov a35233e
* Fri Jun 18 2021 Vladis Dronov <vdronov@redhat.com> - 6.13-2
Vladis Dronov a35233e
- Rewrite init_kernel_rng() to ensure proper logging
Vladis Dronov a35233e
- Adjust Source0 to a more proper one
Vladis Dronov a35233e
- Adjust wrong date in a changelog
Vladis Dronov a35233e
- Remove Provides: jitterentropy-rngd as it was retired in f29
Vladis Dronov a35233e
Vladis Dronov 6c9ace9
* Wed Jun 16 2021 Vladis Dronov <vdronov@redhat.com> - 6.13-1
Vladis Dronov c40c82e
- Update the sources to 6.13
Vladis Dronov c40c82e
- Add important fixes from the upstream
Vladis Dronov c40c82e
Vladis Dronov 2922751
* Mon May 24 2021 Vladis Dronov <vdronov@redhat.com> - 6.12-3
Vladis Dronov 2922751
- Update the rngd.service file
Vladis Dronov 2922751
- Add 3 small upstream patches fixing issues
Vladis Dronov 2922751
Vladis Dronov feb3805
* Wed Apr 28 2021 Vladis Dronov <vdronov@redhat.com> - 6.12-2
Vladis Dronov feb3805
- There is no need to hardcode _sbindir anymore, also the old value is incorrect
Vladis Dronov feb3805
Vladis Dronov b9ce661
* Fri Mar 12 2021 Vladis Dronov <vdronov@redhat.com> - 6.12-1
Vladis Dronov b9ce661
- Update to 6.12
Vladis Dronov b9ce661
- Drop libsysfs dependency since it is not used anymore
Vladis Dronov b9ce661
- Remove jitterentropy-remove-install.patch since we depend on a system jitterentropy library now
Vladis Dronov b9ce661
- Remove rngd-shutdown.patch since it is the upstream commit 62fbff0a
Vladis Dronov b9ce661
- Remove rngd-exit-code-for-list.patch since it is the upstream commit fb46dc48
Vladis Dronov b9ce661
- Remove pkcs11-path.patch since it is the upstream commit 1993eca9
Vladis Dronov b9ce661
Vladis Dronov c898f13
* Tue Mar 02 2021 Vladis Dronov <vdronov@redhat.com> - 6.11-3
Vladis Dronov c898f13
- Replace outdated systemd-units
Vladis Dronov c898f13
0357045
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 6.11-2
0357045
- Rebuilt for updated systemd-rpm-macros
Vladis Dronov 65d2e53
  See https://pagure.io/fesco/issue/2583
0357045
9c72fbc
* Fri Jan 29 2021 Dan Horák <dan[at]danny.cz> - 6.11-1
9c72fbc
- Update to 6.11
9c72fbc
e0bf2c4
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 6.10-8
e0bf2c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
e0bf2c4
Vladis Dronov fcd3898
* Mon Nov 16 2020 Vladis Dronov <vdronov@redhat.com> - 6.10-7
Vladis Dronov fcd3898
- Make rtl-sdr optional
Vladis Dronov fcd3898
- For RHEL9 and above, do not build with rtl-sdr
Vladis Dronov fcd3898
e438127
* Mon Oct 05 2020 Troy Dawson <tdawson@redhat.com> - 6.10-6
e438127
- Make pkcs11 optional
e438127
- For RHEL9 and above, do not build with pkcs11
e438127
04d5bab
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.10-5
04d5bab
- Second attempt - Rebuilt for
04d5bab
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
04d5bab
3dca8dc
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.10-4
3dca8dc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
3dca8dc
Neil Horman 3656dda
* Fri Mar 27 2020 Neil Horman <nhorman@redhat.com> - 6.10-3
Neil Horman 3656dda
- Fix missing buildrequires
Neil Horman 3656dda
Neil Horman c5639d9
* Fri Mar 27 2020 Neil Horman <nhorman@redhat.com> - 6.10-2
Neil Horman c5639d9
- Fix missing buildrequires
Neil Horman c5639d9
Neil Horman 95f7cb2
* Fri Mar 27 2020 Neil Horman <nhorman@redhat.com> - 6.10-1
Neil Horman 95f7cb2
- Update to latest upstream
Neil Horman 95f7cb2
3d266d7
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.9-3
3d266d7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
3d266d7
Neil Horman 0af5672
* Mon Jan 13 2020 Neil Horman <nhorman@redhat.com> - 6.9-2
Neil Horman 0af5672
- Correct default pkcs11 path on 32 bit arch (bz 1788083)
Neil Horman 0af5672
Neil Horman 72e2e00
* Tue Dec 17 2019 Neil Horman <nhorman@redhat.com> - 6.9-1
Neil Horman 72e2e00
- update to latest upstream
Neil Horman 72e2e00
b64d457
* Mon Aug 05 2019 Volker Froehlich <volker27@gmx.at> - 6.7-4
b64d457
- Remove explicit Requires for libraries
b64d457
b9f02a5
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 6.7-3
b9f02a5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
b9f02a5
Neil Horman ee4a52c
* Fri May 24 2019 Neil Horman <nhorman@redhat.com> -6.7-2
Neil Horman ee4a52c
- Fix race in shutdown leading to hang (bz 1690364)
Neil Horman 79c68e1
- bump version number
Neil Horman ee4a52c
Neil Horman 9a9f6e6
* Thu Feb 14 2019 Neil Horman <nhorman@redhat.com> - 6.7-1
Neil Horman 9a9f6e6
- Update to latest upstream
Neil Horman 9a9f6e6
1e010b9
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 6.3.1-3
1e010b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
1e010b9
Neil Horman 4a333ce
* Mon Oct 01 2018 Neil Horman <nhorman@redhat.com> - 6.3.1-2
Neil Horman 4a333ce
- Add Provides for jitterentropy-rngd (bz 1634788)
Neil Horman 4a333ce
Neil Horman cf54132
* Mon Jul 16 2018 Neil Horman <nhorman@redhat.com> - 6.3.1-1
Neil Horman cf54132
- Update to latest upstream
Neil Horman cf54132
af1d6d7
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.3-2
af1d6d7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
af1d6d7
Neil Horman 8d3021b
* Fri Jul 06 2018 Neil Horman <nhorman@redhat.com> - 6.3-1
Neil Horman e98c683
- update to latest upstream (#1598608)
Neil Horman e98c683
Neil Horman 479bed7
* Thu May 10 2018 Neil Horman <nhorman@redhat.com>
Vladis Dronov c40c82e
- Update to latest upstream
Neil Horman 479bed7
9779d71
* Thu Feb 15 2018 Adam Williamson <awilliam@redhat.com> - 6.1-4
9779d71
- Drop all attempts to 'fix' #1490632, revert spec to same as 6.1-1
9779d71
2624712
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.1-3
2624712
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2624712
Neil Horman 2aa45be
* Thu Nov 02 2017 Neil Horman <nhorman@redhat.com> - 6.1-2
Neil Horman 2aa45be
- Enable rngd on entropy src availability (bz 1490632)
Neil Horman 7a42c5f
Neil Horman ba78ef9
* Tue Oct 10 2017 Neil Horman <nhorman@redhat.com> - 6.1-1
Neil Horman ba78ef9
- update to latest upstream
Neil Horman ba78ef9
Neil Horman e46e2a5
* Fri Jul 28 2017 Neil Horman <nhorman@redhat.com> - 6-1
Neil Horman e46e2a5
- Update to latest upstream
Neil Horman e46e2a5
c899fe6
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5-10
c899fe6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c899fe6
a69f1ca
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5-9
a69f1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
a69f1ca
8d6b73f
* Tue Oct 18 2016 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 5-8
8d6b73f
- If device is not found exit immediately (#892178)
8d6b73f
c4c98fe
* Sun Mar  6 2016 Peter Robinson <pbrobinson@fedoraproject.org> 5-7
c4c98fe
- Use %%license
c4c98fe
394db50
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5-6
394db50
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
394db50
2ddb7d8
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5-5
2ddb7d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2ddb7d8
95fb228
* Wed Dec 10 2014 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 5-4
95fb228
- Build with hardening flags (#1051344)
95fb228
- Fail nicely if no hardware generator is found (#892178)
95fb228
- Drop unneeded dependency
95fb228
6e17e26
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5-3
6e17e26
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
6e17e26
7b2980a
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5-2
7b2980a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
7b2980a
Luke Macken 452efd5
* Wed Apr 23 2014 Luke Macken <lmacken@redhat.com> - 5-1
Luke Macken 452efd5
- Update to release version 5.
Luke Macken 452efd5
- Remove rng-tools-man.patch
Luke Macken 452efd5
b284d5c
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4-4
b284d5c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
b284d5c
34e8331
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4-3
34e8331
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
34e8331
Jaromir Capik 27b1912
* Tue Sep 25 2012 Jaromir Capik <jcapik@redhat.com> - 4-2
Jaromir Capik 27b1912
- Migration to new systemd macros
Jaromir Capik 27b1912
Jeff Garzik 7403d94
* Mon Aug 6 2012 Jeff Garzik <jgarzik@redhat.com> - 4-1
Jeff Garzik 7403d94
- Update to release version 4.
Jeff Garzik 7403d94
09a7414
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3-5
09a7414
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
09a7414
fdf70c3
* Thu Jan 12 2012 Jiri Popelka <jpopelka@redhat.com> - 3-4
9012e9e
- 2 patches from RHEL-6
ac59ed7
- systemd service
fdf70c3
- man page fixes
fdf70c3
- modernize spec file
fdf70c3
b1d0cce
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3-3
b1d0cce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b1d0cce
94671bd
* Sat Jul  3 2010 Jeff Garzik <jgarzik@redhat.com> - 3-2
94671bd
- comply with renaming guidelines, by Providing rng-utils = 1:2.0-4.2
94671bd
ca7cd39
* Sat Jul  3 2010 Jeff Garzik <jgarzik@redhat.com> - 3-1
ca7cd39
- Update to release version 3.
ca7cd39
ca7cd39
* Fri Mar 26 2010 Jeff Garzik <jgarzik@redhat.com> - 2-3
ca7cd39
- more minor updates for package review
ca7cd39
ca7cd39
* Thu Mar 25 2010 Jeff Garzik <jgarzik@redhat.com> - 2-2
ca7cd39
- several minor updates for package review
ca7cd39
ca7cd39
* Wed Mar 24 2010 Jeff Garzik <jgarzik@redhat.com> - 2-1
ca7cd39
- initial revision (as rng-tools)