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 CD73F158003 for ; Sun, 26 Feb 2023 04:59:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1A47FE07D8; Sun, 26 Feb 2023 04:59:50 +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 F2188E07E1 for ; Sun, 26 Feb 2023 04:59:49 +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 D9A99340DB8 for ; Sun, 26 Feb 2023 04:59:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 79D6E807 for ; Sun, 26 Feb 2023 04:59:47 +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: <1677387575.225f6c62b9f5fd25eb842b3c4da44d336a85e93a.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/commandlines/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/commandlines/commandlines-0.4.1-r1.ebuild dev-python/commandlines/commandlines-0.4.1.ebuild X-VCS-Directories: dev-python/commandlines/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 225f6c62b9f5fd25eb842b3c4da44d336a85e93a X-VCS-Branch: dev Date: Sun, 26 Feb 2023 04:59:47 +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: ec118149-2c2c-4014-8d6e-cd22a5dc2a8d X-Archives-Hash: 9e33aad40a5883993b6b5d6e3b84de86 commit: 225f6c62b9f5fd25eb842b3c4da44d336a85e93a Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Sun Feb 26 04:43:09 2023 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Sun Feb 26 04:59:35 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=225f6c62 dev-python/commandlines: enable py3.11 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> ...mmandlines-0.4.1.ebuild => commandlines-0.4.1-r1.ebuild} | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/dev-python/commandlines/commandlines-0.4.1.ebuild b/dev-python/commandlines/commandlines-0.4.1-r1.ebuild similarity index 52% rename from dev-python/commandlines/commandlines-0.4.1.ebuild rename to dev-python/commandlines/commandlines-0.4.1-r1.ebuild index 7e43a09e3..38f9195bb 100644 --- a/dev-python/commandlines/commandlines-0.4.1.ebuild +++ b/dev-python/commandlines/commandlines-0.4.1-r1.ebuild @@ -1,22 +1,25 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{8..10} pypy3 ) - +PYTHON_COMPAT=( python3_{9..11} pypy3 ) +DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 DESCRIPTION="Routines for extracting information from fontTools glyphs" HOMEPAGE=" https://commandlines.github.io + https://pypi.org/project/commandlines/ https://github.com/chrissimpkins/commandlines " -SRC_URI="https://github.com/chrissimpkins/commandlines/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/chrissimpkins/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" KEYWORDS="~amd64" SLOT="0" distutils_enable_tests pytest -distutils_enable_sphinx docs dev-python/sphinx-rtd-theme + +distutils_enable_sphinx docs \ + dev-python/sphinx-rtd-theme