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: Sun, 27 Jun 2021 17:51:29
Message-Id: 1624816203.864438cda5dbceece4d3da0e100a914b9dc89615.tamiko@gentoo
1 commit: 864438cda5dbceece4d3da0e100a914b9dc89615
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 27 17:42:22 2021 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 27 17:50:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=864438cd
7
8 app-crypt/jitterentropy-rngd: version bump to 1.2.2
9
10 * filter all compile flags
11
12 Package-Manager: Portage-3.0.20, Repoman-3.0.3
13 Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>
14
15 app-crypt/jitterentropy-rngd/Manifest | 1 +
16 .../jitterentropy-rngd-1.2.2.ebuild | 31 ++++++++++++++++++++++
17 2 files changed, 32 insertions(+)
18
19 diff --git a/app-crypt/jitterentropy-rngd/Manifest b/app-crypt/jitterentropy-rngd/Manifest
20 index 25bae508a6c..b3da54ccaac 100644
21 --- a/app-crypt/jitterentropy-rngd/Manifest
22 +++ b/app-crypt/jitterentropy-rngd/Manifest
23 @@ -1 +1,2 @@
24 DIST jitterentropy-rngd-1.1.0.tar.gz 25891 BLAKE2B f711b173c68b74cbc0dbac1ae1b7a2beb5352b38e411f96172aa36ac7f720f05469f5fac2fa97b3514ec11fbe2ccfe0351ee7df8f51a8b36a566635ef93e4d08 SHA512 32835475b604e502caaab9b0d1cd9fe2920c126a27841669f6cf9c717094bfd4c11feab0f9f706ee4cf4caeedf26ced7039075499a3faaf41830c72968544646
25 +DIST jitterentropy-rngd-1.2.2.tar.gz 35773 BLAKE2B 5b1987108beb5db7a456f1216173598c893b1c845dfaa7594854a82257e88adda01e2bb4160b70f2605aff519b7d1ba79bcea94dda34c2fc75e412e0a031b943 SHA512 c317cfb77910b6983da7bf0733c26f28260da746b917cde59a9cdb023b95cf727cf729dd7de27c8cc308b1958ca054114d01ad7dfb9bd211c241a95b7bed83c6
26
27 diff --git a/app-crypt/jitterentropy-rngd/jitterentropy-rngd-1.2.2.ebuild b/app-crypt/jitterentropy-rngd/jitterentropy-rngd-1.2.2.ebuild
28 new file mode 100644
29 index 00000000000..653e5d0a958
30 --- /dev/null
31 +++ b/app-crypt/jitterentropy-rngd/jitterentropy-rngd-1.2.2.ebuild
32 @@ -0,0 +1,31 @@
33 +# Copyright 2020-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit flag-o-matic linux-info systemd
39 +
40 +DESCRIPTION="Jitter RNG daemon"
41 +HOMEPAGE="https://www.chronox.de/jent.html"
42 +SRC_URI="https://github.com/smuellerDD/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~mips ~x86"
47 +IUSE=""
48 +
49 +PATCHES=(
50 + "${FILESDIR}"/${PN}-1.1.0-do-not-strip-and-compress.patch
51 +)
52 +
53 +src_configure() {
54 + filter-flags '*'
55 + append-cflags '-O0'
56 + default
57 +}
58 +
59 +src_install() {
60 + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" \
61 + UNITDIR="$(systemd_get_systemunitdir)" install
62 + newinitd "${FILESDIR}"/jitterentropy-rngd-initd jitterentropy-rngd
63 +}