Gentoo Archives: gentoo-commits

From: Adam Feldman <np-hardass@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mate-base/mate-applets/
Date: Fri, 25 Sep 2020 20:32:58
Message-Id: 1601065943.1cce20e13f514bb31f4bbe8a353f0c45832e2de8.np-hardass@gentoo
1 commit: 1cce20e13f514bb31f4bbe8a353f0c45832e2de8
2 Author: Adam Feldman <NP-Hardass <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 6 21:04:50 2020 +0000
4 Commit: Adam Feldman <np-hardass <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 25 20:32:23 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cce20e1
7
8 mate-base/mate-applets: Bump to 1.24.1
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Adam Feldman <NP-Hardass <AT> gentoo.org>
12
13 mate-base/mate-applets/Manifest | 1 +
14 mate-base/mate-applets/mate-applets-1.24.1.ebuild | 97 +++++++++++++++++++++++
15 2 files changed, 98 insertions(+)
16
17 diff --git a/mate-base/mate-applets/Manifest b/mate-base/mate-applets/Manifest
18 index eafd8766889..146cf78b934 100644
19 --- a/mate-base/mate-applets/Manifest
20 +++ b/mate-base/mate-applets/Manifest
21 @@ -1 +1,2 @@
22 DIST mate-applets-1.24.0.tar.xz 8142812 BLAKE2B cbb76d6d64bb6e9b9f93197dbe79e2751877b0604c5a84ff4b6b00608f2930925bdbc2824dc96848c84496fa5f16ab38458775727b22cb07f4db9ca854f93c42 SHA512 345a80b123c705997d44ac5a4bea5249045d75181c3802cf49b2eb08decc14a12f75f2e06e6ebfae267b937ff10edf7638cd64332e2e2e731695e6260df5222e
23 +DIST mate-applets-1.24.1.tar.xz 8222540 BLAKE2B f018f131cedda486a28c3a125c07efaf5c3111f95c17b0c3fbdd0b1f084ddf851d46ea4ef511a1e57f6d9f7f29a28e48ab010abc4cc6d87c1315b79bfbf01849 SHA512 d29e39a140310fef84cb0fe631568e0177ca5faaf2bf566211a23b32613fd6aabf06dd8ecd81a16e09553c659a7feda9ba372bb62a70504a235be58e07726ed2
24
25 diff --git a/mate-base/mate-applets/mate-applets-1.24.1.ebuild b/mate-base/mate-applets/mate-applets-1.24.1.ebuild
26 new file mode 100644
27 index 00000000000..63d6ba9facb
28 --- /dev/null
29 +++ b/mate-base/mate-applets/mate-applets-1.24.1.ebuild
30 @@ -0,0 +1,97 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit mate
37 +
38 +if [[ ${PV} != 9999 ]]; then
39 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
40 +fi
41 +
42 +DESCRIPTION="Applets for the MATE Desktop and Panel"
43 +LICENSE="CC-BY-SA-3.0 FDL-1.1+ GPL-2+ GPL-3+ LGPL-2+"
44 +SLOT="0"
45 +
46 +IUSE="X +cpupower ipv6 policykit +upower"
47 +
48 +REQUIRED_USE="policykit? ( cpupower )"
49 +
50 +COMMON_DEPEND="
51 + dev-libs/atk
52 + >=dev-libs/dbus-glib-0.74
53 + >=dev-libs/glib-2.50:2
54 + >=dev-libs/libmateweather-1.17.0
55 + >=dev-libs/libxml2-2.5:2
56 + >=gnome-base/libgtop-2.12.0:2=
57 + >=gnome-extra/gucharmap-3.0:2.90
58 + >=mate-base/mate-panel-1.17.0
59 + >=net-wireless/wireless-tools-28_pre9:0
60 + >=sys-apps/dbus-1.10.0
61 + x11-libs/gdk-pixbuf:2
62 + >=x11-libs/gtk+-3.22:3
63 + x11-libs/gtksourceview:3.0
64 + >=x11-libs/libnotify-0.7
65 + x11-libs/libX11
66 + >=x11-libs/libwnck-3.0:3
67 + x11-libs/pango
68 + cpupower? (
69 + sys-power/cpupower
70 + policykit? ( >=sys-auth/polkit-0.97:0 )
71 + )
72 + upower? ( >=sys-power/upower-0.9.23 )
73 + !!net-analyzer/mate-netspeed
74 +"
75 +
76 +RDEPEND="${COMMON_DEPEND}
77 + mate-base/caja
78 + mate-base/mate-desktop
79 + >=mate-base/mate-settings-daemon-1.6
80 + virtual/libintl
81 +"
82 +
83 +DEPEND="${COMMON_DEPEND}
84 + app-text/docbook-xml-dtd:4.3
85 + app-text/rarian
86 + >=app-text/scrollkeeper-dtd-1:1.0
87 + app-text/yelp-tools
88 + dev-libs/libxslt
89 + >=sys-devel/gettext-0.19.8
90 + virtual/pkgconfig
91 +"
92 +
93 +src_configure() {
94 +
95 + # configure.ac logic is a little hinky
96 + # and ignores --enable flags for cpufreq
97 + use cpupower || myconf="--disable-cpufreq"
98 +
99 + mate_src_configure \
100 + --libexecdir=/usr/libexec/mate-applets \
101 + $(use_with X x) \
102 + $(use_with upower) \
103 + $(use_enable ipv6) \
104 + $(use_enable policykit polkit) \
105 + "${myconf[@]}"
106 +}
107 +
108 +src_test() {
109 + unset DBUS_SESSION_BUS_ADDRESS
110 + emake check
111 +}
112 +
113 +src_install() {
114 + mate_src_install
115 +
116 + local APPLETS="accessx-status battstat charpick command cpufreq drivemount
117 + geyes mateweather multiload netspeed stickynotes
118 + timerapplet trashapplet"
119 +
120 + for applet in ${APPLETS}; do
121 + docinto ${applet}
122 +
123 + for d in AUTHORS ChangeLog NEWS README README.themes TODO; do
124 + [ -s ${applet}/${d} ] && dodoc ${applet}/${d}
125 + done
126 + done
127 +}