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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6331D158020 for ; Tue, 22 Nov 2022 07:32:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3E7CE0BE0; Tue, 22 Nov 2022 07:32:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 A085AE0BE0 for ; Tue, 22 Nov 2022 07:32:28 +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 7B87A3412A3 for ; Tue, 22 Nov 2022 07:32:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 58E783A5 for ; Tue, 22 Nov 2022 07:32:23 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1669092536.2a62c2c328a5b889120f78e8acf0e89df88680b0.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pymeeus/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/pymeeus/pymeeus-0.5.11.ebuild X-VCS-Directories: dev-python/pymeeus/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 2a62c2c328a5b889120f78e8acf0e89df88680b0 X-VCS-Branch: dev Date: Tue, 22 Nov 2022 07:32:23 +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: 356c98ea-2328-4a84-8f80-f6396b93ceeb X-Archives-Hash: 21758dfbd5bce843a0ad341b01e3b538 commit: 2a62c2c328a5b889120f78e8acf0e89df88680b0 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Tue Nov 22 04:48:39 2022 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Tue Nov 22 04:48:56 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2a62c2c3 dev-python/pymeeus: enable py3.11, pypy3 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-python/pymeeus/pymeeus-0.5.11.ebuild | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/dev-python/pymeeus/pymeeus-0.5.11.ebuild b/dev-python/pymeeus/pymeeus-0.5.11.ebuild index df8144df4..86fce5fe2 100644 --- a/dev-python/pymeeus/pymeeus-0.5.11.ebuild +++ b/dev-python/pymeeus/pymeeus-0.5.11.ebuild @@ -1,15 +1,19 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} pypy3 ) +DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 MY_PN="PyMeeus" MY_P="${MY_PN}-${PV}" DESCRIPTION="Python implementation of Jean Meeus astronomical routines" -HOMEPAGE="https://github.com/architest/pymeeus" +HOMEPAGE=" + https://pypi.org/project/PyMeeus/ + https://github.com/architest/pymeeus +" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" S="${WORKDIR}/${MY_P}" @@ -19,4 +23,5 @@ KEYWORDS="~amd64" distutils_enable_tests pytest -distutils_enable_sphinx docs/source dev-python/sphinx_rtd_theme +distutils_enable_sphinx docs/source \ + dev-python/sphinx_rtd_theme