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 7B00B158090 for ; Sun, 15 May 2022 06:39:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07F10E091F; Sun, 15 May 2022 06:39:05 +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 DE6D5E091F for ; Sun, 15 May 2022 06:39:04 +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 03D3A341C3E for ; Sun, 15 May 2022 06:39:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 155E946D for ; Sun, 15 May 2022 06:39:02 +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: <1652596409.bd536957062246e8c1b57b141d6c0454acb8ef43.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytz_deprecation_shim/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytz_deprecation_shim/pytz_deprecation_shim-0.1.0_p0-r2.ebuild X-VCS-Directories: dev-python/pytz_deprecation_shim/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bd536957062246e8c1b57b141d6c0454acb8ef43 X-VCS-Branch: master Date: Sun, 15 May 2022 06:39:02 +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: 4d611bdf-74f7-4f52-aff2-3862effbac81 X-Archives-Hash: 7ede0d47c1f4775ba68bebdd733388eb commit: bd536957062246e8c1b57b141d6c0454acb8ef43 Author: Michał Górny gentoo org> AuthorDate: Sun May 15 06:23:46 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 15 06:33:29 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd536957 dev-python/pytz_deprecation_shim: Enable py3.11 Signed-off-by: Michał Górny gentoo.org> .../pytz_deprecation_shim-0.1.0_p0-r2.ebuild | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/dev-python/pytz_deprecation_shim/pytz_deprecation_shim-0.1.0_p0-r2.ebuild b/dev-python/pytz_deprecation_shim/pytz_deprecation_shim-0.1.0_p0-r2.ebuild index 4067747deaa4..8d310bf3718f 100644 --- a/dev-python/pytz_deprecation_shim/pytz_deprecation_shim-0.1.0_p0-r2.ebuild +++ b/dev-python/pytz_deprecation_shim/pytz_deprecation_shim-0.1.0_p0-r2.ebuild @@ -4,15 +4,19 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} pypy3 ) +PYTHON_COMPAT=( python3_{8..11} pypy3 ) + inherit distutils-r1 MY_P=${P/_p/.post} DESCRIPTION="Shims to make deprecation of pytz easier" -HOMEPAGE="https://pypi.org/project/pytz-deprecation-shim/ https://github.com/pganssle/pytz-deprecation-shim" +HOMEPAGE=" + https://github.com/pganssle/pytz-deprecation-shim/ + https://pypi.org/project/pytz-deprecation-shim/ +" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" +S=${WORKDIR}/${MY_P} LICENSE="Apache-2.0" SLOT="0" @@ -21,14 +25,13 @@ KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s3 RDEPEND=" $(python_gen_cond_dep ' dev-python/backports-zoneinfo[${PYTHON_USEDEP}] - ' python3_8 pypy3) + ' 3.8) sys-libs/timezone-data " BDEPEND=" test? ( dev-python/hypothesis[${PYTHON_USEDEP}] dev-python/pytz[${PYTHON_USEDEP}] - dev-python/toml[${PYTHON_USEDEP}] ) "