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-extra/nm-applet/
Date: Tue, 18 May 2021 03:45:55
Message-Id: 1621309539.24ab0287aab2fdd442b9263adfa73240e8030db9.mattst88@gentoo
1 commit: 24ab0287aab2fdd442b9263adfa73240e8030db9
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 18 03:42:21 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue May 18 03:45:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24ab0287
7
8 gnome-extra/nm-applet: Version bump to 1.22.0
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 gnome-extra/nm-applet/Manifest | 1 +
13 gnome-extra/nm-applet/nm-applet-1.22.0.ebuild | 52 +++++++++++++++++++++++++++
14 2 files changed, 53 insertions(+)
15
16 diff --git a/gnome-extra/nm-applet/Manifest b/gnome-extra/nm-applet/Manifest
17 index b64028c20c6..9cfc769378f 100644
18 --- a/gnome-extra/nm-applet/Manifest
19 +++ b/gnome-extra/nm-applet/Manifest
20 @@ -1 +1,2 @@
21 DIST network-manager-applet-1.20.0.tar.xz 1953772 BLAKE2B 1fb480887e61d7ef3a76ac5ded7ffe6723e99b2ae53d2a53990d3c2617eac45bc99b00b10b43929e8696488abc1b0be2194e800b931732f229d7d4bd17e1951e SHA512 3b7ffd61e4f810fedee5aaf64725fcc2a8ee3c6b776f2d0b93f337c207516392b4720acea35c56c80755842c600edb971a67813c1583c112a91496d3d8db2c67
22 +DIST network-manager-applet-1.22.0.tar.xz 1901680 BLAKE2B e1597d5ee332000082e2939745af10f5f5d5e9177b388f67fdb9822636226502a4c96f4f97187f01ae8de5bd1b4d853670e94dc9058e9b31cf9cadf11fe6a64b SHA512 80c9a8df750f1253a66aea254f30278a934ed4e11fecff03cfa50a31da9efcff5c8892caef672a4d62d8c5c473770358c35344b49a9f3d7956ad76063b794cac
23
24 diff --git a/gnome-extra/nm-applet/nm-applet-1.22.0.ebuild b/gnome-extra/nm-applet/nm-applet-1.22.0.ebuild
25 new file mode 100644
26 index 00000000000..9a0c4cf3048
27 --- /dev/null
28 +++ b/gnome-extra/nm-applet/nm-applet-1.22.0.ebuild
29 @@ -0,0 +1,52 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +GNOME_ORG_MODULE="network-manager-applet"
35 +
36 +inherit gnome.org meson xdg
37 +
38 +DESCRIPTION="NetworkManager connection editor and applet"
39 +HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager"
40 +
41 +LICENSE="GPL-2+"
42 +SLOT="0"
43 +IUSE="appindicator modemmanager selinux teamd"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
45 +
46 +RDEPEND="
47 + >=dev-libs/glib-2.38:2
48 + >=app-crypt/libsecret-0.18
49 + >=net-libs/libnma-1.8.27
50 + >=x11-libs/gtk+-3.10:3
51 + >=dev-libs/libgudev-147:=
52 + >=x11-libs/libnotify-0.7.0
53 + >=net-misc/networkmanager-1.16:=[modemmanager?,teamd?]
54 + appindicator? (
55 + dev-libs/libappindicator:3
56 + >=dev-libs/libdbusmenu-16.04.0
57 + )
58 + modemmanager? ( net-misc/modemmanager )
59 + selinux? ( sys-libs/libselinux )
60 + teamd? ( >=dev-libs/jansson-2.7 )
61 +
62 + virtual/freedesktop-icon-theme
63 +"
64 +DEPEND="${RDEPEND}"
65 +BDEPEND="
66 + dev-libs/libxml2
67 + >=sys-devel/gettext-0.19.8
68 + virtual/pkgconfig
69 +"
70 +
71 +src_configure() {
72 + local emesonargs=(
73 + -Dappindicator=$(usex appindicator ubuntu no)
74 + $(meson_use modemmanager wwan)
75 + $(meson_use selinux)
76 + $(meson_use teamd team)
77 + -Dmore_asserts=0
78 + -Dld_gc=false
79 + )
80 + meson_src_configure
81 +}