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