summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* sys-apps/rng-tools: bump to 6.9Göktürk Yüksek2019-12-192-0/+87
| | | | | Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
* sys-apps/rng-tools-6.7-r2: alpha stable, bug 699172Matt Turner2019-11-221-1/+1
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* sys-apps/rng-tools: ia64 stable wrt bug #699172Agostino Sarubbo2019-11-141-1/+1
| | | | | | Package-Manager: Portage-2.3.76, Repoman-2.3.16 RepoMan-Options: --include-arches="ia64" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* sys-apps/rng-tools: ppc stable wrt bug #699172Agostino Sarubbo2019-11-131-1/+1
| | | | | | Package-Manager: Portage-2.3.76, Repoman-2.3.16 RepoMan-Options: --include-arches="ppc" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* sys-apps/rng-tools: ppc64 stable wrt bug #699172Agostino Sarubbo2019-11-121-1/+1
| | | | | | Package-Manager: Portage-2.3.76, Repoman-2.3.16 RepoMan-Options: --include-arches="ppc64" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* sys-apps/rng-tools: bump to 6.8Göktürk Yüksek2019-11-072-0/+87
| | | | | Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
* sys-apps/rng-tools: x86 stable wrt bug #699172Agostino Sarubbo2019-11-041-1/+1
| | | | | | Package-Manager: Portage-2.3.76, Repoman-2.3.16 RepoMan-Options: --include-arches="x86" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* sys-apps/rng-tools: arm stable wrt bug #699172Mikle Kolyada2019-11-031-1/+1
| | | | | | Package-Manager: Portage-2.3.76, Repoman-2.3.16 RepoMan-Options: --include-arches="arm" Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
* sys-apps/rng-tools-6.7-r2: amd64 stable (Bug 699172)Piotr Karbowski2019-11-031-1/+1
| | | | | Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Piotr Karbowski <slashbeast@gentoo.org>
* sys-apps/rng-tools: Add patch to help rngd shutdownMatt Turner2019-10-242-0/+135
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* sys-apps/rng-tools-6.7-r1: added ~ppc64Matt Turner2019-08-081-1/+1
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* sys-apps/rng-tools-6.7-r1: added ~mipsMatt Turner2019-08-061-1/+1
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* sys-apps/rng-tools: keyword for ~riscvGöktürk Yüksek2019-06-171-1/+1
| | | | | | Package-Manager: Portage-2.3.67, Repoman-2.3.12 RepoMan-Options: --include-arches="riscv" Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
* sys-apps/rng-tools: use '/run' instead of '/var/run' #685326Göktürk Yüksek2019-06-052-2/+2
| | | | | | Closes: https://bugs.gentoo.org/685326 Package-Manager: Portage-2.3.67, Repoman-2.3.12 Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
* sys-apps/rng-tools: fix a linking problem with USE=pkcs11 #684228Göktürk Yüksek2019-06-041-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In function init_pkcs11_entropy_source(), there is a call to ERR_reason_error_string(), which is defined in libcrypto. This causes linking problems for rng-tools under certain configurations: $ ./configure --disable-jitterentropy --without-nistbeacon --with-pkcs11 ... $ make ... gcc -pthread -g -O2 -pthread -o rngd rngd-rngd.o rngd-rngd_entsource.o rngd-rngd_linux.o rngd-util.o rngd-rngd_rdrand.o rdrand_asm.o rngd-rngd_pkcs11.o librngd.a -lsysfs -lgcrypt -lsysfs -lp11 -lgcrypt -lsysfs /usr/lib/gcc/x86_64-pc-linux-gnu/8.3.0/../../../../x86_64-pc-linux-gnu/bin/ld: rngd-rngd_pkcs11.o: undefined reference to symbol 'ERR_reason_error_string@@OPENSSL_1_1_0' /usr/lib/gcc/x86_64-pc-linux-gnu/8.3.0/../../../../x86_64-pc-linux-gnu/bin/ld: /usr/lib64/libcrypto.so.1.1: error adding symbols: DSO missing from command line collect2: error: ld returned 1 exit status make[2]: *** [Makefile:609: rngd] Error 1 make[2]: Leaving directory '/tmp/rng-tools' make[1]: *** [Makefile:888: all-recursive] Error 1 make[1]: Leaving directory '/tmp/rng-tools' make: *** [Makefile:458: all] Error 2 This symbol is defined in libcrypto: $ readelf --dyn-syms /usr/lib64/libcrypto.so | grep ERR_reason_error_string 314: 000000000012cf60 155 FUNC GLOBAL DEFAULT 12 ERR_reason_error_string@@OPENSSL_1_1_0 Linking rngd against libcrypto when pkcs11 is enabled fixes the issue. Bug: https://github.com/nhorman/rng-tools/pull/61 Closes: https://bugs.gentoo.org/684228 Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
* sys-apps/rng-tools: keyword ~arm64Anthony G. Basile2019-04-203-3/+3
| | | | | Signed-off-by: Anthony G. Basile <blueness@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* sys-apps/rng-tools: remove unused patchMichael Mair-Keimberger2019-04-041-45/+0
| | | | | | Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/11552 Signed-off-by: Aaron Bauman <bman@gentoo.org>
* sys-apps/rng-tools: remove oldGöktürk Yüksek2019-03-1214-719/+0
| | | | | | Bug: https://bugs.gentoo.org/679122 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
* sys-apps/rng-tools: bump to 6.7 #679122Göktürk Yüksek2019-03-125-0/+247
| | | | | | Closes: https://bugs.gentoo.org/679122 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
* sys-apps/rng-tools: add support for muslAnthony G. Basile2019-02-2710-12/+22
| | | | | Signed-off-by: Anthony G. Basile <blueness@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
* sys-apps/rng-tools: rewrite initd and confd (6.6-r1 only)Göktürk Yüksek2018-12-283-0/+210
| | | | | | | | | | | | | | | | | | | | | Restructure the openrc init script and the accompanying confd file to reflect the recent changes to rngd. - Instead of having individual NO_FOO="1" style variables in the confd file for each entropy source, maintain a single list of entropy sources to enable. Likewise, maintain a list of entropy sources to disable. - Allow per-entropy-source options to be set inside the confd file. - The init file defines $description now. - Use $command_args_background instead of $command_args to specify the daemon behavior. - Allow default setting of --fill-watermark. - Allow extra arguments to be passed to rngd from the confd file. Bug: https://bugs.gentoo.org/650622 Bug: https://bugs.gentoo.org/673120 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
* sys-apps/rng-tools: bump to 6.6Göktürk Yüksek2018-11-072-0/+69
| | | | | Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
* sys-apps/rng-tools: bump to v6.5Göktürk Yüksek2018-09-263-0/+130
| | | | | Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org> Package-Manager: Portage-2.3.49, Repoman-2.3.11
* sys-apps/rng-tools: bump to 6.4Göktürk Yüksek2018-09-193-0/+106
| | | | Package-Manager: Portage-2.3.49, Repoman-2.3.10
* sys-apps/rng-tools: bump to 6.3.1Göktürk Yüksek2018-07-162-0/+70
| | | | Package-Manager: Portage-2.3.41, Repoman-2.3.9
* sys-apps/rng-tools: bump to v6.3Göktürk Yüksek2018-07-064-0/+109
| | | | Package-Manager: Portage-2.3.41, Repoman-2.3.9
* sys-apps/rng-tools: bump to 6.2Göktürk Yüksek2018-05-162-0/+61
| | | | Package-Manager: Portage-2.3.27, Repoman-2.3.9
* sys-apps/rng-tools: fix nistbeacon block validation on 32-bit x86Göktürk Yüksek2018-04-192-1/+47
| | | | Package-Manager: Portage-2.3.19, Repoman-2.3.6
* sys-apps: Update Manifest hashes.Ulrich Müller2017-12-091-3/+3
|
* sys-apps/rng-tools: add support for NP_TPM and NO_DRNG options in v6Göktürk Yüksek2017-10-253-2/+18
| | | | | | | | | | | | | rng-tools-6 removes the command line options '--no-tpm' and '--no-drng'. Instead, it allows the inclusion and exclusion of a particular entropy source using the command line options '-n' and 'x' respectively. Maintain backwards compatibility by translating the NP_TPM and NO_DRNG options in the conf file to exclusion options. Closes: https://bugs.gentoo.org/630798 Package-Manager: Portage-2.3.8, Repoman-2.3.2
* sys-apps/rng-tools: add github remote-idGöktürk Yüksek2017-10-101-0/+1
| | | | Package-Manager: Portage-2.3.8, Repoman-2.3.2
* sys-apps/rng-tools: bump to 6.1Göktürk Yüksek2017-10-103-0/+66
| | | | Package-Manager: Portage-2.3.8, Repoman-2.3.2
* sys-apps/rng-tools: Removed old.Lars Wendler2017-08-146-211/+0
| | | | Package-Manager: Portage-2.3.7, Repoman-2.3.3
* sys-apps/rng-tools: Bump to version 6Lars Wendler2017-08-147-8/+100
| | | | Package-Manager: Portage-2.3.7, Repoman-2.3.3
* Drop remaining $Id$ and $Header$ from files.Ulrich Müller2017-02-282-2/+0
| | | | Bug: 611234
* Drop $Id$ per council decision in bug #611234.Robin H. Johnson2017-02-284-4/+0
| | | | Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
* sys-apps/rng-tools: Cleanup due to #390951Pacho Ramos2016-05-291-3/+0
| | | | Package-Manager: portage-2.3.0_rc1
* sys-apps/rng-tools: update maintainer email and remove proxy-maintGöktürk Yüksek2016-05-221-5/+1
| | | | Package-Manager: portage-2.2.28
* sys-apps/rng-tools: use #!/sbin/openrc-run instead of #!/sbin/runscriptAustin English2016-05-182-2/+2
|
* sys-apps/rng-tools: Fixes maintainer's name.Patrice Clement2016-04-231-1/+1
|
* sys-apps/rng-tools: reorder maintainers, remove <description>, fix <name>Göktürk Yüksek2016-04-231-4/+3
| | | | | | | Package-Manager: portage-2.2.26 Closes: https://github.com/gentoo/gentoo/pull/1316 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
* Set appropriate maintainer types in metadata.xml (GLEP 67)Michał Górny2016-01-241-4/+4
|
* Replace all herds with appropriate projects (GLEP 67)Michał Górny2016-01-241-2/+8
| | | | | Replace all uses of herd with appropriate project maintainers, or no maintainers in case of herds requested to be disbanded.
* Unify quoting in metadata.xml files for machine processingMichał Górny2016-01-241-3/+3
| | | | | | | Force unified quoting in all metadata.xml files since lxml does not preserve original use of single and double quotes. Ensuring unified quoting before the process allows distinguishing the GLEP 67-related metadata.xml changes from unrelated quoting changes.
* standardize various metadata.xml styleMike Frysinger2015-11-241-16/+15
|
* sys-apps/rng-tools: alpha stable wrt bug #562520Agostino Sarubbo2015-11-231-1/+1
| | | | | Package-Manager: portage-2.2.20.1 RepoMan-Options: --include-arches="alpha"
* sys-apps/rng-tools: ia64 stable wrt bug #562520Mikle Kolyada2015-11-081-1/+1
| | | | Package-Manager: portage-2.2.20.1
* sys-apps/rng-tools: arm stable, bug #562520Markus Meier2015-11-031-1/+1
| | | | | Package-Manager: portage-2.2.23 RepoMan-Options: --include-arches="arm"
* sys-apps/rng-tools: ppc stable wrt bug #562520Agostino Sarubbo2015-10-301-1/+1
| | | | | Package-Manager: portage-2.2.20.1 RepoMan-Options: --include-arches="ppc"
* sys-apps/rng-tools: x86 stable wrt bug #562520Mikle Kolyada2015-10-251-1/+1
| | | | Package-Manager: portage-2.2.20.1