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: xfce-extra/thunar-archive-plugin/
Date: Sat, 30 Apr 2022 13:28:13
Message-Id: 1651324516.4bdf0b3d0f651eee092ad409b20d6c3285cda3e0.mgorny@gentoo
1 commit: 4bdf0b3d0f651eee092ad409b20d6c3285cda3e0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 30 13:15:16 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 30 13:15:16 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bdf0b3d
7
8 xfce-extra/thunar-archive-plugin: Bump to 0.5.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/thunar-archive-plugin/Manifest | 1 +
13 .../thunar-archive-plugin-0.5.0.ebuild | 39 ++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/xfce-extra/thunar-archive-plugin/Manifest b/xfce-extra/thunar-archive-plugin/Manifest
17 index 27b0b68ec787..e4297b2d8d4d 100644
18 --- a/xfce-extra/thunar-archive-plugin/Manifest
19 +++ b/xfce-extra/thunar-archive-plugin/Manifest
20 @@ -1 +1,2 @@
21 DIST thunar-archive-plugin-0.4.0.tar.bz2 350011 BLAKE2B aebe828396e75701b788dd22266ed154b3a8296b8f6a912fbd99d4ebda1db2ed2a5cbf957a381523194270b5f1ea8ae6af24ca61e35b3953de54b0477bffd6cf SHA512 6590d8765ac6eab14fae7758e4c47c66b52e79e2e4b01a86d25bd35492590925ca35e4bbade8a9d8f0c73386eaeda6863e2a7a39a2df2904404f7e2bfdd91a44
22 +DIST thunar-archive-plugin-0.5.0.tar.bz2 378749 BLAKE2B d420e121351fc78bd67880c89574a762dfd51949087cbde117c48cf8f879bf1c7416d960bf7d49bb704008a8dc10e1d87ecf43481f644f07bbadbc00d7348af8 SHA512 5a606f5102689e5e0fa051b25cae6f66248491aeab2c6402fd158151f9cbfab54ff4b61c36eab89fdf323b65065d955bdedd6760f32a5493179e92492ee1df37
23
24 diff --git a/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.5.0.ebuild b/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.5.0.ebuild
25 new file mode 100644
26 index 000000000000..fd5d69ef3f4c
27 --- /dev/null
28 +++ b/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.5.0.ebuild
29 @@ -0,0 +1,39 @@
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="Archive plug-in for the Thunar filemanager"
38 +HOMEPAGE="https://docs.xfce.org/xfce/thunar/archive"
39 +SRC_URI="https://archive.xfce.org/src/thunar-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +LICENSE="LGPL-2"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
44 +
45 +RDEPEND="
46 + >=xfce-base/libxfce4util-4.12:=
47 + >=xfce-base/exo-0.10:=
48 + >=xfce-base/thunar-1.7:=
49 +"
50 +DEPEND="${RDEPEND}"
51 +BDEPEND="
52 + dev-util/intltool
53 + sys-devel/gettext
54 + virtual/pkgconfig
55 +"
56 +
57 +src_install() {
58 + default
59 + find "${D}" -name '*.la' -delete || die
60 +}
61 +
62 +pkg_postinst() {
63 + xdg_icon_cache_update
64 +}
65 +
66 +pkg_postrm() {
67 + xdg_icon_cache_update
68 +}