commit: 60571378c10bed20f79f8070462c8e5d3b166447 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon Jun 16 04:49:40 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Jun 16 04:49:40 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60571378
app-text/rarian: add 0.8.6 Signed-off-by: Sam James <sam <AT> gentoo.org> app-text/rarian/Manifest | 1 + app-text/rarian/rarian-0.8.6.ebuild | 40 +++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/app-text/rarian/Manifest b/app-text/rarian/Manifest index fe3f1ccb63c1..fc86d2436e13 100644 --- a/app-text/rarian/Manifest +++ b/app-text/rarian/Manifest @@ -1 +1,2 @@ DIST rarian-0.8.4.tar.bz2 402769 BLAKE2B bc077a6584f7ad0967cdaf298769d1da5ea4b9545191bcf7a8d4f07178666c416b8471a79447e6e3ff52bb2bfd8c55afc7d1638211d245abd9d4efe82c30a7a2 SHA512 5daf8c70438db566f8c4fc6a9b553898e078882307951e7060873fb4c32c12a6482f560f14dab9376917996a3a2f84a36bdf2721fa94c3e63379e3ea0ed131d4 +DIST rarian-0.8.6.tar.bz2 376011 BLAKE2B 829d4ffd023751fa5cbeda24470aff335ab14277ad8c4162d68e40d730b777e4bb492a699a2b5d8e1a165f418e3925dd43b6ec373734a88ed116d752bbc5e2cb SHA512 e1bc66dbee7e22bffaaf17c9eb82ea33b6f7b48d6307166dc85ff2c58ba5fd3a5d9f9b69d5bddae9784c5c8e952379cb0958bfc23ef266ae28dc0395050c8752 diff --git a/app-text/rarian/rarian-0.8.6.ebuild b/app-text/rarian/rarian-0.8.6.ebuild new file mode 100644 index 000000000000..29c3b213d046 --- /dev/null +++ b/app-text/rarian/rarian-0.8.6.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A documentation metadata library" +HOMEPAGE="https://rarian.freedesktop.org/" +SRC_URI="https://gitlab.freedesktop.org/rarian/rarian/-/releases/${PV}/downloads/assets/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" + +IUSE="test" +RESTRICT="!test? ( test )" + +COMMON_DEPEND=" + dev-libs/libxslt + dev-libs/tinyxml2 +" +DEPEND="${COMMON_DEPEND} + test? ( >=dev-libs/check-0.9.6 ) +" +RDEPEND="${COMMON_DEPEND} + sys-apps/util-linux +" + +src_configure() { + local myconf=( + --localstatedir="${EPREFIX}"/var + $(use_with test check) + ) + econf "${myconf[@]}" +} + +src_install() { + default + keepdir /var/lib/rarian + find "${ED}" -name '*.la' -delete || die +}
