Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/augeas/
Date: Sun, 14 Apr 2019 00:59:38
Message-Id: 1555203562.615570f30d1d97a41f19994dbe1d5f67fcdae9d0.prometheanfire@gentoo
1 commit: 615570f30d1d97a41f19994dbe1d5f67fcdae9d0
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 14 00:56:02 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 14 00:59:22 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=615570f3
7
8 app-admin/augeas: 1.12.0 bump
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-admin/augeas/Manifest | 1 +
14 app-admin/augeas/augeas-1.12.0.ebuild | 49 +++++++++++++++++++++++++++++++++++
15 2 files changed, 50 insertions(+)
16
17 diff --git a/app-admin/augeas/Manifest b/app-admin/augeas/Manifest
18 index 3cb9ad7a3fe..dc5285fc8e5 100644
19 --- a/app-admin/augeas/Manifest
20 +++ b/app-admin/augeas/Manifest
21 @@ -1,2 +1,3 @@
22 DIST augeas-1.10.1.tar.gz 2289207 BLAKE2B 6e3cf750c4d3faf7dc472ec7bfe3c46f5babca294d2bd5169cca419c2f93e21bdd656bbc44b30ab66c00fb793df1aa045f60c1260963901773c334b9019eff0b SHA512 382e8ef6a5bd3d12d7d2e0d2987f39c04ff7df3f07cd68aa732bf266b89d5d59a85be63921a7ff70f9219dbc6bb8547f80528242caa9417e08a008d1721cb1d2
23 DIST augeas-1.11.0.tar.gz 2393675 BLAKE2B e7c50715fee892b47843f9be4ec9e88937c0ce10544b3e212d9c32a6151bbc36550d711ebec9db2a691e91cc6a2cd93696d807b440ab57a678ca6680426a4b03 SHA512 1b67bb7fcd9b560d3fe4a5c753d5e778db73caaab6e50367afd123eec107b65b73096913ac7d5170e85f5b63ff3522b2a6932b130e207ab22560dfc6e267b8a1
24 +DIST augeas-1.12.0.tar.gz 2429279 BLAKE2B cd90203fec1a81b114d95bb50e168b852923136f34c83974d3427cbedd4eb0d335d3952057507b38ded5c7011be2b56725565ea106cb32a0ca43b7c81250b29e SHA512 4f61d4abbf338e915dfae212560d39792674bc757f05f500afa80c6170abc214ffb99cab2cf5bbd1c2338d11a6909e5fc3ff7112a2246fca69f7b39ac283da40
25
26 diff --git a/app-admin/augeas/augeas-1.12.0.ebuild b/app-admin/augeas/augeas-1.12.0.ebuild
27 new file mode 100644
28 index 00000000000..b40ea12be53
29 --- /dev/null
30 +++ b/app-admin/augeas/augeas-1.12.0.ebuild
31 @@ -0,0 +1,49 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit autotools
38 +
39 +DESCRIPTION="A library for changing configuration files"
40 +HOMEPAGE="http://augeas.net/"
41 +SRC_URI="http://download.augeas.net/${P}.tar.gz"
42 +
43 +SLOT="0"
44 +LICENSE="LGPL-2.1"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
46 +IUSE="static-libs test"
47 +
48 +RDEPEND="
49 + dev-libs/libxml2
50 + sys-libs/readline:="
51 +DEPEND="${RDEPEND}
52 + virtual/pkgconfig
53 + >=app-doc/NaturalDocs-1.40
54 + test? ( dev-lang/ruby )"
55 +
56 +PATCHES=(
57 +)
58 +
59 +src_prepare() {
60 + default
61 + eautoreconf
62 +}
63 +
64 +src_configure() {
65 + # selinux needs to implemented
66 + econf \
67 + --without-selinux \
68 + $(use_enable static-libs static)
69 +}
70 +
71 +src_compile() {
72 + addpredict /usr/share/NaturalDocs/Config/Languages.txt
73 + addpredict /usr/share/NaturalDocs/Config/Topics.txt
74 + default
75 +}
76 +
77 +src_install() {
78 + default
79 + use static-libs || find "${D}" -name '*.la' -delete || die
80 +}