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-cpufreq-plugin/
Date: Thu, 03 Nov 2022 14:51:03
Message-Id: 1667487002.46a3202351c63436ccefb1753ca3fe1dc0c18425.mgorny@gentoo
1 commit: 46a3202351c63436ccefb1753ca3fe1dc0c18425
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 3 13:56:14 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 3 14:50:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46a32023
7
8 xfce-extra/xfce4-cpufreq-plugin: Bump to 1.2.8
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-cpufreq-plugin/Manifest | 1 +
13 .../xfce4-cpufreq-plugin-1.2.8.ebuild | 46 ++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-cpufreq-plugin/Manifest b/xfce-extra/xfce4-cpufreq-plugin/Manifest
17 index 88a449842536..e7226464c8ef 100644
18 --- a/xfce-extra/xfce4-cpufreq-plugin/Manifest
19 +++ b/xfce-extra/xfce4-cpufreq-plugin/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-cpufreq-plugin-1.2.7.tar.bz2 446055 BLAKE2B bedcf4ece6f1696a13144b0dd9d28a9dfdda255ed72f3b7aa7d572fd33b718a01850aaac90887b79ca57e4a7a9e4a6b234ac880e3a180a459e54c8377da3a9b9 SHA512 6bb7f5790d3ba9756afcb47cde40420453afe191fa111e390f2ad9780f3ab51ac2c6a69586303e9a5d1fb7d1af3eda3dad93f10df072f9ae59e47fc2216db434
22 +DIST xfce4-cpufreq-plugin-1.2.8.tar.bz2 431599 BLAKE2B f08d27b2461e3ac387dc139231a8febb6239fe8e5132ef89a6d4a8f9009fb7a3dd011ead97f27872fbb4857fc563e65fc2dd6e0f652d8d7299d3c9966d6f8b57 SHA512 482912920703b61ccba59b1a95a4153d06a7c897a59d7c2e5f84f6ea1cac17be2bade72d9187fc62279112f41cd2dd3f3157df31fae165eb2a104b74fec310da
23
24 diff --git a/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.8.ebuild b/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.8.ebuild
25 new file mode 100644
26 index 000000000000..9c4b3d67d7a6
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.8.ebuild
29 @@ -0,0 +1,46 @@
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="A panel plugin for showing information about cpufreq settings"
38 +HOMEPAGE="
39 + https://docs.xfce.org/panel-plugins/xfce4-cpufreq-plugin/start
40 + https://gitlab.xfce.org/panel-plugins/xfce4-cpufreq-plugin/
41 +"
42 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
43 +
44 +LICENSE="GPL-2+"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
47 +
48 +DEPEND="
49 + >=dev-libs/glib-2.20
50 + >=x11-libs/gtk+-3.20:3
51 + >=xfce-base/libxfce4ui-4.16:=
52 + >=xfce-base/libxfce4util-4.17.2:=
53 + >=xfce-base/xfce4-panel-4.16:=
54 +"
55 +RDEPEND="
56 + ${DEPEND}
57 +"
58 +BDEPEND="
59 + dev-util/intltool
60 + sys-devel/gettext
61 + virtual/pkgconfig
62 +"
63 +
64 +src_install() {
65 + default
66 + find "${D}" -name '*.la' -delete || die
67 +}
68 +
69 +pkg_postinst() {
70 + xdg_icon_cache_update
71 +}
72 +
73 +pkg_postrm() {
74 + xdg_icon_cache_update
75 +}