diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2022-12-07 13:11:06 -0600 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2022-12-07 13:17:23 -0600 |
commit | ca9af5e158490ebace327dff757588579bc4b330 (patch) | |
tree | 6c8e5e01bd9b5b763a520c6435873b229768d1f7 /app-admin | |
parent | app-admin/ansible-core: add 2.14.1 (diff) | |
download | gentoo-ca9af5e158490ebace327dff757588579bc4b330.tar.gz gentoo-ca9af5e158490ebace327dff757588579bc4b330.tar.bz2 gentoo-ca9af5e158490ebace327dff757588579bc4b330.zip |
app-admin/augeas: add 1.14.0
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/augeas/Manifest | 1 | ||||
-rw-r--r-- | app-admin/augeas/augeas-1.14.0.ebuild | 54 |
2 files changed, 55 insertions, 0 deletions
diff --git a/app-admin/augeas/Manifest b/app-admin/augeas/Manifest index 3d3ac875f1b8..d1a809fe62f0 100644 --- a/app-admin/augeas/Manifest +++ b/app-admin/augeas/Manifest @@ -1,2 +1,3 @@ DIST augeas-1.12.0.tar.gz 2429279 BLAKE2B cd90203fec1a81b114d95bb50e168b852923136f34c83974d3427cbedd4eb0d335d3952057507b38ded5c7011be2b56725565ea106cb32a0ca43b7c81250b29e SHA512 4f61d4abbf338e915dfae212560d39792674bc757f05f500afa80c6170abc214ffb99cab2cf5bbd1c2338d11a6909e5fc3ff7112a2246fca69f7b39ac283da40 DIST augeas-1.13.0.tar.gz 2562588 BLAKE2B 0a8e62c999a425b89bfa2b1b2cdf7c7894ca39b59d577ca2f7ce9bf33e51f2fffe2510518a8666d59fcf7f8479cae3b2a41efe4478830f89fa20d1fbeb6c9716 SHA512 a6a9ee76f3e48780df1928f2fdfa5cc826695fe6233ff90d069d05806cb020aed3c6b2ce6b9047925a203973eefcd7c254fc3ddd1db7473821c8ade4fda58d5f +DIST augeas-1.14.0.tar.gz 905420 BLAKE2B 8aac3da6bb3714e28d311936cc54f05491fe7e8305a323f741c1cb3eca1d7f86fb566abf39a488d94266f3e7477ca951490802317f6d2f457a0805fcfab80234 SHA512 1f28bcde9681eda4f28daf0584c7e4702ddb8f45980575cdeabe0893d91a0587f858889eb0353b7fa5a3e2961388710ef72811f38c557f7f0130b01e23c8901c diff --git a/app-admin/augeas/augeas-1.14.0.ebuild b/app-admin/augeas/augeas-1.14.0.ebuild new file mode 100644 index 000000000000..1379e3eb1d89 --- /dev/null +++ b/app-admin/augeas/augeas-1.14.0.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="A library for changing configuration files" +HOMEPAGE="http://augeas.net/" +SRC_URI="https://github.com/hercules-team/augeas/releases/download/release-${PV}/${P}.tar.gz" +SRC_URI="https://github.com/hercules-team/augeas/archive/refs/tags/release-${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/libxml2 + sys-libs/readline:=" +DEPEND="${RDEPEND}" +BDEPEND=" + >=app-doc/NaturalDocs-1.40 + virtual/pkgconfig + test? ( dev-lang/ruby ) +" + +PATCHES=( + "${FILESDIR}"/${P}-selinux.patch +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + # selinux needs to be implemented + econf --without-selinux +} + +src_compile() { + addpredict /usr/share/NaturalDocs/Config/Languages.txt + addpredict /usr/share/NaturalDocs/Config/Topics.txt + + default +} + +src_install() { + default + + find "${ED}" -name '*.la' -delete || die +} |