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/xfce4-fsguard-plugin/
Date: Tue, 13 Aug 2019 12:11:02
Message-Id: 1565698241.599729529a644305e8aaa41954e8503e346e0a48.mgorny@gentoo
1 commit: 599729529a644305e8aaa41954e8503e346e0a48
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 13 11:19:31 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 13 12:10:41 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59972952
7
8 xfce-extra/xfce4-fsguard-plugin: Bump to 1.1.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-fsguard-plugin/Manifest | 1 +
13 .../xfce4-fsguard-plugin-1.1.1.ebuild | 36 ++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-fsguard-plugin/Manifest b/xfce-extra/xfce4-fsguard-plugin/Manifest
17 index ab6c48b6da8..f967a8e90b3 100644
18 --- a/xfce-extra/xfce4-fsguard-plugin/Manifest
19 +++ b/xfce-extra/xfce4-fsguard-plugin/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-fsguard-plugin-1.1.0.tar.bz2 360463 BLAKE2B a83bfcf9d2847a2c37731c6549a51d1d6e18a5a8d689e5c6b7bd3270988cccf25007aa6b47bd70937f61998c676e08ab071caf41b50631d031e5c11fb8921932 SHA512 c5e49a045f1987d57c6e6d120ad25785d2f9ad4e97d07af3d40ab88c268b5b8417deba40e0277ecc1725092063fa2a7f94aa163579f04a419aad5b4e47c79d7d
22 +DIST xfce4-fsguard-plugin-1.1.1.tar.bz2 367902 BLAKE2B 2fbd088cc2a53dc99e01fbbc880c6223bb3cb8f030cfbed5373d50b7a1e37a072f71beed2f2e84b7f0adcbce28cd0d6cc0c32356589195482c9dee143d04e46c SHA512 9b8a8c171baddc0261e4253c2e710c5d2e180e7ee669915f5a81e53778775880623af43b1638679b86d6a3e077826a69a948577a558e768fa41924ce5d1006fe
23
24 diff --git a/xfce-extra/xfce4-fsguard-plugin/xfce4-fsguard-plugin-1.1.1.ebuild b/xfce-extra/xfce4-fsguard-plugin/xfce4-fsguard-plugin-1.1.1.ebuild
25 new file mode 100644
26 index 00000000000..efd533fc209
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-fsguard-plugin/xfce4-fsguard-plugin-1.1.1.ebuild
29 @@ -0,0 +1,36 @@
30 +# Copyright 1999-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit xdg-utils
36 +
37 +DESCRIPTION="A filesystem guard plug-in for the Xfce panel"
38 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-fsguard-plugin"
39 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +LICENSE="BSD-2"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
44 +IUSE=""
45 +
46 +RDEPEND=">=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
47 + >=xfce-base/libxfce4util-4.8:=
48 + >=xfce-base/xfce4-panel-4.12:="
49 +DEPEND="${RDEPEND}
50 + dev-util/intltool
51 + sys-devel/gettext
52 + virtual/pkgconfig"
53 +
54 +src_install() {
55 + default
56 + find "${D}" -name '*.la' -delete || die
57 +}
58 +
59 +pkg_postinst() {
60 + xdg_icon_cache_update
61 +}
62 +
63 +pkg_postrm() {
64 + xdg_icon_cache_update
65 +}