Gentoo Archives: gentoo-commits

From: Denis Dupeyron <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/thunar-archive-plugin/
Date: Thu, 30 Nov 2017 18:20:16
Message-Id: 1512065993.1f7e2e4a44ce0628bcde5cfa0345669b03d493a9.calchan@gentoo
1 commit: 1f7e2e4a44ce0628bcde5cfa0345669b03d493a9
2 Author: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 30 18:19:10 2017 +0000
4 Commit: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 30 18:19:53 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f7e2e4a
7
8 xfce-extra/thunar-archive-plugin: remove obsolete xfconf.eclass, migrate to EAPI6
9
10 Package-Manager: Portage-2.3.16, Repoman-2.3.6
11
12 xfce-extra/thunar-archive-plugin/Manifest | 2 +-
13 .../thunar-archive-plugin-0.3.1-r3.ebuild | 43 ++++++++++++++++++++++
14 2 files changed, 44 insertions(+), 1 deletion(-)
15
16 diff --git a/xfce-extra/thunar-archive-plugin/Manifest b/xfce-extra/thunar-archive-plugin/Manifest
17 index ca50c679158..329fd8af367 100644
18 --- a/xfce-extra/thunar-archive-plugin/Manifest
19 +++ b/xfce-extra/thunar-archive-plugin/Manifest
20 @@ -1 +1 @@
21 -DIST thunar-archive-plugin-0.3.1.tar.bz2 329005 SHA256 9ad559b0c11308f6897ad56604e5a06dc8f369f649eb20120b2d3018ef5da54c SHA512 51157c2680b3fcc6b541d35fc2943a350a0354d7d5bbb5fbe8a9dcbbeaf4bf4f5fe62521b8e9a73254f70bbefc440357deade8181313da96270c280eb0464e68 WHIRLPOOL 151a505968b871eae82bff1799464e4c6042e99668ec4752ecfa7537ed6968886134941bfcc7741ad56ba8ebb429c021046a968db92b1bba89bf1a1d2bb4a0d1
22 +DIST thunar-archive-plugin-0.3.1.tar.bz2 329005 BLAKE2B f1cc88acb86565c001734ae2ead50f79cd4e922922292446b3775a7ef5cce250787b202ef6633d453b40bf37f1841d6e1b9ee34350e784587612ea0d4030e6d4 SHA512 51157c2680b3fcc6b541d35fc2943a350a0354d7d5bbb5fbe8a9dcbbeaf4bf4f5fe62521b8e9a73254f70bbefc440357deade8181313da96270c280eb0464e68
23
24 diff --git a/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.3.1-r3.ebuild b/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.3.1-r3.ebuild
25 new file mode 100644
26 index 00000000000..b8388f2596f
27 --- /dev/null
28 +++ b/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.3.1-r3.ebuild
29 @@ -0,0 +1,43 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit gnome2-utils
36 +
37 +DESCRIPTION="Archive plug-in for the Thunar filemanager"
38 +HOMEPAGE="https://goodies.xfce.org/projects/thunar-plugins/thunar-archive-plugin"
39 +SRC_URI="mirror://xfce/src/thunar-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +LICENSE="LGPL-2"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
44 +IUSE=""
45 +
46 +RDEPEND=">=xfce-base/libxfce4util-4.8:=
47 + >=xfce-base/exo-0.6:=
48 + >=xfce-base/thunar-1.2:="
49 +DEPEND="${RDEPEND}
50 + dev-util/intltool
51 + sys-devel/gettext
52 + virtual/pkgconfig"
53 +
54 +PATCHES=(
55 + "${FILESDIR}"/0.3.1-add-engrampa-support.patch
56 + "${FILESDIR}"/0.3.1-fix-kde-ark.patch
57 + "${FILESDIR}"/0.3.1-add-support-symlinks.patch
58 + )
59 +DOCS=( AUTHORS ChangeLog NEWS README THANKS )
60 +
61 +src_install() {
62 + default
63 + find "${D}" -name '*.la' -delete || die
64 +}
65 +
66 +pkg_postinst() {
67 + gnome2_icon_cache_update
68 +}
69 +
70 +pkg_postrm() {
71 + gnome2_icon_cache_update
72 +}