Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/xarchiver/
Date: Tue, 30 Aug 2022 05:45:48
Message-Id: 1661838333.b0fc4fd0abf56727805e907d1dff8cb879e4e4f0.mgorny@gentoo
1 commit: b0fc4fd0abf56727805e907d1dff8cb879e4e4f0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 30 05:08:56 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 30 05:45:33 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0fc4fd0
7
8 app-arch/xarchiver: Bump to 0.5.4.19
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-arch/xarchiver/Manifest | 1 +
13 app-arch/xarchiver/xarchiver-0.5.4.19.ebuild | 61 ++++++++++++++++++++++++++++
14 2 files changed, 62 insertions(+)
15
16 diff --git a/app-arch/xarchiver/Manifest b/app-arch/xarchiver/Manifest
17 index a739053ee944..ac31b4f123f8 100644
18 --- a/app-arch/xarchiver/Manifest
19 +++ b/app-arch/xarchiver/Manifest
20 @@ -1 +1,2 @@
21 DIST xarchiver-0.5.4.18.tar.gz 1112838 BLAKE2B baeab65c9f81eecf070185fb3718b3e8a460e94393dfcdf38ad8bfb2a771c6f98a8638a28c43aa99d05a95772ca7e1546d9be1b602e22a715d5827350976f9d8 SHA512 a33236839d325a2d706fd0a9e2257ab5289895b030450b2060da856c047e5676ac5686312f8d00d3f38d329d0cf39fb22330a7c902b3ff5943856801435f6970
22 +DIST xarchiver-0.5.4.19.tar.gz 1120885 BLAKE2B 4b8b9e188b16b799f33a1816a5f19a0f67720369282239e3a22af8588b9776ee37dbc63cb1b42a426c515a360aeb1abda84b22e783bd8e4e3578eb2f2fb66ab6 SHA512 f35846bcb1236957d4201980eb1c9e49e16472ab2316935c9f8c94a9b4c3c2da879cd2730c3413041098042251607432f6af1cbacadd97b81efb81180fa5ee6a
23
24 diff --git a/app-arch/xarchiver/xarchiver-0.5.4.19.ebuild b/app-arch/xarchiver/xarchiver-0.5.4.19.ebuild
25 new file mode 100644
26 index 000000000000..33b845196bd5
27 --- /dev/null
28 +++ b/app-arch/xarchiver/xarchiver-0.5.4.19.ebuild
29 @@ -0,0 +1,61 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit xdg-utils
36 +
37 +DESCRIPTION="A GTK+ archive manager that can be used with Thunar"
38 +HOMEPAGE="https://github.com/ib/xarchiver/"
39 +SRC_URI="
40 + https://github.com/ib/xarchiver/archive/${PV}.tar.gz -> ${P}.tar.gz
41 +"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
46 +IUSE="doc"
47 +
48 +DEPEND="
49 + >=dev-libs/glib-2:=
50 + x11-libs/gtk+:3=
51 +"
52 +RDEPEND="
53 + ${DEPEND}
54 +"
55 +BDEPEND="
56 + dev-util/intltool
57 + sys-devel/gettext
58 + virtual/pkgconfig
59 + doc? (
60 + app-text/docbook-xml-dtd
61 + app-text/docbook-xsl-stylesheets
62 + dev-libs/libxml2
63 + dev-libs/libxslt
64 + )
65 +"
66 +
67 +src_configure() {
68 + local myconf=(
69 + $(use_enable doc)
70 + )
71 + econf "${myconf[@]}"
72 +}
73 +
74 +pkg_postinst() {
75 + xdg_desktop_database_update
76 + xdg_icon_cache_update
77 +
78 + elog "You need external programs for some formats, including:"
79 + elog "7zip - app-arch/p7zip"
80 + elog "arj - app-arch/arj"
81 + elog "lha - app-arch/lha"
82 + elog "lzop - app-arch/lzop"
83 + elog "rar - app-arch/unrar app-arch/rar"
84 + elog "zip - app-arch/unzip app-arch/zip"
85 +}
86 +
87 +pkg_postrm() {
88 + xdg_desktop_database_update
89 + xdg_icon_cache_update
90 +}