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 6E2E513933E for ; Tue, 20 Jul 2021 20:22:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 247F2E0B09; Tue, 20 Jul 2021 20:22:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 0B3A0E0B09 for ; Tue, 20 Jul 2021 20:22:40 +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 C858C342BCC for ; Tue, 20 Jul 2021 20:22:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4BB147DD for ; Tue, 20 Jul 2021 20:22:37 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1626812546.3907b389de9b2d0c7d7fe05fa258e6ec8ff0c192.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/networkmanager-openconnect/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/networkmanager-openconnect/networkmanager-openconnect-1.2.6-r1.ebuild X-VCS-Directories: net-vpn/networkmanager-openconnect/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 3907b389de9b2d0c7d7fe05fa258e6ec8ff0c192 X-VCS-Branch: master Date: Tue, 20 Jul 2021 20:22:37 +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: a957ba4e-b2a7-450d-8ea8-f9104271d562 X-Archives-Hash: bb17893311ea060b0b08aaa19fb7d039 commit: 3907b389de9b2d0c7d7fe05fa258e6ec8ff0c192 Author: Conrad Kostecki gentoo org> AuthorDate: Tue Jul 20 20:03:44 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Tue Jul 20 20:22:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3907b389 net-vpn/networkmanager-openconnect: migrate to GLEP 81 Bug: https://bugs.gentoo.org/781479 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> .../networkmanager-openconnect-1.2.6-r1.ebuild | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/net-vpn/networkmanager-openconnect/networkmanager-openconnect-1.2.6-r1.ebuild b/net-vpn/networkmanager-openconnect/networkmanager-openconnect-1.2.6-r1.ebuild new file mode 100644 index 00000000000..b03a1ae535e --- /dev/null +++ b/net-vpn/networkmanager-openconnect/networkmanager-openconnect-1.2.6-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +GNOME_ORG_MODULE="NetworkManager-${PN##*-}" + +inherit gnome2 + +DESCRIPTION="NetworkManager OpenConnect plugin" +HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="amd64 arm arm64 ~ppc64 x86" +IUSE="gtk" + +DEPEND=" + >=net-misc/networkmanager-1.2:= + >=dev-libs/glib-2.32:2 + >=dev-libs/dbus-glib-0.74 + dev-libs/libxml2:2 + >=net-vpn/openconnect-3.02:= + gtk? ( + >=app-crypt/gcr-3.4:= + >=app-crypt/libsecret-0.18 + >=x11-libs/gtk+-3.4:3 ) +" + +RDEPEND=" + ${DEPEND} + acct-group/nm-openconnect + acct-user/nm-openconnect +" + +BDEPEND=" + sys-devel/gettext + dev-util/intltool + virtual/pkgconfig +" + +src_configure() { + gnome2_src_configure \ + --disable-more-warnings \ + --disable-static \ + --without-libnm-glib \ + $(use_with gtk gnome) \ + $(use_with gtk authdlg) +} + +pkg_postinst() { + gnome2_pkg_postinst +}