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-base/thunar-volman/
Date: Tue, 01 Nov 2022 12:17:26
Message-Id: 1667305024.fde9912dc9e844e14c018d821e6a18989ceb440b.mgorny@gentoo
1 commit: fde9912dc9e844e14c018d821e6a18989ceb440b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 1 12:16:19 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 1 12:17:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fde9912d
7
8 xfce-base/thunar-volman: Bump to 4.17.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-base/thunar-volman/Manifest | 1 +
13 .../thunar-volman/thunar-volman-4.17.0.ebuild | 55 ++++++++++++++++++++++
14 2 files changed, 56 insertions(+)
15
16 diff --git a/xfce-base/thunar-volman/Manifest b/xfce-base/thunar-volman/Manifest
17 index df5889df1fdc..bb9e338a04e8 100644
18 --- a/xfce-base/thunar-volman/Manifest
19 +++ b/xfce-base/thunar-volman/Manifest
20 @@ -1 +1,2 @@
21 DIST thunar-volman-4.16.0.tar.bz2 501194 BLAKE2B 3d2fce7bb9a52a950ab84fa9986387af01d7d55864bd8fc1a3051ab406c99648b4ba21d018e806baa07ec1ac7e2bc798eb402b1c0e115e52b58ccdbda0ca4c5f SHA512 33b7561e55491b793aa634dfa0b108788286e6b7a2f60a781b8ba10f73de74630520736ae99c4db66ae2da562a82bb1a6bdacd8307d6d452f26e647da6471af8
22 +DIST thunar-volman-4.17.0.tar.bz2 509829 BLAKE2B 1a287893b53d1ecc29346363861184d203b618d5668e2d508fd3aafc464514914699f3fc41195f55f6cca0f8888cfae66488add66f26d3de15a489fdddef25be SHA512 a5ef86efb9a3f0b5bf38b17e27be7ed8c60debb8dfa769f5f06df5b1bbce988b7ac1170c01a3215a4983c1a6352274c1bb6ecee1be2761b5471fa849e4c8a88f
23
24 diff --git a/xfce-base/thunar-volman/thunar-volman-4.17.0.ebuild b/xfce-base/thunar-volman/thunar-volman-4.17.0.ebuild
25 new file mode 100644
26 index 000000000000..d85d390c9a04
27 --- /dev/null
28 +++ b/xfce-base/thunar-volman/thunar-volman-4.17.0.ebuild
29 @@ -0,0 +1,55 @@
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="Daemon that enforces volume-related policies"
38 +HOMEPAGE="
39 + https://docs.xfce.org/xfce/thunar/thunar-volman
40 + https://gitlab.xfce.org/xfce/thunar-volman/
41 +"
42 +SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
43 +
44 +# CC for tvm-burn-cd.svg
45 +LICENSE="GPL-2+ CC-BY-SA-3.0"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
48 +IUSE="libnotify"
49 +
50 +DEPEND="
51 + >=dev-libs/glib-2.50
52 + dev-libs/libgudev:=
53 + >=x11-libs/gtk+-3.20:3
54 + >=xfce-base/exo-0.10:=
55 + >=xfce-base/libxfce4ui-4.12:=
56 + >=xfce-base/libxfce4util-4.12:=
57 + >=xfce-base/xfconf-4.12:=
58 + libnotify? ( >=x11-libs/libnotify-0.7 )
59 +"
60 +RDEPEND="
61 + ${DEPEND}
62 + virtual/udev
63 + >=xfce-base/thunar-1.6[udisks]
64 +"
65 +BDEPEND="
66 + dev-util/intltool
67 + sys-devel/gettext
68 + virtual/pkgconfig
69 +"
70 +
71 +src_configure() {
72 + local myconf=(
73 + $(use_enable libnotify notifications)
74 + )
75 + econf "${myconf[@]}"
76 +}
77 +
78 +pkg_postinst() {
79 + xdg_icon_cache_update
80 +}
81 +
82 +pkg_postrm() {
83 + xdg_icon_cache_update
84 +}