Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/augeas: metadata.xml ChangeLog augeas-0.4.0.ebuild
Date: Tue, 24 Feb 2009 15:49:24
Message-Id: E1LbzX8-0001ke-42@stork.gentoo.org
1 matsuu 09/02/24 15:49:22
2
3 Added: metadata.xml ChangeLog augeas-0.4.0.ebuild
4 Log:
5 Initial import, bug #229361.
6 (Portage version: 2.1.6.7/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 app-admin/augeas/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>no-herd</herd>
20 <maintainer>
21 <email>matsuu@g.o</email>
22 </maintainer>
23 <longdescription lang="en">
24 A library for programmatically editing configuration files. Augeas parses
25 configuration files into a tree structure, which it exposes through its
26 public API. Changes made through the API are written back to the initially
27 read files.
28
29 The transformation works very hard to preserve comments and formatting
30 details. It is controlled by ``lens'' definitions that describe the file
31 format and the transformation into a tree.
32 </longdescription>
33 </pkgmetadata>
34
35
36
37
38 1.1 app-admin/augeas/ChangeLog
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/ChangeLog?rev=1.1&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/ChangeLog?rev=1.1&content-type=text/plain
42
43 Index: ChangeLog
44 ===================================================================
45 # ChangeLog for app-admin/augeas
46 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
47 # $Header: /var/cvsroot/gentoo-x86/app-admin/augeas/ChangeLog,v 1.1 2009/02/24 15:49:22 matsuu Exp $
48
49 *augeas-0.4.0 (24 Feb 2009)
50
51 24 Feb 2009; MATSUU Takuto <matsuu@g.o> +metadata.xml,
52 +augeas-0.4.0.ebuild:
53 Initial import, bug #229361.
54
55
56
57
58 1.1 app-admin/augeas/augeas-0.4.0.ebuild
59
60 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/augeas-0.4.0.ebuild?rev=1.1&view=markup
61 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/augeas-0.4.0.ebuild?rev=1.1&content-type=text/plain
62
63 Index: augeas-0.4.0.ebuild
64 ===================================================================
65 # Copyright 1999-2009 Gentoo Foundation
66 # Distributed under the terms of the GNU General Public License v2
67 # $Header: /var/cvsroot/gentoo-x86/app-admin/augeas/augeas-0.4.0.ebuild,v 1.1 2009/02/24 15:49:22 matsuu Exp $
68
69 DESCRIPTION="A library for changing configuration files"
70 HOMEPAGE="http://augeas.net/"
71 SRC_URI="http://augeas.net/download/${P}.tar.gz"
72
73 LICENSE="LGPL-2.1"
74 SLOT="0"
75 KEYWORDS="~amd64 ~x86"
76 IUSE="test"
77
78 DEPEND="sys-libs/readline"
79 RDEPEND="${DEPEND}
80 test? ( dev-lang/ruby )"
81
82 src_install(){
83 emake DESTDIR="${D}" install || die "install failed"
84
85 dodoc AUTHORS ChangeLog README NEWS
86 }