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: Sat, 29 Jan 2022 19:32:21
Message-Id: 1643484733.d7613da9875496b2be11825fd8507f81572be230.mgorny@gentoo
1 commit: d7613da9875496b2be11825fd8507f81572be230
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 29 19:30:57 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 29 19:32:13 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7613da9
7
8 xfce-extra/xfce4-cpufreq-plugin: Bump to 1.2.6
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.6.ebuild | 38 ++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-cpufreq-plugin/Manifest b/xfce-extra/xfce4-cpufreq-plugin/Manifest
17 index 3aa88a8d5f5f..b88ebae6c32c 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.5.tar.bz2 424858 BLAKE2B 2d93e9f3e591cb3f97289b3a449e4a3494a4bcefe97ad481ab46d0c1b749a85b068cc8e6ecad5ed0d591516cf996d7ab901cf21bcfbb63c28f5b28f4e7e01a3e SHA512 4a098861875f2a413e8d3778e4eef709f00efc87d9cd76ddab22462653ec21f4b8756c421e3f0726c56f151f0e637e27d2c80c4b09ab8ecb419e00bb108d3b80
22 +DIST xfce4-cpufreq-plugin-1.2.6.tar.bz2 445529 BLAKE2B e24db07de628983140da96d5218dbbde7c0d05ae9b9bee82e969b796018d5cbc40d438e18b638830179b9916d3ffc0088a44beaaef89a2efec22309491d9f7ac SHA512 11c407e9397a42120d97e1dce34e484d4ffcd10b768b28f11e797d8bbcb29fa5f635595f5165aff2954593f209b8e1de8fde377c3b76e8a0434f4fd63affcef3
23
24 diff --git a/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.6.ebuild b/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.6.ebuild
25 new file mode 100644
26 index 000000000000..2e1ad90e5a2f
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.6.ebuild
29 @@ -0,0 +1,38 @@
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="https://goodies.xfce.org/projects/panel-plugins/xfce4-cpufreq-plugin"
39 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2+"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
44 +
45 +RDEPEND=">=dev-libs/glib-2.20:=
46 + >=x11-libs/gtk+-3.20:3=
47 + >=xfce-base/libxfce4ui-4.14:=
48 + >=xfce-base/libxfce4util-4.14:=
49 + >=xfce-base/xfce4-panel-4.14:="
50 +DEPEND="${RDEPEND}"
51 +BDEPEND="
52 + dev-util/intltool
53 + sys-devel/gettext
54 + virtual/pkgconfig"
55 +
56 +src_install() {
57 + default
58 + find "${D}" -name '*.la' -delete || die
59 +}
60 +
61 +pkg_postinst() {
62 + xdg_icon_cache_update
63 +}
64 +
65 +pkg_postrm() {
66 + xdg_icon_cache_update
67 +}