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 08AC1158091 for ; Sat, 14 May 2022 08:26:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DBB08E0839; Sat, 14 May 2022 08:26:00 +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 BC04CE0839 for ; Sat, 14 May 2022 08:26:00 +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 CDD07341547 for ; Sat, 14 May 2022 08:25:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 135F4448 for ; Sat, 14 May 2022 08:25:58 +0000 (UTC) From: "Michał Górny" 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" Message-ID: <1652516748.0dc0552594d2674c2af6ee59a0fd336817f7e61d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-magic/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-magic/python-magic-0.4.25.ebuild X-VCS-Directories: dev-python/python-magic/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0dc0552594d2674c2af6ee59a0fd336817f7e61d X-VCS-Branch: master Date: Sat, 14 May 2022 08:25:58 +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: d0faa760-6f77-4fa9-9b43-519c716ec6c4 X-Archives-Hash: 9aa7e3f2dacad3b2c279b9999cbbff4d commit: 0dc0552594d2674c2af6ee59a0fd336817f7e61d Author: Michał Górny gentoo org> AuthorDate: Sat May 14 07:31:58 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 14 08:25:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dc05525 dev-python/python-magic: Enable py3.11 Signed-off-by: Michał Górny gentoo.org> dev-python/python-magic/python-magic-0.4.25.ebuild | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/dev-python/python-magic/python-magic-0.4.25.ebuild b/dev-python/python-magic/python-magic-0.4.25.ebuild index 2f64601425d4..5f8d4351a95d 100644 --- a/dev-python/python-magic/python-magic-0.4.25.ebuild +++ b/dev-python/python-magic/python-magic-0.4.25.ebuild @@ -4,14 +4,19 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} pypy3 ) +PYTHON_COMPAT=( python3_{8..11} pypy3 ) + inherit distutils-r1 DESCRIPTION="Access the libmagic file type identification library" -HOMEPAGE="https://github.com/ahupp/python-magic" +HOMEPAGE=" + https://github.com/ahupp/python-magic/ + https://pypi.org/project/python-magic/ +" SRC_URI=" https://github.com/ahupp/python-magic/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz" + -> ${P}.gh.tar.gz +" LICENSE="BSD-2 MIT" SLOT="0" @@ -19,7 +24,9 @@ KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux" IUSE="test" RESTRICT="!test? ( test )" -RDEPEND="sys-apps/file[-python]" +RDEPEND=" + sys-apps/file[-python] +" BDEPEND=" test? ( sys-apps/file ) "