Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-applets/
Date: Sun, 27 Mar 2022 18:58:34
Message-Id: 1648406956.11c94fd15c8cb0673fa46637d2129e85806fd655.mattst88@gentoo
1 commit: 11c94fd15c8cb0673fa46637d2129e85806fd655
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 27 18:49:16 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 27 18:49:16 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11c94fd1
7
8 gnome-base/gnome-applets: Version bump to 3.44.0
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 gnome-base/gnome-applets/Manifest | 1 +
13 .../gnome-applets/gnome-applets-3.44.0.ebuild | 53 ++++++++++++++++++++++
14 2 files changed, 54 insertions(+)
15
16 diff --git a/gnome-base/gnome-applets/Manifest b/gnome-base/gnome-applets/Manifest
17 index 7d43d617d89a..2b9da78bba66 100644
18 --- a/gnome-base/gnome-applets/Manifest
19 +++ b/gnome-base/gnome-applets/Manifest
20 @@ -1 +1,2 @@
21 DIST gnome-applets-3.42.0.tar.xz 9391580 BLAKE2B 43d3c86d4c401ef6e509a7ff653c613d7f49624354ea74635f9aa634e33c92bb54cc2461ab8e9fb3fcf7efe3f97fc9a65c9b8f7a0b8fc3e126a531492274518b SHA512 9be26e7779123dc5dc56aabe274d3ee34b3ffea830e2691051bf2a8011a1896c5e56fb9cc6d89b7f5ff14b1aeea969b81134bb7d0e4b1615343bf23daa1137a5
22 +DIST gnome-applets-3.44.0.tar.xz 9396928 BLAKE2B 03fb970e4ebe7747aed9241e7512c6fe945650ac789cac5c5bc1e49958b1636f43b59c56caaf24a01785c84617cef4c9b3fa76931ed46d6f3ea8c4b74335ca1b SHA512 8a9a75590e96d0ef6af4775d261337b41b23779b86d38080014f49666fdaee68bc9ef58eeae94e87c43bd07b0b0720b867f03f2c2d0f2d8b7daea3c66251fc7e
23
24 diff --git a/gnome-base/gnome-applets/gnome-applets-3.44.0.ebuild b/gnome-base/gnome-applets/gnome-applets-3.44.0.ebuild
25 new file mode 100644
26 index 000000000000..f8e13cd73958
27 --- /dev/null
28 +++ b/gnome-base/gnome-applets/gnome-applets-3.44.0.ebuild
29 @@ -0,0 +1,53 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +inherit gnome2
35 +
36 +DESCRIPTION="Applets for the GNOME Flashback Panel"
37 +HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-applets/"
38 +
39 +LICENSE="GPL-2+ FDL-1.1"
40 +SLOT="0"
41 +IUSE="tracker"
42 +KEYWORDS="~amd64 ~riscv"
43 +
44 +# FIXME: automagic wireless-tools
45 +# TODO: gucharmap could be optional, but no knob
46 +# TODO: libgweather could be optional, but no knob
47 +RDEPEND="
48 + >=x11-libs/gtk+-3.20.0:3[X]
49 + >=dev-libs/glib-2.44.0:2
50 + >=gnome-base/gnome-panel-3.41.1
51 + >=gnome-base/libgtop-2.11.92:=
52 + >=x11-libs/libwnck-3.14.1:3
53 + >=x11-libs/libnotify-0.7
54 + >=sys-power/upower-0.99.8:=
55 + >=x11-themes/adwaita-icon-theme-3.14.0
56 + >=dev-libs/libxml2-2.5.0:2
57 + >=dev-libs/libgweather-3.91.0:4=
58 + >=gnome-extra/gucharmap-2.33.0:2.90
59 + >=sys-auth/polkit-0.97
60 + x11-libs/libX11
61 + tracker? ( app-misc/tracker:3 )
62 + >=x11-libs/pango-1.50.0
63 +"
64 +DEPEND="${RDEPEND}
65 + x11-base/xorg-proto
66 +"
67 +BDEPEND="
68 + app-text/docbook-xml-dtd:4.1.2
69 + dev-libs/libxslt
70 + dev-util/gdbus-codegen
71 + dev-util/glib-utils
72 + dev-util/itstool
73 + >=sys-devel/gettext-0.19.6
74 + virtual/pkgconfig
75 +" # yelp-tools and autoconf-archive for eautoreconf
76 +
77 +src_configure() {
78 + gnome2_src_configure \
79 + --disable-static \
80 + --disable-cpufreq \
81 + $(use_enable tracker tracker-search-bar)
82 +}