Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/jitterentropy-rngd/
Date: Tue, 23 Nov 2021 14:49:59
Message-Id: 1637678985.fd66ac151da3267f4a825ee488a16abf0fd5ba16.tamiko@gentoo
1 commit: fd66ac151da3267f4a825ee488a16abf0fd5ba16
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 23 14:05:19 2021 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 23 14:49:45 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd66ac15
7
8 app-crypt/jitterentropy-rngd: version bump to 1.2.6
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>
12
13 app-crypt/jitterentropy-rngd/Manifest | 1 +
14 .../jitterentropy-rngd-1.2.6.ebuild | 31 ++++++++++++++++++++++
15 2 files changed, 32 insertions(+)
16
17 diff --git a/app-crypt/jitterentropy-rngd/Manifest b/app-crypt/jitterentropy-rngd/Manifest
18 index 9016faef2323..c933aceadc60 100644
19 --- a/app-crypt/jitterentropy-rngd/Manifest
20 +++ b/app-crypt/jitterentropy-rngd/Manifest
21 @@ -1 +1,2 @@
22 DIST jitterentropy-rngd-1.2.5.tar.gz 45262 BLAKE2B 0fdbd513f0dd2fa216c079d55790ea2848fac26ca17846cfce06d0d338e8e88a13f2e9a7a7d55c938f0366f7cb010d22fc35d63921e4bb1408a5bda73ac9e96c SHA512 23079ff64e1145efa22960dfa772f77dd27f45f1cd950fe7b3a45d56cb75920902a7136da92a7202c686f33db0895115624ac3d809627378056ca13250e5b07b
23 +DIST jitterentropy-rngd-1.2.6.tar.gz 45213 BLAKE2B f193aef0d2a39792c0fac9b5a949f493377d98a282b921d9f4d01ddac5a4f423002e9d61b8e920d35e9f6a608ae2f1341f7255084ec9d501e64ebd1a1d72a9cf SHA512 fc59f84a24b2a2078c6bb4524b9feddfb2033c97390b20a9654294211208ef50399968ad8a19f7b82079eb987841e703fdb5aee98b60f1159244bd28ee43db75
24
25 diff --git a/app-crypt/jitterentropy-rngd/jitterentropy-rngd-1.2.6.ebuild b/app-crypt/jitterentropy-rngd/jitterentropy-rngd-1.2.6.ebuild
26 new file mode 100644
27 index 000000000000..653e5d0a9589
28 --- /dev/null
29 +++ b/app-crypt/jitterentropy-rngd/jitterentropy-rngd-1.2.6.ebuild
30 @@ -0,0 +1,31 @@
31 +# Copyright 2020-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit flag-o-matic linux-info systemd
37 +
38 +DESCRIPTION="Jitter RNG daemon"
39 +HOMEPAGE="https://www.chronox.de/jent.html"
40 +SRC_URI="https://github.com/smuellerDD/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~mips ~x86"
45 +IUSE=""
46 +
47 +PATCHES=(
48 + "${FILESDIR}"/${PN}-1.1.0-do-not-strip-and-compress.patch
49 +)
50 +
51 +src_configure() {
52 + filter-flags '*'
53 + append-cflags '-O0'
54 + default
55 +}
56 +
57 +src_install() {
58 + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" \
59 + UNITDIR="$(systemd_get_systemunitdir)" install
60 + newinitd "${FILESDIR}"/jitterentropy-rngd-initd jitterentropy-rngd
61 +}