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 7E04D158094 for ; Sun, 18 Sep 2022 13:53:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A90C5E084A; Sun, 18 Sep 2022 13:53:09 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 92CA0E084A for ; Sun, 18 Sep 2022 13:53:09 +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 9949E33F698 for ; Sun, 18 Sep 2022 13:53:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09E395DA for ; Sun, 18 Sep 2022 13:53:07 +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: <1663509183.1e1c4ce5445b50f4c3f06dd4ffacb6dc14b28f67.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/simpleeval/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/simpleeval/simpleeval-0.9.12-r1.ebuild dev-python/simpleeval/simpleeval-0.9.12.ebuild X-VCS-Directories: dev-python/simpleeval/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1e1c4ce5445b50f4c3f06dd4ffacb6dc14b28f67 X-VCS-Branch: master Date: Sun, 18 Sep 2022 13:53:07 +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: 01606834-675e-453e-b905-b7891f34ca95 X-Archives-Hash: 1ee9f6e311b8aa98e2cf29fc73f0efd7 commit: 1e1c4ce5445b50f4c3f06dd4ffacb6dc14b28f67 Author: Michał Górny gentoo org> AuthorDate: Sun Sep 18 13:49:38 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Sep 18 13:53:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e1c4ce5 dev-python/simpleeval: Use PEP517 build, py3.11 Signed-off-by: Michał Górny gentoo.org> .../{simpleeval-0.9.12.ebuild => simpleeval-0.9.12-r1.ebuild} | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/dev-python/simpleeval/simpleeval-0.9.12.ebuild b/dev-python/simpleeval/simpleeval-0.9.12-r1.ebuild similarity index 56% rename from dev-python/simpleeval/simpleeval-0.9.12.ebuild rename to dev-python/simpleeval/simpleeval-0.9.12-r1.ebuild index 3d8806ea1a9f..1d313bbbaa4d 100644 --- a/dev-python/simpleeval/simpleeval-0.9.12.ebuild +++ b/dev-python/simpleeval/simpleeval-0.9.12-r1.ebuild @@ -3,14 +3,17 @@ EAPI=8 -DISTUTILS_USE_SETUPTOOLS=pyproject.toml -PYTHON_COMPAT=( python3_{8..10} ) +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} ) inherit distutils-r1 DESCRIPTION="A simple, safe single expression evaluator library" -HOMEPAGE="https://github.com/danthedeckie/simpleeval" -SRC_URI="mirror://pypi/s/${PN}/${P}.tar.gz" +HOMEPAGE=" + https://github.com/danthedeckie/simpleeval/ + https://pypi.org/project/simpleeval/ +" +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0"