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-notes-plugin/
Date: Sat, 18 Mar 2023 15:03:35
Message-Id: 1679151800.9616de3ac51f083f91b4f0d2fe8d30333b166939.mgorny@gentoo
1 commit: 9616de3ac51f083f91b4f0d2fe8d30333b166939
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 18 10:58:04 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 18 15:03:20 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9616de3a
7
8 xfce-extra/xfce4-notes-plugin: Bump to 1.10.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-notes-plugin/Manifest | 1 +
13 .../xfce4-notes-plugin-1.10.0.ebuild | 48 ++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-notes-plugin/Manifest b/xfce-extra/xfce4-notes-plugin/Manifest
17 index be9d707eb6c6..4376f795adbe 100644
18 --- a/xfce-extra/xfce4-notes-plugin/Manifest
19 +++ b/xfce-extra/xfce4-notes-plugin/Manifest
20 @@ -1 +1,2 @@
21 +DIST xfce4-notes-plugin-1.10.0.tar.bz2 492901 BLAKE2B 4b4724bf767e61b7c73ddeda71d4097751786d60335947d233e78fb8967ee9302d55a7cc259be4dbf2f8122d33a108769fdccdaf77f8fd4b50789196794e0b91 SHA512 4c050a95f879f0ba5e28662853ab764a14fbcef513e037bfdef1e3cae91b504d0c55eb0b533098589cf568c8e6e6e3ec2dec0841eb54c99c50105f6fff55a447
22 DIST xfce4-notes-plugin-1.9.0.tar.bz2 502606 BLAKE2B 2b1b2dd97301ab57363aeaa8a373c62a9e9c14bdc1eb7dd6355bb096728b05e5bee08ce8a5922c2a93f1c2b7fa7197f8aa3fb0c2a96d5eb71a7002c22eb8d13c SHA512 32ee410fa9d4dff4f73a844ac53024c39a884b48cee32faf14c1ed75200f912bd4e51a1fe3305deea9ec98a617b63a65e271437b09cb9b664498746a8095f4a1
23
24 diff --git a/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.10.0.ebuild b/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.10.0.ebuild
25 new file mode 100644
26 index 000000000000..2caea09923fc
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.10.0.ebuild
29 @@ -0,0 +1,48 @@
30 +# Copyright 1999-2023 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="Xfce4 panel sticky notes plugin"
38 +HOMEPAGE="
39 + https://docs.xfce.org/panel-plugins/xfce4-notes-plugin/start
40 + https://gitlab.xfce.org/panel-plugins/xfce4-notes-plugin/
41 +"
42 +SRC_URI="
43 + https://archive.xfce.org/src/panel-plugins/${PN}/$(ver_cut 1-2)/${P}.tar.bz2
44 +"
45 +
46 +LICENSE="GPL-2+"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
49 +
50 +DEPEND="
51 + >=dev-libs/glib-2.30:2
52 + >=x11-libs/gtk+-3.22:3
53 + >=xfce-base/libxfce4ui-4.14:=
54 + >=xfce-base/libxfce4util-4.14:=
55 + >=xfce-base/xfce4-panel-4.14:=
56 + >=xfce-base/xfconf-4.14:=
57 +"
58 +RDEPEND="
59 + ${DEPEND}
60 +"
61 +BDEPEND="
62 + dev-util/intltool
63 + virtual/pkgconfig
64 +"
65 +
66 +src_install() {
67 + default
68 + find "${D}" -name '*.la' -delete || die
69 +}
70 +
71 +pkg_postinst() {
72 + xdg_icon_cache_update
73 +}
74 +
75 +pkg_postrm() {
76 + xdg_icon_cache_update
77 +}