commit: f56f6bed0d7ea8458fe8756bca1f91884d9a5113 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Thu Sep 11 11:23:36 2025 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Thu Sep 11 13:09:32 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f56f6bed
app-arch/xarchiver: Bump to 0.5.4.26 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> app-arch/xarchiver/Manifest | 1 + app-arch/xarchiver/xarchiver-0.5.4.26.ebuild | 61 ++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) diff --git a/app-arch/xarchiver/Manifest b/app-arch/xarchiver/Manifest index 3ec8267d44b3..2d593e4f8613 100644 --- a/app-arch/xarchiver/Manifest +++ b/app-arch/xarchiver/Manifest @@ -1 +1,2 @@ DIST xarchiver-0.5.4.25.tar.gz 1164484 BLAKE2B ba1ee8399bf69f394a3d1755cdf51e12189868860c7c20f8fd53023ec01a21233d6f590b2be417a74504fac437438704739515d2fb94701ec969808085350f32 SHA512 127f0c7993163d0e48180b23080686d82dd8c971f1108c5f80c704df55e65bdbaa750a6468f0de65bffe6f307d7b3b6d7b1635c3740eb20f37b780e60b8bf668 +DIST xarchiver-0.5.4.26.tar.gz 1190919 BLAKE2B 7c71e9cbdfa36267311a6a888c2ed2d34240fe5ea1bda14b3625d0786c886ad13134abcbfe99a07f0b01c0886cfed4bce90b8e4809d7c720c14f213182194039 SHA512 c0e78ca2b011c3bee96d80a05d21a3c4ac316ff63df985ab2802e12a3cb699584a5aaa1552021ab1699cc1453501802c38960dfe69286bcc760c0846a69d3291 diff --git a/app-arch/xarchiver/xarchiver-0.5.4.26.ebuild b/app-arch/xarchiver/xarchiver-0.5.4.26.ebuild new file mode 100644 index 000000000000..0bc2a0c8688b --- /dev/null +++ b/app-arch/xarchiver/xarchiver-0.5.4.26.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit xdg-utils + +DESCRIPTION="A GTK+ archive manager that can be used with Thunar" +HOMEPAGE="https://github.com/ib/xarchiver/" +SRC_URI=" + https://github.com/ib/xarchiver/archive/${PV}.tar.gz -> ${P}.tar.gz +" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="doc" + +DEPEND=" + >=dev-libs/glib-2:= + x11-libs/gtk+:3= +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig + doc? ( + app-text/docbook-xml-dtd + app-text/docbook-xsl-stylesheets + dev-libs/libxml2 + dev-libs/libxslt + ) +" + +src_configure() { + local myconf=( + $(use_enable doc) + ) + econf "${myconf[@]}" +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update + + elog "You need external programs for some formats, including:" + elog "7zip - app-arch/p7zip" + elog "arj - app-arch/arj" + elog "lha - app-arch/lha" + elog "lzop - app-arch/lzop" + elog "rar - app-arch/unrar app-arch/rar" + elog "zip - app-arch/unzip app-arch/zip" +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
