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: Mon, 24 Sep 2018 16:29:43
Message-Id: 1537806572.b5c21b6865cbff4131df9f676bef7af7bd911ce7.mgorny@gentoo
1 commit: b5c21b6865cbff4131df9f676bef7af7bd911ce7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 24 16:18:06 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 24 16:29:32 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5c21b68
7
8 xfce-extra/xfce4-cpufreq-plugin: Bump to 1.2.1 (bugfix)
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.1.ebuild | 37 ++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-cpufreq-plugin/Manifest b/xfce-extra/xfce4-cpufreq-plugin/Manifest
17 index f3856cbab03..0c10286d250 100644
18 --- a/xfce-extra/xfce4-cpufreq-plugin/Manifest
19 +++ b/xfce-extra/xfce4-cpufreq-plugin/Manifest
20 @@ -1,3 +1,4 @@
21 DIST xfce4-cpufreq-plugin-1.1.3.tar.bz2 369419 BLAKE2B 6c7f38773b0c7a1b6a814b4e3576d9ecd7a5a9f1e3a401a431b2a637eca7b4a1d99aa5fe5efc07435a739594edd8cd5ff6ae7726e4b3563a4b0e37925beb9387 SHA512 fe67abc120c0715b653258abbafab19386289ce0a373e5053e544484219c3b05aafe1e84a23721f6603043db5aac24dc1230f2e7d4974ec483d5120aca11ca25
22 DIST xfce4-cpufreq-plugin-1.1.90.tar.bz2 366569 BLAKE2B 784d19e0ae13d8c2fb9767a2322d79bbe3e5ea0a6dfc2e2061c76501e04ba51ea7d74e7d1aceace48f6f8c4d797adf41e0f56af0315feffc59ccf0a7d5fef9ce SHA512 23a70603181c69c25fd55d523f29526b88252203f087132f271cf47376d5d04c5b81615d2aba4c2641c886497323d88301ca0a285b9c0894b0051e913cc9a70e
23 DIST xfce4-cpufreq-plugin-1.2.0.tar.bz2 388599 BLAKE2B 938aa17df367ca4da7cb07df732a413d5cd3da2867772808baf3c1377c80e8b7153f5e659911d48a03d9e292e33af8764b9434e016d7b7f0933898971440ae58 SHA512 594124808fffaed514719a50e05e75612f5c1b7a802df5bb7caf65814c2c7412b9575ce916c8cd0da1360987d198c61ab078efd4a462e756248012999e597072
24 +DIST xfce4-cpufreq-plugin-1.2.1.tar.bz2 394576 BLAKE2B ad9646c079b3728680fe82256568d9a57eccb7be959831684c800fb35d00d90069e30c8c5f6bcd12e2872da527ad4ed3d3348586f0a097c7ac67bd1e307d5dee SHA512 60d0f1f36bd2c49701acaf61fc51c434cb591812662f55a8bfc21f6820d34c5b091af0edf3951c958e179019067532afec989940dae23478e792889c8f4d7b0d
25
26 diff --git a/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.1.ebuild b/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.1.ebuild
27 new file mode 100644
28 index 00000000000..bf501f18b49
29 --- /dev/null
30 +++ b/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.1.ebuild
31 @@ -0,0 +1,37 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +inherit gnome2-utils
38 +
39 +DESCRIPTION="A panel plugin for showing information about cpufreq settings"
40 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-cpufreq-plugin"
41 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
42 +
43 +LICENSE="GPL-2+"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
46 +IUSE=""
47 +
48 +RDEPEND=">=dev-libs/glib-2.20:=
49 + >=x11-libs/gtk+-3.20:3=
50 + >=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
51 + >=xfce-base/xfce4-panel-4.12:="
52 +DEPEND="${RDEPEND}
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 + gnome2_icon_cache_update
64 +}
65 +
66 +pkg_postrm() {
67 + gnome2_icon_cache_update
68 +}