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 3F01B15817D for ; Wed, 19 Jun 2024 15:03:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51DBCE2A91; Wed, 19 Jun 2024 15:03:26 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 32C83E2A91 for ; Wed, 19 Jun 2024 15:03:26 +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 42FAD33BF28 for ; Wed, 19 Jun 2024 15:03:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AFABC1D17 for ; Wed, 19 Jun 2024 15:03:23 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1718809393.112645a25448575f8500f12b67288a77f56557e0.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/networkmanager-qt/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/networkmanager-qt/networkmanager-qt-6.3.0-r1.ebuild X-VCS-Directories: kde-frameworks/networkmanager-qt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 112645a25448575f8500f12b67288a77f56557e0 X-VCS-Branch: master Date: Wed, 19 Jun 2024 15:03:23 +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: 11be3cbb-3398-4363-b2d6-55dddb2dff7b X-Archives-Hash: 6e79602e0e42d6b5aff66ec893a8067c commit: 112645a25448575f8500f12b67288a77f56557e0 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Jun 19 14:55:44 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jun 19 15:03:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=112645a2 kde-frameworks/networkmanager-qt: Add missing dependency Upstream commit 7f4e3a34bbe3c7db7f2d090e1bfc572a21f834a2 Closes: https://bugs.gentoo.org/934512 Signed-off-by: Andreas Sturmlechner gentoo.org> .../networkmanager-qt-6.3.0-r1.ebuild | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/kde-frameworks/networkmanager-qt/networkmanager-qt-6.3.0-r1.ebuild b/kde-frameworks/networkmanager-qt/networkmanager-qt-6.3.0-r1.ebuild new file mode 100644 index 000000000000..9f0dd2e21833 --- /dev/null +++ b/kde-frameworks/networkmanager-qt/networkmanager-qt-6.3.0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +QTMIN=6.6.2 +inherit ecm frameworks.kde.org + +DESCRIPTION="NetworkManager bindings for Qt" + +LICENSE="LGPL-2" +KEYWORDS="~amd64" +IUSE="teamd" + +DEPEND=" + dev-libs/glib:2 + >=dev-qt/qtbase-${QTMIN}:6[dbus,network] + >=dev-qt/qtdeclarative-${QTMIN}:6 + >=net-misc/networkmanager-1.4.0-r1[teamd=] +" +RDEPEND="${DEPEND} + || ( + >=net-misc/networkmanager-1.4.0-r1[elogind] + >=net-misc/networkmanager-1.4.0-r1[systemd] + ) +" +BDEPEND="virtual/pkgconfig" + +CMAKE_SKIP_TESTS=( + # bug: 625276 + managertest + settingstest + activeconnectiontest +)