From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 51481158030 for ; Tue, 28 Feb 2023 12:33:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81FC1E0636; Tue, 28 Feb 2023 12:33:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5C7ADE0636 for ; Tue, 28 Feb 2023 12:33:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37B94340BDD for ; Tue, 28 Feb 2023 12:33:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98DFA7F9 for ; Tue, 28 Feb 2023 12:33:06 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1677587551.49d8c8bcdcbf1ebbf78ed9eacfe7ebb4d04360c8.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/nm-applet/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-extra/nm-applet/nm-applet-1.30.0-r2.ebuild X-VCS-Directories: gnome-extra/nm-applet/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 49d8c8bcdcbf1ebbf78ed9eacfe7ebb4d04360c8 X-VCS-Branch: master Date: Tue, 28 Feb 2023 12:33:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5bc5bb69-9e22-4e6d-beaf-8b23ce95dcb2 X-Archives-Hash: 97025dfe305476120b295aa6bcd17246 commit: 49d8c8bcdcbf1ebbf78ed9eacfe7ebb4d04360c8 Author: Pacho Ramos gentoo org> AuthorDate: Tue Feb 28 12:32:31 2023 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Tue Feb 28 12:32:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49d8c8bc gnome-extra/nm-applet: Use ayatana appindicator implementation Signed-off-by: Pacho Ramos gentoo.org> gnome-extra/nm-applet/nm-applet-1.30.0-r2.ebuild | 61 ++++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/gnome-extra/nm-applet/nm-applet-1.30.0-r2.ebuild b/gnome-extra/nm-applet/nm-applet-1.30.0-r2.ebuild new file mode 100644 index 000000000000..f3f80b5aa233 --- /dev/null +++ b/gnome-extra/nm-applet/nm-applet-1.30.0-r2.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +GNOME_ORG_MODULE="network-manager-applet" + +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="NetworkManager connection editor and applet" +HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager" + +LICENSE="GPL-2+" +SLOT="0" +IUSE="appindicator modemmanager selinux teamd" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + >=dev-libs/glib-2.40:2 + >=app-crypt/libsecret-0.18 + >=net-libs/libnma-1.10.4-r2 + >=x11-libs/gtk+-3.10:3 + >=dev-libs/libgudev-147:= + >=net-misc/networkmanager-1.16:=[modemmanager?,teamd?] + appindicator? ( + dev-libs/libayatana-appindicator + >=dev-libs/libdbusmenu-16.04.0 + ) + modemmanager? ( net-misc/modemmanager ) + selinux? ( sys-libs/libselinux ) + teamd? ( >=dev-libs/jansson-2.7:= ) + + virtual/freedesktop-icon-theme +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-libs/libxml2 + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + -Dappindicator=$(usex appindicator ayatana no) + $(meson_use modemmanager wwan) + $(meson_use selinux) + $(meson_use teamd team) + -Dmore_asserts=0 + -Dld_gc=false + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +}