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 CE56B158020 for ; Fri, 11 Nov 2022 15:14:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FE38E08AD; Fri, 11 Nov 2022 15:14:46 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 6F3AEE08A8 for ; Fri, 11 Nov 2022 15:14:46 +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 98579340F60 for ; Fri, 11 Nov 2022 15:14:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD4955F7 for ; Fri, 11 Nov 2022 15:14:43 +0000 (UTC) From: "Matthias Maier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Maier" Message-ID: <1668179659.8b74d47a439859580d388783f6f62ff9fd0818cf.tamiko@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/libvirt-python/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/libvirt-python/libvirt-python-9999.ebuild X-VCS-Directories: dev-python/libvirt-python/ X-VCS-Committer: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: 8b74d47a439859580d388783f6f62ff9fd0818cf X-VCS-Branch: master Date: Fri, 11 Nov 2022 15:14:43 +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: be440a8e-049d-45d1-8bb6-35ed9739fdfe X-Archives-Hash: e87a825b5d34e52e72aaf47115293b6c commit: 8b74d47a439859580d388783f6f62ff9fd0818cf Author: Michal Privoznik gmail com> AuthorDate: Tue Nov 1 11:53:38 2022 +0000 Commit: Matthias Maier gentoo org> CommitDate: Fri Nov 11 15:14:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b74d47a dev-python/libvirt-python: Drop nonexistent useflag mask This dates back to the day when app-emulation/libvirt used to have 'python' use flag because it used to bundle python bindings. As it was transitioning into a separate repository/separate ebuild the new ebuild was made to conflict with app-emulation/libvirt[python]. But this is all ancient history and app-emulation/libvirt doesn't have the python use flag anymore. Therefore, drop it from RDEPEND check. Signed-off-by: Michal Privoznik gmail.com> Signed-off-by: Matthias Maier gentoo.org> dev-python/libvirt-python/libvirt-python-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/libvirt-python/libvirt-python-9999.ebuild b/dev-python/libvirt-python/libvirt-python-9999.ebuild index 59818c6c51d9..e84055ce32c2 100644 --- a/dev-python/libvirt-python/libvirt-python-9999.ebuild +++ b/dev-python/libvirt-python/libvirt-python-9999.ebuild @@ -19,7 +19,7 @@ inherit distutils-r1 verify-sig if [[ ${PV} == *9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://gitlab.com/libvirt/libvirt-python.git" - RDEPEND="app-emulation/libvirt:=[-python(-)]" + RDEPEND="app-emulation/libvirt:=" else SRC_URI="https://libvirt.org/sources/python/${MY_P}.tar.gz verify-sig? ( https://libvirt.org/sources/python/${MY_P}.tar.gz.asc )"