Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/alive: ChangeLog alive-2.0.2.ebuild
Date: Tue, 24 Jun 2014 02:30:11
Message-Id: 20140624023003.A71F22004F@flycatcher.gentoo.org
1 jer 14/06/24 02:30:03
2
3 Modified: ChangeLog alive-2.0.2.ebuild
4 Log:
5 Drop fatal ping args check (bug #514760).
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
8
9 Revision Changes Path
10 1.3 net-analyzer/alive/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/alive/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/alive/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/alive/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/alive/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 5 Oct 2013 16:29:13 -0000 1.2
23 +++ ChangeLog 24 Jun 2014 02:30:03 -0000 1.3
24 @@ -1,6 +1,10 @@
25 # ChangeLog for net-analyzer/alive
26 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/alive/ChangeLog,v 1.2 2013/10/05 16:29:13 jer Exp $
28 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/alive/ChangeLog,v 1.3 2014/06/24 02:30:03 jer Exp $
30 +
31 + 24 Jun 2014; Jeroen Roovers <jer@g.o> alive-2.0.2.ebuild,
32 + +files/alive-2.0.2-ping-test.patch:
33 + Drop fatal ping args check (bug #514760).
34
35 *alive-2.0.2 (05 Oct 2013)
36
37
38
39
40 1.2 net-analyzer/alive/alive-2.0.2.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/alive/alive-2.0.2.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/alive/alive-2.0.2.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/alive/alive-2.0.2.ebuild?r1=1.1&r2=1.2
45
46 Index: alive-2.0.2.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/alive/alive-2.0.2.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- alive-2.0.2.ebuild 5 Oct 2013 16:29:13 -0000 1.1
53 +++ alive-2.0.2.ebuild 24 Jun 2014 02:30:03 -0000 1.2
54 @@ -1,8 +1,9 @@
55 -# Copyright 1999-2013 Gentoo Foundation
56 +# Copyright 1999-2014 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/alive/alive-2.0.2.ebuild,v 1.1 2013/10/05 16:29:13 jer Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/alive/alive-2.0.2.ebuild,v 1.2 2014/06/24 02:30:03 jer Exp $
60
61 EAPI=5
62 +inherit autotools eutils
63
64 DESCRIPTION="a periodic ping program"
65 HOMEPAGE="http://www.gnu.org/software/alive/"
66 @@ -13,8 +14,17 @@
67 KEYWORDS="~amd64 ~hppa ~x86"
68 IUSE=""
69
70 -DEPEND="app-arch/xz-utils"
71 +COMMON_DEPEND="net-misc/iputils"
72 +DEPEND="
73 + app-arch/xz-utils
74 + ${COMMON_DEPEND}
75 +"
76 RDEPEND="
77 dev-scheme/guile
78 - net-misc/iputils
79 + ${COMMON_DEPEND}
80 "
81 +
82 +src_prepare() {
83 + epatch "${FILESDIR}"/${P}-ping-test.patch
84 + eautoreconf
85 +}