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 35DE1158020 for ; Wed, 12 Oct 2022 14:52:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42330E0974; Wed, 12 Oct 2022 14:52:43 +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 24B35E0974 for ; Wed, 12 Oct 2022 14:52:43 +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 4A0F6341081 for ; Wed, 12 Oct 2022 14:52:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6197761D for ; Wed, 12 Oct 2022 14:52:39 +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: <1665586354.0384c5c6e42f0b31e05d611f122640a179e0bd51.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/isort/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/isort/isort-5.10.1-r1.ebuild dev-python/isort/isort-5.10.1-r2.ebuild X-VCS-Directories: dev-python/isort/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0384c5c6e42f0b31e05d611f122640a179e0bd51 X-VCS-Branch: master Date: Wed, 12 Oct 2022 14:52:39 +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: 4d4ee83f-68ab-4665-b34b-953f5dc1db2c X-Archives-Hash: 3c495f7d86970624fbfdba6dee77dcec commit: 0384c5c6e42f0b31e05d611f122640a179e0bd51 Author: Michał Górny gentoo org> AuthorDate: Wed Oct 12 14:43:22 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Oct 12 14:52:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0384c5c6 dev-python/isort: Correct deps to use tomli Signed-off-by: Michał Górny gentoo.org> .../{isort-5.10.1-r1.ebuild => isort-5.10.1-r2.ebuild} | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/dev-python/isort/isort-5.10.1-r1.ebuild b/dev-python/isort/isort-5.10.1-r2.ebuild similarity index 90% rename from dev-python/isort/isort-5.10.1-r1.ebuild rename to dev-python/isort/isort-5.10.1-r2.ebuild index 3ce357892d29..7f3956652c3b 100644 --- a/dev-python/isort/isort-5.10.1-r1.ebuild +++ b/dev-python/isort/isort-5.10.1-r2.ebuild @@ -9,17 +9,22 @@ PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 DESCRIPTION="A python utility/library to sort imports" -HOMEPAGE="https://pypi.org/project/isort/" +HOMEPAGE=" + https://github.com/PyCQA/isort/ + https://pypi.org/project/isort/ +" SRC_URI=" https://github.com/PyCQA/isort/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz" + -> ${P}.gh.tar.gz +" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" RDEPEND=" - dev-python/toml[${PYTHON_USEDEP}]" + dev-python/tomli[${PYTHON_USEDEP}] +" BDEPEND=" test? ( dev-python/black[${PYTHON_USEDEP}] @@ -35,7 +40,7 @@ BDEPEND=" distutils_enable_tests pytest src_prepare() { - # unbundle toml + # unbundle tomli sed -i -e 's:from ._vendored ::' isort/settings.py || die rm -r isort/_vendored || die # remove upper bounds from example plugin deps