[gentoo-commits] repo/gentoo:master commit in: sys-apps/timer_entropyd/, sys-apps/timer_entropyd/files/

2021-06-08 Thread Georgy Yakovlev
commit: 8398ecce45070226a4c1d2bb372f4b0caa4561d0
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  9 05:29:24 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun  9 05:30:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8398ecce

sys-apps/timer_entropyd: treeclean

Closes: https://bugs.gentoo.org/434900
Closes: https://bugs.gentoo.org/552760
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-apps/timer_entropyd/Manifest   |  1 -
 .../files/timer_entropyd-0.1-syslog.patch  | 28 ---
 .../timer_entropyd/files/timer_entropyd.initd.1| 13 ---
 sys-apps/timer_entropyd/metadata.xml   | 11 --
 sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild  | 42 --
 5 files changed, 95 deletions(-)

diff --git a/sys-apps/timer_entropyd/Manifest b/sys-apps/timer_entropyd/Manifest
deleted file mode 100644
index 79ef5626fdc..000
--- a/sys-apps/timer_entropyd/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST timer_entropyd-0.3.tgz 8329 BLAKE2B 
96af82883eeb5a136e1f059afb067b6df46e5940fe0da5b4c161047c0e4e40a9885454e3faa926b864c2db64cb6b481d5dfed7d8ba4f28d5c8691959e41d26d2
 SHA512 
bdfedb594ee32daf7fb961a703842ca3479de158fc19bd75664b183e44bcf2ef3e74645cc6097f340834933db6f9133710df7d433ac062b2375494de5c052dcc

diff --git a/sys-apps/timer_entropyd/files/timer_entropyd-0.1-syslog.patch 
b/sys-apps/timer_entropyd/files/timer_entropyd-0.1-syslog.patch
deleted file mode 100644
index 91be4a2ffdf..000
--- a/sys-apps/timer_entropyd/files/timer_entropyd-0.1-syslog.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 51dc916e4466d0033728dd14f318203f995b3ad0 Mon Sep 17 00:00:00 2001
-From: Jeremy Olexa 
-Date: Tue, 5 Apr 2011 14:19:49 +
-Subject: [PATCH] Move syslog call to ifdef _DEBUG
-
-In order to prevent logfile spamming (once every 7 seconds), move the
-syslog call only be used if compiled with -D_DEBUG

- main.c |2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/main.c b/main.c
-index 13b95dd..781b321 100644
 a/main.c
-+++ b/main.c
-@@ -66,8 +66,8 @@ int main(int argc, char *argv[])
- 
-   kernel_rng_add_entropy(bytes, sizeof(bytes), 
cur_n_bits);
- 
--  syslog(LOG_DEBUG, "added %d bits of entropy 
data", cur_n_bits);
- #ifdef _DEBUG
-+  syslog(LOG_DEBUG, "added %d bits of entropy 
data", cur_n_bits);
-   printf("added %d bits of entropy data\n", 
cur_n_bits);
- #endif
- 
--- 
-1.7.3.4
-

diff --git a/sys-apps/timer_entropyd/files/timer_entropyd.initd.1 
b/sys-apps/timer_entropyd/files/timer_entropyd.initd.1
deleted file mode 100644
index 57178ca4b36..000
--- a/sys-apps/timer_entropyd/files/timer_entropyd.initd.1
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-command=/usr/libexec/timer_entropyd
-
-depend() {
-   need localmount
-   before net
-   use logger
-
-   provide entropy
-}

diff --git a/sys-apps/timer_entropyd/metadata.xml 
b/sys-apps/timer_entropyd/metadata.xml
deleted file mode 100644
index 748ac538a47..000
--- a/sys-apps/timer_entropyd/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-   
-   gyakov...@gentoo.org
-   Georgy Yakovlev
-   
-   
-   Enable printf debugging and logging to the 
syslog at DEBUG level
-   
-

diff --git a/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild 
b/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild
deleted file mode 100644
index 8fe1dd37e06..000
--- a/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit epatch flag-o-matic toolchain-funcs
-
-DESCRIPTION="A timer-based entropy generator"
-HOMEPAGE="http://www.vanheusden.com/te/";
-SRC_URI="http://www.vanheusden.com/te/${P}.tgz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~mips x86"
-IUSE="debug selinux"
-
-RDEPEND="selinux? ( sec-policy/selinux-entropyd )"
-
-src_prepare() {
-   sed -i -e 's:-O2::' Makefile || die
-   epatch "${FILESDIR}"/${PN}-0.1-syslog.patch
-}
-
-src_compile() {
-   use debug && append-cppflags -D_DEBUG
-
-   tc-export CC
-   emake DEBUG=
-}
-
-src_install() {
-   exeinto /usr/libexec
-   doexe ${PN}
-   dodoc Changes readme.txt
-   newinitd "${FILESDIR}/timer_entropyd.initd.1" ${PN}
-}
-
-pkg_postinst() {
-   elog "To start ${PN} at boot do rc-update add ${PN} default"
-   elog "To start ${PN} now do /etc/init.d/${PN} start"
-   elog "To check the amount of entropy, cat 
/proc/sys/kernel/random/entropy_avail"
-}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/timer_entropyd/

2019-01-11 Thread Georgy Yakovlev
commit: 0b8993840f7c19b456e23cf2d9cd49aef017475d
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Jan 11 08:24:25 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Jan 11 08:24:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b899384

sys-apps/timer_entropyd: take over, add ~arm

Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-apps/timer_entropyd/metadata.xml  | 5 -
 sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild | 4 ++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/sys-apps/timer_entropyd/metadata.xml 
b/sys-apps/timer_entropyd/metadata.xml
index 1173ca1a509..748ac538a47 100644
--- a/sys-apps/timer_entropyd/metadata.xml
+++ b/sys-apps/timer_entropyd/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-
+   
+   gyakov...@gentoo.org
+   Georgy Yakovlev
+   

Enable printf debugging and logging to the 
syslog at DEBUG level


diff --git a/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild 
b/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild
index 9a5835c0363..1509f4f394e 100644
--- a/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild
+++ b/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ SRC_URI="http://www.vanheusden.com/te/${P}.tgz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~mips x86"
+KEYWORDS="amd64 ~arm ~mips x86"
 IUSE="debug selinux"
 
 RDEPEND="selinux? ( sec-policy/selinux-entropyd )"



[gentoo-commits] repo/gentoo:master commit in: sys-apps/timer_entropyd/

2018-04-06 Thread Pacho Ramos
commit: ce86a3841d83d21c91ab7439916307dccea19e62
Author: Pacho Ramos  gentoo  org>
AuthorDate: Fri Apr  6 16:55:07 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Fri Apr  6 16:55:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce86a384

sys-apps/timer_entropyd: Drop old

Package-Manager: Portage-2.3.27, Repoman-2.3.9

 sys-apps/timer_entropyd/Manifest  |  1 -
 sys-apps/timer_entropyd/timer_entropyd-0.2.ebuild | 42 ---
 2 files changed, 43 deletions(-)

diff --git a/sys-apps/timer_entropyd/Manifest b/sys-apps/timer_entropyd/Manifest
index 78d180e8421..79ef5626fdc 100644
--- a/sys-apps/timer_entropyd/Manifest
+++ b/sys-apps/timer_entropyd/Manifest
@@ -1,2 +1 @@
-DIST timer_entropyd-0.2.tgz 8323 BLAKE2B 
82c33f9a0ba1a27c86550f13b2729dcfcdf2cedd12c4562866cca9e7d9b1bc8cfbb24c6776ff5ed6a9deb6d592ad6cb310ae3f1cc1f25a146f85a62d0a918e55
 SHA512 
789f19c2652781593b9ce91c584eab4ef9210bb47f1afb6186311416a67c84235ed1a163ffdc017b6d50ff706bf7ff6a84013b4b31fe6c09eabe95a484805898
 DIST timer_entropyd-0.3.tgz 8329 BLAKE2B 
96af82883eeb5a136e1f059afb067b6df46e5940fe0da5b4c161047c0e4e40a9885454e3faa926b864c2db64cb6b481d5dfed7d8ba4f28d5c8691959e41d26d2
 SHA512 
bdfedb594ee32daf7fb961a703842ca3479de158fc19bd75664b183e44bcf2ef3e74645cc6097f340834933db6f9133710df7d433ac062b2375494de5c052dcc

diff --git a/sys-apps/timer_entropyd/timer_entropyd-0.2.ebuild 
b/sys-apps/timer_entropyd/timer_entropyd-0.2.ebuild
deleted file mode 100644
index 2b3bcbaaca6..000
--- a/sys-apps/timer_entropyd/timer_entropyd-0.2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils flag-o-matic toolchain-funcs
-
-DESCRIPTION="A timer-based entropy generator"
-HOMEPAGE="http://www.vanheusden.com/te/";
-SRC_URI="http://www.vanheusden.com/te/${P}.tgz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~mips x86"
-IUSE="debug selinux"
-
-RDEPEND="selinux? ( sec-policy/selinux-entropyd )"
-
-src_prepare() {
-   sed -i -e 's:-O2::' Makefile || die
-   epatch "${FILESDIR}"/${PN}-0.1-syslog.patch
-}
-
-src_compile() {
-   use debug && append-cppflags -D_DEBUG
-
-   tc-export CC
-   emake DEBUG= || die
-}
-
-src_install() {
-   exeinto /usr/libexec
-   doexe ${PN}
-   dodoc Changes readme.txt
-   newinitd "${FILESDIR}/timer_entropyd.initd.1" ${PN} || die
-}
-
-pkg_postinst() {
-   elog "To start ${PN} at boot do rc-update add ${PN} default"
-   elog "To start ${PN} now do /etc/init.d/${PN} start"
-   elog "To check the amount of entropy, cat 
/proc/sys/kernel/random/entropy_avail"
-}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/timer_entropyd/

2018-04-05 Thread Thomas Deutschmann
commit: 0373ca634d7a77d7fe44c3ddbe684c61be7f41f6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Apr  5 23:13:11 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Apr  5 23:16:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0373ca63

sys-apps/timer_entropyd: x86 stable (bug #651718)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild 
b/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild
index 0c55fac4e63..9a5835c0363 100644
--- a/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild
+++ b/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.vanheusden.com/te/${P}.tgz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~mips ~x86"
+KEYWORDS="amd64 ~mips x86"
 IUSE="debug selinux"
 
 RDEPEND="selinux? ( sec-policy/selinux-entropyd )"



[gentoo-commits] repo/gentoo:master commit in: sys-apps/timer_entropyd/

2018-03-31 Thread Aaron Bauman
commit: 0cd1e5e0208d82a8b52c9fd1f00dab7ba3529b98
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Mar 31 23:29:47 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Mar 31 23:41:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cd1e5e0

sys-apps/timer_entropyd: amd64 stable

Bug: https://bugs.gentoo.org/651718
Package-Manager: Portage-2.3.27, Repoman-2.3.9

 sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild 
b/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild
index d1a0febbc6a..0c55fac4e63 100644
--- a/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild
+++ b/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ SRC_URI="http://www.vanheusden.com/te/${P}.tgz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ~x86"
+KEYWORDS="amd64 ~mips ~x86"
 IUSE="debug selinux"
 
 RDEPEND="selinux? ( sec-policy/selinux-entropyd )"



[gentoo-commits] repo/gentoo:master commit in: sys-apps/timer_entropyd/

2017-10-01 Thread Jonas Stein
commit: 21b551d95c528017c5fcd1ff22c47c584f2adc8a
Author: Jonas Stein  gentoo  org>
AuthorDate: Sun Oct  1 10:47:21 2017 +
Commit: Jonas Stein  gentoo  org>
CommitDate: Sun Oct  1 10:47:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21b551d9

sys-apps/timer_entropyd: Drop inactive proxied maintainer

jstein and gokturk had mailcontact with the proxied maintainer;
he does not maintain his packages anymore.

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 sys-apps/timer_entropyd/metadata.xml | 15 ---
 1 file changed, 4 insertions(+), 11 deletions(-)

diff --git a/sys-apps/timer_entropyd/metadata.xml 
b/sys-apps/timer_entropyd/metadata.xml
index d79a32978d7..1173ca1a509 100644
--- a/sys-apps/timer_entropyd/metadata.xml
+++ b/sys-apps/timer_entropyd/metadata.xml
@@ -1,15 +1,8 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-  
-pavel.stratil-...@fenix.cz
-Proxied co-maintainer, assign bugs to him
-  
-  
-proxy-ma...@gentoo.org
-Proxy Maintainers
-  
-  
-Enable printf debugging and logging to the syslog at 
DEBUG level
-  
+
+   
+   Enable printf debugging and logging to the 
syslog at DEBUG level
+   
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/timer_entropyd/

2017-07-03 Thread Joshua Kinard
commit: cc0a6ca146a0bec4827da69f5ddb60e12c02f181
Author: Joshua Kinard  gentoo  org>
AuthorDate: Mon Jul  3 09:29:06 2017 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Mon Jul  3 09:29:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc0a6ca1

sys-apps/timer_entropyd: Bump to 0.3 and use EAPI5, update copyright.

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-apps/timer_entropyd/Manifest| 1 +
 sys-apps/timer_entropyd/timer_entropyd-0.2.ebuild   | 2 +-
 .../{timer_entropyd-0.2.ebuild => timer_entropyd-0.3.ebuild}| 6 +++---
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/sys-apps/timer_entropyd/Manifest b/sys-apps/timer_entropyd/Manifest
index c949a3a6258..6efb9562f40 100644
--- a/sys-apps/timer_entropyd/Manifest
+++ b/sys-apps/timer_entropyd/Manifest
@@ -1 +1,2 @@
 DIST timer_entropyd-0.2.tgz 8323 SHA256 
0cf2b976b78c1b1169a4bec5a6fc71d8b118de927bc05002686376a61f73989a SHA512 
789f19c2652781593b9ce91c584eab4ef9210bb47f1afb6186311416a67c84235ed1a163ffdc017b6d50ff706bf7ff6a84013b4b31fe6c09eabe95a484805898
 WHIRLPOOL 
8fa8233d8a867f7f5290ba1fbd39a2ed80756cfe0948fcc5038c256b4f62b39bd1592a639e6c13ce11c481a9a85288dd30568fd082c36bd09f6ad5986c421d15
+DIST timer_entropyd-0.3.tgz 8329 SHA256 
3a022b82363c3ecdd005cd6c5a7441d62a46aa88059581c2f7677bd84f393560 SHA512 
bdfedb594ee32daf7fb961a703842ca3479de158fc19bd75664b183e44bcf2ef3e74645cc6097f340834933db6f9133710df7d433ac062b2375494de5c052dcc
 WHIRLPOOL 
8806784ffc7ce6c370d15980dfe00e4afd89dcfdfd2d06b5eb9f8d9d8b46e4974d429e93703fb26ad9ade4b5d53c2c25c88356b31aec08ed16340711d1025142

diff --git a/sys-apps/timer_entropyd/timer_entropyd-0.2.ebuild 
b/sys-apps/timer_entropyd/timer_entropyd-0.2.ebuild
index d4026f8b28c..2b3bcbaaca6 100644
--- a/sys-apps/timer_entropyd/timer_entropyd-0.2.ebuild
+++ b/sys-apps/timer_entropyd/timer_entropyd-0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=4

diff --git a/sys-apps/timer_entropyd/timer_entropyd-0.2.ebuild 
b/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild
similarity index 92%
copy from sys-apps/timer_entropyd/timer_entropyd-0.2.ebuild
copy to sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild
index d4026f8b28c..d1a0febbc6a 100644
--- a/sys-apps/timer_entropyd/timer_entropyd-0.2.ebuild
+++ b/sys-apps/timer_entropyd/timer_entropyd-0.3.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
+EAPI=5
 
 inherit eutils flag-o-matic toolchain-funcs
 
@@ -11,7 +11,7 @@ SRC_URI="http://www.vanheusden.com/te/${P}.tgz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~mips x86"
+KEYWORDS="~amd64 ~mips ~x86"
 IUSE="debug selinux"
 
 RDEPEND="selinux? ( sec-policy/selinux-entropyd )"



[gentoo-commits] repo/gentoo:master commit in: sys-apps/timer_entropyd/

2016-08-07 Thread Pacho Ramos
commit: bbcc242bb652eaf6f1c88c33d9495bb6de7d46dd
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Aug  7 09:14:47 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Aug  7 09:29:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbcc242b

sys-apps/timer_entropyd: Cleanup per bug #85210

Package-Manager: portage-2.3.0

 sys-apps/timer_entropyd/metadata.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/sys-apps/timer_entropyd/metadata.xml 
b/sys-apps/timer_entropyd/metadata.xml
index e28d2d4..d79a329 100644
--- a/sys-apps/timer_entropyd/metadata.xml
+++ b/sys-apps/timer_entropyd/metadata.xml
@@ -5,9 +5,6 @@
 pavel.stratil-...@fenix.cz
 Proxied co-maintainer, assign bugs to him
   
-  
-flamee...@gentoo.org
-  
   
 proxy-ma...@gentoo.org
 Proxy Maintainers