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 CFCC8158087 for ; Mon, 8 Nov 2021 07:45:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A468C2BC092; Mon, 8 Nov 2021 07:45:47 +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 E52002BC03A for ; Mon, 8 Nov 2021 07:45: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C1080342A95 for ; Mon, 8 Nov 2021 07:45:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8A5E175 for ; Mon, 8 Nov 2021 07:45:41 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1636357533.80abc2b8c6e0d0da7c97589f4e890727d1b3e930.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libmbim/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libmbim/libmbim-1.24.8.ebuild net-libs/libmbim/libmbim-1.26.0.ebuild X-VCS-Directories: net-libs/libmbim/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 80abc2b8c6e0d0da7c97589f4e890727d1b3e930 X-VCS-Branch: master Date: Mon, 8 Nov 2021 07:45:41 +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: 77faf672-397c-4f9f-af32-331f1baa388f X-Archives-Hash: 9bd2c26be45746570effec583a54be96 commit: 80abc2b8c6e0d0da7c97589f4e890727d1b3e930 Author: Sam James gentoo org> AuthorDate: Mon Nov 8 07:43:55 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Nov 8 07:45:33 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80abc2b8 net-libs/libmbim: needs Python at build time Noticed when a user in #gentoo was upgrading a rather old system. Upgrade failed because Portage didn't realise that this package needed Python at all. Signed-off-by: Sam James gentoo.org> net-libs/libmbim/libmbim-1.24.8.ebuild | 4 ++++ net-libs/libmbim/libmbim-1.26.0.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/net-libs/libmbim/libmbim-1.24.8.ebuild b/net-libs/libmbim/libmbim-1.24.8.ebuild index bbdba255bb7..141c3f44d2f 100644 --- a/net-libs/libmbim/libmbim-1.24.8.ebuild +++ b/net-libs/libmbim/libmbim-1.24.8.ebuild @@ -3,6 +3,9 @@ EAPI=7 +PYTHON_COMPAT=( python3_{8..10} ) +inherit python-any-r1 + DESCRIPTION="Mobile Broadband Interface Model (MBIM) modem protocol helper library" HOMEPAGE="https://www.freedesktop.org/wiki/Software/libmbim/ https://gitlab.freedesktop.org/mobile-broadband/libmbim" SRC_URI="https://www.freedesktop.org/software/libmbim/${P}.tar.xz" @@ -16,6 +19,7 @@ RDEPEND=">=dev-libs/glib-2.48:2 udev? ( dev-libs/libgudev:= )" DEPEND="${RDEPEND}" BDEPEND=" + ${PYTHON_DEPS} dev-util/glib-utils dev-util/gtk-doc-am virtual/pkgconfig diff --git a/net-libs/libmbim/libmbim-1.26.0.ebuild b/net-libs/libmbim/libmbim-1.26.0.ebuild index cff9c3efb31..1ff3ec9dae7 100644 --- a/net-libs/libmbim/libmbim-1.26.0.ebuild +++ b/net-libs/libmbim/libmbim-1.26.0.ebuild @@ -3,6 +3,9 @@ EAPI=8 +PYTHON_COMPAT=( python3_{8..10} ) +inherit python-any-r1 + DESCRIPTION="Mobile Broadband Interface Model (MBIM) modem protocol helper library" HOMEPAGE="https://www.freedesktop.org/wiki/Software/libmbim/ https://gitlab.freedesktop.org/mobile-broadband/libmbim" SRC_URI="https://www.freedesktop.org/software/libmbim/${P}.tar.xz" @@ -14,6 +17,7 @@ KEYWORDS="~alpha amd64 arm arm64 ~mips ppc ppc64 ~riscv x86" RDEPEND=">=dev-libs/glib-2.56:2" DEPEND="${RDEPEND}" BDEPEND=" + ${PYTHON_DEPS} dev-util/glib-utils virtual/pkgconfig "