Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/haveged/
Date: Sat, 31 Mar 2018 14:56:57
Message-Id: 1522508208.a23ece344ea04b7c3edae6ff0f8e32bd15f6ccf2.blueness@gentoo
1 commit: a23ece344ea04b7c3edae6ff0f8e32bd15f6ccf2
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 31 14:56:32 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 31 14:56:48 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a23ece34
7
8 sys-apps/haveged: remove older 1.9.2 ebuild which was EAPI=5
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 sys-apps/haveged/haveged-1.9.2.ebuild | 44 -----------------------------------
13 1 file changed, 44 deletions(-)
14
15 diff --git a/sys-apps/haveged/haveged-1.9.2.ebuild b/sys-apps/haveged/haveged-1.9.2.ebuild
16 deleted file mode 100644
17 index 9ea83a7c5cc..00000000000
18 --- a/sys-apps/haveged/haveged-1.9.2.ebuild
19 +++ /dev/null
20 @@ -1,44 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -inherit autotools-utils systemd
27 -
28 -DESCRIPTION="A simple entropy daemon using the HAVEGE algorithm"
29 -HOMEPAGE="http://www.issihosts.com/haveged/"
30 -SRC_URI="http://www.issihosts.com/haveged/${P}.tar.gz"
31 -
32 -LICENSE="GPL-3+"
33 -SLOT="0"
34 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
35 -IUSE="selinux"
36 -
37 -DEPEND=""
38 -RDEPEND="!<sys-apps/openrc-0.11.8
39 - selinux? ( sec-policy/selinux-entropyd )"
40 -
41 -# threads are broken right now, but eventually
42 -# we should add $(use_enable threads)
43 -src_configure() {
44 - local myeconfargs=(
45 - --bindir=/usr/sbin
46 - --enable-nistest
47 - --disable-static
48 - --disable-threads
49 - )
50 -
51 - autotools-utils_src_configure
52 -}
53 -
54 -src_install() {
55 - autotools-utils_src_install
56 -
57 - # Install gentoo ones instead
58 - newinitd "${FILESDIR}"/haveged-init.d.3 haveged
59 - newconfd "${FILESDIR}"/haveged-conf.d haveged
60 -
61 - systemd_newunit "${FILESDIR}"/service.gentoo ${PN}.service
62 - insinto /etc
63 - doins "${FILESDIR}"/haveged.conf
64 -}