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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0F376138350 for ; Sun, 19 Apr 2020 20:25:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5AA45E0AD4; Sun, 19 Apr 2020 20:25:51 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 46EBEE0AD4 for ; Sun, 19 Apr 2020 20:25:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4C72E34F003 for ; Sun, 19 Apr 2020 20:25:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C508C1E4 for ; Sun, 19 Apr 2020 20:25:47 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1587327933.28352d151457a6a27473e2f0e74a211170e83e7a.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/networkmanager-wireguard/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/networkmanager-wireguard/networkmanager-wireguard-0_pre20191128-r4.ebuild X-VCS-Directories: net-vpn/networkmanager-wireguard/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: 28352d151457a6a27473e2f0e74a211170e83e7a X-VCS-Branch: master Date: Sun, 19 Apr 2020 20:25:47 +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: cfaa6a59-9534-4d5e-99c5-62433b9035aa X-Archives-Hash: d1e18ef352e6b7329acd10738911907a commit: 28352d151457a6a27473e2f0e74a211170e83e7a Author: Mart Raudsepp gentoo org> AuthorDate: Sun Apr 19 20:25:08 2020 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Sun Apr 19 20:25:33 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28352d15 net-vpn/networkmanager-wireguard: drop legacy libnm-glib usage libnm-glib is long gone in NM upstream, so stop providing it as an option to move forward along with NetworkManager bumps. Depend on new net-libs/libnma instead of nm-applet, as that's what's needed and it's split out upstream in newer versions. Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Mart Raudsepp gentoo.org> ...etworkmanager-wireguard-0_pre20191128-r4.ebuild | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/net-vpn/networkmanager-wireguard/networkmanager-wireguard-0_pre20191128-r4.ebuild b/net-vpn/networkmanager-wireguard/networkmanager-wireguard-0_pre20191128-r4.ebuild new file mode 100644 index 00000000000..3a32ea8fbac --- /dev/null +++ b/net-vpn/networkmanager-wireguard/networkmanager-wireguard-0_pre20191128-r4.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +EGIT_COMMIT="0e1124df9e97129c5e0d9996a2c3876ae18f01c4" +MY_PN="${PN/network/network-}" + +DESCRIPTION="NetworkManager WireGuard plugin" +HOMEPAGE="https://github.com/max-moser/network-manager-wireguard" +SRC_URI="https://github.com/max-moser/${MY_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+gtk +nls" + +RDEPEND=" + >=net-misc/networkmanager-1.7.0 + net-vpn/wireguard-tools[wg-quick] + >=dev-libs/glib-2.32:2 + gtk? ( + >=x11-libs/gtk+-3.4:3 + >=net-libs/libnma-1.7.0 + >=app-crypt/libsecret-0.18 + ) +" + +DEPEND="${RDEPEND}" + +BDEPEND=" + virtual/pkgconfig + nls? ( + dev-util/intltool + sys-devel/gettext + ) +" + +S="${WORKDIR}/${MY_PN}-${EGIT_COMMIT}" + +src_prepare() { + default + + eautoreconf +} + +src_configure() { + local myeconfargs=( + --disable-lto + --disable-more-warnings + --disable-static + $(use_with gtk gnome) + --without-libnm-glib + $(use_enable nls) + --with-dist-version="Gentoo" + ) + + econf "${myeconfargs[@]}" +}