Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libidmef: ChangeLog libidmef-1.0.3.ebuild
Date: Thu, 01 Nov 2012 16:37:42
Message-Id: 20121101163724.BB84D21600@flycatcher.gentoo.org
1 pinkbyte 12/11/01 16:37:24
2
3 Modified: ChangeLog
4 Added: libidmef-1.0.3.ebuild
5 Log:
6 Version bump: EAPI 4, add ~amd64 keyword wrt bug #440766, add USE flags 'debug' and 'static-libs'
7
8 (Portage version: 2.2.0_alpha141/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.8 dev-libs/libidmef/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libidmef/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libidmef/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libidmef/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libidmef/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 23 Dec 2009 16:53:51 -0000 1.7
24 +++ ChangeLog 1 Nov 2012 16:37:24 -0000 1.8
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/libidmef
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libidmef/ChangeLog,v 1.7 2009/12/23 16:53:51 vostorga Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libidmef/ChangeLog,v 1.8 2012/11/01 16:37:24 pinkbyte Exp $
31 +
32 +*libidmef-1.0.3 (01 Nov 2012)
33 +
34 + 01 Nov 2012; Sergey Popov <pinkbyte@g.o> +libidmef-1.0.3.ebuild:
35 + Version bump: EAPI 4, add ~amd64 keyword wrt bug #440766, add USE flags
36 + 'debug' and 'static-libs'
37
38 23 Dec 2009; VĂ­ctor Ostorga <vostorga@g.o> -libidmef-0.7.2.ebuild,
39 libidmef-1.0.2_beta1.ebuild:
40
41
42
43 1.1 dev-libs/libidmef/libidmef-1.0.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libidmef/libidmef-1.0.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libidmef/libidmef-1.0.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libidmef-1.0.3.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libidmef/libidmef-1.0.3.ebuild,v 1.1 2012/11/01 16:37:24 pinkbyte Exp $
53
54 EAPI=4
55
56 inherit eutils
57
58 DESCRIPTION="Implementation of the IDMEF XML draft"
59 HOMEPAGE="http://sourceforge.net/projects/libidmef/"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="debug static-libs"
66
67 DEPEND=">=dev-libs/libxml2-2.5.10"
68 RDEPEND="${DEPEND}"
69
70 S="${WORKDIR}/${PN}"
71
72 DOCS=( AUTHORS ChangeLog FAQ NEWS README TODO )
73
74 src_configure() {
75 econf \
76 $(use_enable debug) \
77 $(use_enable static-libs static)
78 }