Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/haveged: haveged-1.7a.ebuild ChangeLog haveged-1.6.ebuild haveged-1.7.ebuild
Date: Sun, 24 Feb 2013 06:41:15
Message-Id: 20130224064111.0E5D32171D@flycatcher.gentoo.org
1 flameeyes 13/02/24 06:41:10
2
3 Modified: ChangeLog
4 Added: haveged-1.7a.ebuild
5 Removed: haveged-1.6.ebuild haveged-1.7.ebuild
6 Log:
7 Version bump (just applies the same patch we did), use autotools-utils, use proper license value.
8
9 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 1CD13C8AD4301342)
10
11 Revision Changes Path
12 1.26 sys-apps/haveged/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/haveged/ChangeLog?rev=1.26&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/haveged/ChangeLog?rev=1.26&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/haveged/ChangeLog?r1=1.25&r2=1.26
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-apps/haveged/ChangeLog,v
21 retrieving revision 1.25
22 retrieving revision 1.26
23 diff -u -r1.25 -r1.26
24 --- ChangeLog 25 Jan 2013 16:58:06 -0000 1.25
25 +++ ChangeLog 24 Feb 2013 06:41:10 -0000 1.26
26 @@ -1,6 +1,13 @@
27 # ChangeLog for sys-apps/haveged
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/haveged/ChangeLog,v 1.25 2013/01/25 16:58:06 flameeyes Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/haveged/ChangeLog,v 1.26 2013/02/24 06:41:10 flameeyes Exp $
31 +
32 +*haveged-1.7a (24 Feb 2013)
33 +
34 + 24 Feb 2013; Diego E. Pettenò <flameeyes@g.o> +haveged-1.7a.ebuild,
35 + -files/haveged-1.7-build.patch, -haveged-1.6.ebuild, -haveged-1.7.ebuild:
36 + Version bump (just applies the same patch we did), use autotools-utils, use
37 + proper license value.
38
39 *haveged-1.7 (25 Jan 2013)
40
41
42
43
44 1.1 sys-apps/haveged/haveged-1.7a.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/haveged/haveged-1.7a.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/haveged/haveged-1.7a.ebuild?rev=1.1&content-type=text/plain
48
49 Index: haveged-1.7a.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sys-apps/haveged/haveged-1.7a.ebuild,v 1.1 2013/02/24 06:41:10 flameeyes Exp $
54
55 EAPI=5
56
57 inherit eutils autotools-utils
58
59 DESCRIPTION="A simple entropy daemon using the HAVEGE algorithm"
60 HOMEPAGE="http://www.issihosts.com/haveged/"
61 SRC_URI="http://www.issihosts.com/haveged/${P}.tar.gz"
62
63 LICENSE="GPL-3+"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE=""
67
68 DEPEND=""
69 RDEPEND="!<sys-apps/openrc-0.11.8"
70
71 src_configure() {
72 local myeconfargs=(
73 --bindir=/usr/sbin
74 --enable-nistest
75 --disable-static
76 )
77
78 autotools-utils_src_configure
79 }
80
81 src_install() {
82 autotools-utils_src_install
83
84 rm -rf "${D}"/usr/lib*/*.la
85
86 # Install gentoo ones instead
87 newinitd "${FILESDIR}"/haveged-init.d.3 haveged
88 newconfd "${FILESDIR}"/haveged-conf.d haveged
89 }