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: Wed, 02 Feb 2022 07:13:28
Message-Id: 1643785995.d058643ebb33ca1fcfed7491fbb406dcd46fa511.mgorny@gentoo
1 commit: d058643ebb33ca1fcfed7491fbb406dcd46fa511
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 2 06:52:26 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 2 07:13:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d058643e
7
8 xfce-extra/xfce4-cpufreq-plugin: Bump to 1.2.7
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.7.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 b88ebae6c32c..25d7fdeea00a 100644
18 --- a/xfce-extra/xfce4-cpufreq-plugin/Manifest
19 +++ b/xfce-extra/xfce4-cpufreq-plugin/Manifest
20 @@ -1,2 +1,3 @@
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 +DIST xfce4-cpufreq-plugin-1.2.7.tar.bz2 446055 BLAKE2B bedcf4ece6f1696a13144b0dd9d28a9dfdda255ed72f3b7aa7d572fd33b718a01850aaac90887b79ca57e4a7a9e4a6b234ac880e3a180a459e54c8377da3a9b9 SHA512 6bb7f5790d3ba9756afcb47cde40420453afe191fa111e390f2ad9780f3ab51ac2c6a69586303e9a5d1fb7d1af3eda3dad93f10df072f9ae59e47fc2216db434
24
25 diff --git a/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.7.ebuild b/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.7.ebuild
26 new file mode 100644
27 index 000000000000..2e1ad90e5a2f
28 --- /dev/null
29 +++ b/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.7.ebuild
30 @@ -0,0 +1,38 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit xdg-utils
37 +
38 +DESCRIPTION="A panel plugin for showing information about cpufreq settings"
39 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-cpufreq-plugin"
40 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
41 +
42 +LICENSE="GPL-2+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
45 +
46 +RDEPEND=">=dev-libs/glib-2.20:=
47 + >=x11-libs/gtk+-3.20:3=
48 + >=xfce-base/libxfce4ui-4.14:=
49 + >=xfce-base/libxfce4util-4.14:=
50 + >=xfce-base/xfce4-panel-4.14:="
51 +DEPEND="${RDEPEND}"
52 +BDEPEND="
53 + dev-util/intltool
54 + sys-devel/gettext
55 + virtual/pkgconfig"
56 +
57 +src_install() {
58 + default
59 + find "${D}" -name '*.la' -delete || die
60 +}
61 +
62 +pkg_postinst() {
63 + xdg_icon_cache_update
64 +}
65 +
66 +pkg_postrm() {
67 + xdg_icon_cache_update
68 +}