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: Fri, 13 May 2022 06:15:40
Message-Id: 1652422528.27f9d1947a845fb7cfe91820f54f221b76f02e6c.mgorny@gentoo
1 commit: 27f9d1947a845fb7cfe91820f54f221b76f02e6c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 13 05:58:42 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 13 06:15:28 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27f9d194
7
8 app-arch/xarchiver: Bump to 0.5.4.18
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.18.ebuild | 62 ++++++++++++++++++++++++++++
14 2 files changed, 63 insertions(+)
15
16 diff --git a/app-arch/xarchiver/Manifest b/app-arch/xarchiver/Manifest
17 index 25bf15a6e329..7cb2ced48090 100644
18 --- a/app-arch/xarchiver/Manifest
19 +++ b/app-arch/xarchiver/Manifest
20 @@ -1 +1,2 @@
21 DIST xarchiver-0.5.4.17.tar.gz 1077111 BLAKE2B f68f22258dbfaeb37333fab3d2ea1b06e23e143f90df6cd94f7601961636d1e5a929e1353ac956ac9a7341813593fcfb35d5197666dbb0920ddf63e4365f34e1 SHA512 5b19fd0fb90f99aee0ac2576bc4efce9ef4eef9119fc118815f6d925e3877c0895475fbdf7363d8adfb6371fb7fd73299ea3a7cb3b6d9fff19c89d1d287d3a84
22 +DIST xarchiver-0.5.4.18.tar.gz 1112838 BLAKE2B baeab65c9f81eecf070185fb3718b3e8a460e94393dfcdf38ad8bfb2a771c6f98a8638a28c43aa99d05a95772ca7e1546d9be1b602e22a715d5827350976f9d8 SHA512 a33236839d325a2d706fd0a9e2257ab5289895b030450b2060da856c047e5676ac5686312f8d00d3f38d329d0cf39fb22330a7c902b3ff5943856801435f6970
23
24 diff --git a/app-arch/xarchiver/xarchiver-0.5.4.18.ebuild b/app-arch/xarchiver/xarchiver-0.5.4.18.ebuild
25 new file mode 100644
26 index 000000000000..2a6e5c75e1c3
27 --- /dev/null
28 +++ b/app-arch/xarchiver/xarchiver-0.5.4.18.ebuild
29 @@ -0,0 +1,62 @@
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="https://github.com/ib/xarchiver/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
44 +IUSE="doc"
45 +
46 +# older pigz versions have incompatible command-line processing
47 +# https://bugs.gentoo.org/661464
48 +DEPEND="
49 + >=dev-libs/glib-2:=
50 + x11-libs/gtk+:3=
51 + !!<app-arch/pigz-2.4[symlink]
52 +"
53 +RDEPEND="
54 + ${DEPEND}
55 +"
56 +BDEPEND="
57 + dev-util/intltool
58 + sys-devel/gettext
59 + virtual/pkgconfig
60 + doc? (
61 + app-text/docbook-xml-dtd
62 + app-text/docbook-xsl-stylesheets
63 + dev-libs/libxml2
64 + dev-libs/libxslt
65 + )
66 +"
67 +
68 +src_configure() {
69 + local myconf=(
70 + $(use_enable doc)
71 + )
72 + econf "${myconf[@]}"
73 +}
74 +
75 +pkg_postinst() {
76 + xdg_desktop_database_update
77 + xdg_icon_cache_update
78 +
79 + elog "You need external programs for some formats, including:"
80 + elog "7zip - app-arch/p7zip"
81 + elog "arj - app-arch/arj"
82 + elog "lha - app-arch/lha"
83 + elog "lzop - app-arch/lzop"
84 + elog "rar - app-arch/unrar app-arch/rar"
85 + elog "zip - app-arch/unzip app-arch/zip"
86 +}
87 +
88 +pkg_postrm() {
89 + xdg_desktop_database_update
90 + xdg_icon_cache_update
91 +}