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 4A70715808E for ; Mon, 25 Apr 2022 16:05:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8D4E4E07EA; Mon, 25 Apr 2022 16:05:19 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1CA03E07EA for ; Mon, 25 Apr 2022 16:05:17 +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 4260C341310 for ; Mon, 25 Apr 2022 16:05:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 987AC3B2 for ; Mon, 25 Apr 2022 16:05:14 +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: <1650902710.f113ade7e5db8d368996c386bac233807d63eeca.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lark-parser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/lark-parser/lark-parser-0.11.3-r1.ebuild X-VCS-Directories: dev-python/lark-parser/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f113ade7e5db8d368996c386bac233807d63eeca X-VCS-Branch: master Date: Mon, 25 Apr 2022 16:05:14 +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: 53a2a2aa-a3e3-4683-9ac3-6a4741130aa9 X-Archives-Hash: 5f29ac21de88925723ecacfa16db9182 commit: f113ade7e5db8d368996c386bac233807d63eeca Author: Michał Górny gentoo org> AuthorDate: Mon Apr 25 15:53:19 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Apr 25 16:05:10 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f113ade7 dev-python/lark-parser: Prepare for rename Signed-off-by: Michał Górny gentoo.org> dev-python/lark-parser/lark-parser-0.11.3-r1.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-python/lark-parser/lark-parser-0.11.3-r1.ebuild b/dev-python/lark-parser/lark-parser-0.11.3-r1.ebuild index 818a01345e28..1b17ebf7368b 100644 --- a/dev-python/lark-parser/lark-parser-0.11.3-r1.ebuild +++ b/dev-python/lark-parser/lark-parser-0.11.3-r1.ebuild @@ -5,11 +5,14 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{8..10} pypy3 ) + inherit distutils-r1 +MY_P=lark-parser-${PV} DESCRIPTION="Python module to propose a modern general-purpose parsing library for Python" HOMEPAGE="https://github.com/lark-parser/lark" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +SRC_URI="mirror://pypi/${PN:0:1}/lark-parser/${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} LICENSE="MIT" SLOT="0" @@ -21,7 +24,8 @@ BDEPEND=" test? ( dev-python/atomicwrites[${PYTHON_USEDEP}] dev-python/regex[${PYTHON_USEDEP}] - )" + ) +" python_test() { "${EPYTHON}" -m tests -v || die "Tests fail with ${EPYTHON}"