Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/haveged: haveged-1.9.1.ebuild ChangeLog
Date: Mon, 24 Feb 2014 22:46:02
Message-Id: 20140224224557.87F8D2004C@flycatcher.gentoo.org
1 blueness 14/02/24 22:45:57
2
3 Modified: ChangeLog
4 Added: haveged-1.9.1.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.31 sys-apps/haveged/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/haveged/ChangeLog?rev=1.31&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/haveged/ChangeLog?rev=1.31&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/haveged/ChangeLog?r1=1.30&r2=1.31
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/haveged/ChangeLog,v
20 retrieving revision 1.30
21 retrieving revision 1.31
22 diff -u -r1.30 -r1.31
23 --- ChangeLog 24 Feb 2014 22:22:47 -0000 1.30
24 +++ ChangeLog 24 Feb 2014 22:45:57 -0000 1.31
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/haveged
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/haveged/ChangeLog,v 1.30 2014/02/24 22:22:47 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/haveged/ChangeLog,v 1.31 2014/02/24 22:45:57 blueness Exp $
30 +
31 +*haveged-1.9.1 (24 Feb 2014)
32 +
33 + 24 Feb 2014; Anthony G. Basile <blueness@g.o> +haveged-1.9.1.ebuild:
34 + Version bump
35
36 24 Feb 2014; Anthony G. Basile <blueness@g.o> metadata.xml:
37 I will give it lots of love, thanks robbat2 :)
38
39
40
41 1.1 sys-apps/haveged/haveged-1.9.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/haveged/haveged-1.9.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/haveged/haveged-1.9.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: haveged-1.9.1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/haveged/haveged-1.9.1.ebuild,v 1.1 2014/02/24 22:45:57 blueness Exp $
51
52 EAPI=5
53
54 inherit autotools-utils systemd
55
56 DESCRIPTION="A simple entropy daemon using the HAVEGE algorithm"
57 HOMEPAGE="http://www.issihosts.com/haveged/"
58 SRC_URI="http://www.issihosts.com/haveged/${P}.tar.gz"
59
60 LICENSE="GPL-3+"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE=""
64
65 DEPEND=""
66 RDEPEND="!<sys-apps/openrc-0.11.8"
67
68 # threads are broken right now, but eventually
69 # we should add $(use_enable threads)
70 src_configure() {
71 local myeconfargs=(
72 --bindir=/usr/sbin
73 --enable-nistest
74 --disable-static
75 --disable-threads
76 )
77
78 autotools-utils_src_configure
79 }
80
81 src_install() {
82 autotools-utils_src_install
83
84 # Install gentoo ones instead
85 newinitd "${FILESDIR}"/haveged-init.d.3 haveged
86 newconfd "${FILESDIR}"/haveged-conf.d haveged
87
88 systemd_newunit "${FILESDIR}"/service.gentoo ${PN}.service
89 insinto /etc
90 doins "${FILESDIR}"/haveged.conf
91 }