Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-applets/
Date: Sun, 01 Mar 2020 16:18:56
Message-Id: 1583079456.19dfcc8f6061f8f93ccd637e63789bdc70b189a3.leio@gentoo
1 commit: 19dfcc8f6061f8f93ccd637e63789bdc70b189a3
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 1 09:16:29 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 1 16:17:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19dfcc8f
7
8 gnome-base/gnome-applets: bump to 3.34.0
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 gnome-base/gnome-applets/Manifest | 1 +
14 .../gnome-applets/gnome-applets-3.34.0.ebuild | 57 ++++++++++++++++++++++
15 2 files changed, 58 insertions(+)
16
17 diff --git a/gnome-base/gnome-applets/Manifest b/gnome-base/gnome-applets/Manifest
18 index 67187875f3c..1422c3276c1 100644
19 --- a/gnome-base/gnome-applets/Manifest
20 +++ b/gnome-base/gnome-applets/Manifest
21 @@ -1 +1,2 @@
22 DIST gnome-applets-3.32.0.tar.xz 8626692 BLAKE2B a93ac7ae9ced828c710e7761ee0483018cf10b265f48ed64ce1c117a349583d0e980759e9529ef2a47f2c8873672c2c7a323fdcc7a7af543af851156ef59e1d2 SHA512 11c8ab3b2561ef13b268a5711adebe754626cd0bfe6865cfaebf59602e6da917023172a36d253522b4bc4f250c3db34c621ba3fabfe8c628c744905581783e01
23 +DIST gnome-applets-3.34.0.tar.xz 8626548 BLAKE2B 0591269015570da4e7ab9a7a4568a032faa6209378736de57dc54cb395b545bd029a52f7ba6de39aee8f23c255ae3c24fa6defc33e971d270e6fc0e301add12f SHA512 5d16ca9d1f6c65fa59246a860f0d5723e77bf800c9362a254a8435750e52c4beb0e65aa8994e5578cfa1db7130dc92eaf4cb477ab401da402d31ea7f5aac1b51
24
25 diff --git a/gnome-base/gnome-applets/gnome-applets-3.34.0.ebuild b/gnome-base/gnome-applets/gnome-applets-3.34.0.ebuild
26 new file mode 100644
27 index 00000000000..6bac6f49e35
28 --- /dev/null
29 +++ b/gnome-base/gnome-applets/gnome-applets-3.34.0.ebuild
30 @@ -0,0 +1,57 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +inherit gnome2
36 +
37 +DESCRIPTION="Applets for the GNOME Flashback Panel"
38 +HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-applets/"
39 +
40 +LICENSE="GPL-2+ FDL-1.1"
41 +SLOT="0"
42 +IUSE="ipv6 tracker upower"
43 +KEYWORDS="~amd64"
44 +
45 +# FIXME: automagic wireless-tools
46 +# TODO: gucharmap could be optional, but no knob
47 +# TODO: libgweather could be optional, but no knob
48 +RDEPEND="
49 + >=x11-libs/gtk+-3.20.0:3[X]
50 + >=dev-libs/glib-2.44.0:2
51 + >=gnome-base/gnome-panel-3.24.1
52 + >=gnome-base/libgtop-2.11.92:=
53 + >=x11-libs/libwnck-3.14.1:3
54 + >=x11-libs/libnotify-0.7
55 + upower? ( >=sys-power/upower-0.9.4:= )
56 + >=sys-apps/dbus-1.1.2
57 + >=dev-libs/dbus-glib-0.74
58 + >=x11-themes/adwaita-icon-theme-3.14.0
59 + >=dev-libs/libxml2-2.5.0:2
60 + >=dev-libs/libgweather-3.28.0:2=
61 + >=gnome-extra/gucharmap-2.33.0:2.90
62 + >=sys-auth/polkit-0.97
63 + x11-libs/libX11
64 + tracker? ( app-misc/tracker:0/2.0 )
65 +"
66 +# app-text/docbook-sgml-utils for jw binary
67 +DEPEND="${RDEPEND}
68 + app-text/docbook-sgml-utils
69 + app-text/docbook-xml-dtd:4.1.2
70 + dev-libs/libxslt
71 + dev-util/glib-utils
72 + >=dev-util/intltool-0.35.0
73 + dev-util/itstool
74 + sys-devel/gettext
75 + x11-base/xorg-proto
76 + virtual/pkgconfig
77 +" # yelp-tools and autoconf-archive for eautoreconf
78 +
79 +src_configure() {
80 + gnome2_src_configure \
81 + --disable-static \
82 + $(use_with upower) \
83 + --disable-battstat \
84 + --disable-cpufreq \
85 + $(use_enable tracker tracker-search-bar) \
86 + $(use_enable ipv6)
87 +}