summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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
* sys-apps/rng-tools: amd64 stable wrt bug #562520Agostino Sarubbo2015-10-191-1/+1
| | | | | Package-Manager: portage-2.2.20.1 RepoMan-Options: --include-arches="amd64"
* sys-apps/rng-tools: open entropy src with O_NOCTTY flag #556456Gokturk Yuksek2015-10-012-0/+46
| | | | | | | | | This revision patches the source file 'rngd_entsource.c', adding 'O_NOCTTY' flag to the open() call that opens the entropy source for rngd. Gentoo-Bug: https://bugs.gentoo.org/556456 Package-Manager: portage-2.2.20.1
* sys-apps/rng-tools: handle if redirecting output to a file fails in ebuildGokturk Yuksek2015-10-011-1/+1
| | | | | | Use '|| die' to handle if redirecting output to a file fails. Package-Manager: portage-2.2.20.1
* sys-apps/rng-tools: do not specify rng device in init script #481254Gokturk Yuksek2015-10-011-0/+40
| | | | | | | | | | | | | | | | | | | | | | | | | Linux hw_random driver provides a unified interface for multiple RNGs and the RNG source is exposed through /dev/hwrng device node. There is no need for the init script to look for other device nodes under /dev. By default, rngd uses /dev/hwrng as the entropy source, therefore it's not required to specify it on the command line explicitly. The creation of /dev/hwrng requires CONFIG_DEVTMPFS support in the kernel. Due to the way hw_random module is written, some device managers may fail to create /dev/hwrng successfuly. Mdev, for example, incorrectly creates /dev/hw_random instead of /dev/hwrng, mistaking module's own name for the device node's name (see related bug 561102). However, per gentoo wiki [1], CONFIG_DEVTMPFS is part of the mdev setup and these systems will have two device nodes (/dev/hw_random and /dev/hwrng) that point to the same device. Even in such setups, rngd will successfuly find /dev/hwrng. [1] https://wiki.gentoo.org/index.php?title=Mdev&oldid=246636 Gentoo-Bug: https://bugs.gentoo.org/481254 Package-Manager: portage-2.2.20.1
* sys-apps/rng-tools: remove unused lines from the init script.Gokturk Yuksek2015-10-011-3/+0
| | | | | | | | | | | rngd-initd-r1-4.1 has been created as a result of the patch proposed for bug 481254. However, one chunk has been missed and did not make it to the commit. The variable DEFAULT_DEVICE isn't used by the init script. Remove the related lines from the script. Package-Manager: portage-2.2.20.1
* sys-apps/rng-tools: x86 stable wrt bug #555100Agostino Sarubbo2015-09-251-1/+1
| | | | | Package-Manager: portage-2.2.20.1 RepoMan-Options: --include-arches="x86"
* sys-apps/rng-tools: amd64 stable wrt bug #555100Agostino Sarubbo2015-09-241-1/+1
| | | | | Package-Manager: portage-2.2.20.1 RepoMan-Options: --include-arches="amd64"
* Revert DOCTYPE SYSTEM https changes in metadata.xmlMike Gilbert2015-08-241-1/+1
| | | | | | | repoman does not yet accept the https version. This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450. Bug: https://bugs.gentoo.org/552720
* Use https by defaultJustin Lecher2015-08-241-1/+1
| | | | | | Convert all URLs for sites supporting encrypted connections from http to https Signed-off-by: Justin Lecher <jlec@gentoo.org>
* sys-apps/rng-tools: improve the man pages #555094 #555106Mike Frysinger2015-08-143-0/+72
|
* sys-apps/rng-tools: add ~arm keyword wrt bug #542360Mikle Kolyada2015-08-101-1/+1
| | | | Package-Manager: portage-2.2.20
* proj/gentoo: Initial commitRobin H. Johnson2015-08-0811-0/+387
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed