From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [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 F0ECD15802E for ; Wed, 26 Jun 2024 09:05:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EDFBE2BC0E7; Wed, 26 Jun 2024 09:05:37 +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 675DC2BC0E7 for ; Wed, 26 Jun 2024 09:05:37 +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 6F9EE340C3C for ; Wed, 26 Jun 2024 09:05:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A83611D54 for ; Wed, 26 Jun 2024 09:05:34 +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: <1719392628.f7a7c27b26fe71f4d607f78ec540cf91f9ce926f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pkgdev/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/pkgdev/pkgdev-0.2.10-r1.ebuild dev-util/pkgdev/pkgdev-9999.ebuild X-VCS-Directories: dev-util/pkgdev/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f7a7c27b26fe71f4d607f78ec540cf91f9ce926f X-VCS-Branch: master Date: Wed, 26 Jun 2024 09:05:34 +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: 7188fdc0-03f0-41ac-a348-d4d6cc4f6ee3 X-Archives-Hash: 935e9a9aa25af4b3b1f4e9756b5f45f8 commit: f7a7c27b26fe71f4d607f78ec540cf91f9ce926f Author: Eli Schwartz gmail com> AuthorDate: Wed Jun 26 03:09:45 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 26 09:03:48 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7a7c27b dev-util/pkgdev: add dependency on tomli for old impls It is missing it in wheel metadata, and also in the ebuild metadata. It is only necessary for versions of python that don't have it in the stdlib, and all those are old versions, but that's no reason not to depend correctly on it where needed. The "doc" USE flag also depends on tomli and does so unconditionally. It appears that it doesn't allow one to select specific USEDEPs, which is interesting but ok. Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> dev-util/pkgdev/{pkgdev-9999.ebuild => pkgdev-0.2.10-r1.ebuild} | 5 ++++- dev-util/pkgdev/pkgdev-9999.ebuild | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-util/pkgdev/pkgdev-9999.ebuild b/dev-util/pkgdev/pkgdev-0.2.10-r1.ebuild similarity index 94% copy from dev-util/pkgdev/pkgdev-9999.ebuild copy to dev-util/pkgdev/pkgdev-0.2.10-r1.ebuild index 207bcf10ce9c..1fc8f43e2948 100644 --- a/dev-util/pkgdev/pkgdev-9999.ebuild +++ b/dev-util/pkgdev/pkgdev-0.2.10-r1.ebuild @@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then inherit git-r3 else inherit pypi - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos" + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" fi DESCRIPTION="Collection of tools for Gentoo development" @@ -40,6 +40,9 @@ fi RDEPEND+=" dev-vcs/git + $(python_gen_cond_dep ' + dev-python/tomli[${PYTHON_USEDEP}] + ' 3.10) " BDEPEND=" >=dev-python/flit-core-3.8[${PYTHON_USEDEP}] diff --git a/dev-util/pkgdev/pkgdev-9999.ebuild b/dev-util/pkgdev/pkgdev-9999.ebuild index 207bcf10ce9c..a1858addd1ea 100644 --- a/dev-util/pkgdev/pkgdev-9999.ebuild +++ b/dev-util/pkgdev/pkgdev-9999.ebuild @@ -40,6 +40,9 @@ fi RDEPEND+=" dev-vcs/git + $(python_gen_cond_dep ' + dev-python/tomli[${PYTHON_USEDEP}] + ' 3.10) " BDEPEND=" >=dev-python/flit-core-3.8[${PYTHON_USEDEP}]