From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1524275-garchives=archives.gentoo.org@lists.gentoo.org> 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 6B61F15806E for <garchives@archives.gentoo.org>; Thu, 1 Jun 2023 13:54:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91AA6E0801; Thu, 1 Jun 2023 13:54:35 +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 74074E0801 for <gentoo-commits@lists.gentoo.org>; Thu, 1 Jun 2023 13:54:35 +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 5D250340D68 for <gentoo-commits@lists.gentoo.org>; Thu, 1 Jun 2023 13:54:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BDF58990 for <gentoo-commits@lists.gentoo.org>; Thu, 1 Jun 2023 13:54:32 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" <mgorny@gentoo.org> Message-ID: <1685627009.1fa08a55f34a787faf00f370b32bd2db0feab318.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pychm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pychm/pychm-0.8.6-r1.ebuild X-VCS-Directories: dev-python/pychm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1fa08a55f34a787faf00f370b32bd2db0feab318 X-VCS-Branch: master Date: Thu, 1 Jun 2023 13:54:32 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 026abfa6-acde-462f-bdbd-4b3334453579 X-Archives-Hash: d4130b34fa21ba935da02c82801b2b66 commit: 1fa08a55f34a787faf00f370b32bd2db0feab318 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Thu Jun 1 13:43:29 2023 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Thu Jun 1 13:43:29 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fa08a55 dev-python/pychm: Enable py3.12 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/pychm/pychm-0.8.6-r1.ebuild | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/dev-python/pychm/pychm-0.8.6-r1.ebuild b/dev-python/pychm/pychm-0.8.6-r1.ebuild index e78d4371ba76..5cd27a7443bd 100644 --- a/dev-python/pychm/pychm-0.8.6-r1.ebuild +++ b/dev-python/pychm/pychm-0.8.6-r1.ebuild @@ -3,20 +3,32 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + inherit distutils-r1 DESCRIPTION="Python bindings for the chmlib library" -HOMEPAGE="https://github.com/dottedmag/pychm" -SRC_URI="https://github.com/dottedmag/pychm/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" +HOMEPAGE=" + https://github.com/dottedmag/pychm/ + https://pypi.org/project/pychm/ +" +SRC_URI=" + https://github.com/dottedmag/pychm/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" LICENSE="GPL-2+" SLOT="0" KEYWORDS="amd64 ~arm ~ppc x86" -RDEPEND="dev-libs/chmlib" -DEPEND="${RDEPEND}" +DEPEND=" + dev-libs/chmlib +" +RDEPEND=" + ${DEPEND} +" distutils_enable_tests pytest