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 6B50215814C for ; Thu, 16 Nov 2023 19:43:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8AC452BC017; Thu, 16 Nov 2023 19:43:44 +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 6E5F12BC017 for ; Thu, 16 Nov 2023 19:43:44 +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 7B821335D76 for ; Thu, 16 Nov 2023 19:43:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E732C1397 for ; Thu, 16 Nov 2023 19:43:41 +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: <1700163813.0f78da7132c31ec04116fb3c2ed93174f665972f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pickleshare/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pickleshare/pickleshare-0.7.5-r1.ebuild X-VCS-Directories: dev-python/pickleshare/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0f78da7132c31ec04116fb3c2ed93174f665972f X-VCS-Branch: master Date: Thu, 16 Nov 2023 19:43:41 +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: ad2e0914-2bc6-4454-bab1-52a85ccf9bd6 X-Archives-Hash: 4e7b4c55c0301f45744fd7fc268acd48 commit: 0f78da7132c31ec04116fb3c2ed93174f665972f Author: Michał Górny gentoo org> AuthorDate: Thu Nov 16 19:21:01 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Nov 16 19:43:33 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f78da71 dev-python/pickleshare: Enable pypy3 Sponsored-by: Ex Makhina, Inc. exmakhina.com> Signed-off-by: Michał Górny gentoo.org> dev-python/pickleshare/pickleshare-0.7.5-r1.ebuild | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/dev-python/pickleshare/pickleshare-0.7.5-r1.ebuild b/dev-python/pickleshare/pickleshare-0.7.5-r1.ebuild index a69e5c19eae5..7fa692bdd2fe 100644 --- a/dev-python/pickleshare/pickleshare-0.7.5-r1.ebuild +++ b/dev-python/pickleshare/pickleshare-0.7.5-r1.ebuild @@ -2,18 +2,23 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( pypy3 python3_{10..12} ) DISTUTILS_USE_PEP517=setuptools + inherit distutils-r1 pypi DESCRIPTION="A small 'shelve' like datastore with concurrency support" -HOMEPAGE="https://github.com/pickleshare/pickleshare" +HOMEPAGE=" + https://github.com/pickleshare/pickleshare/ + https://pypi.org/project/pickleshare/ +" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos" RDEPEND=" - >=dev-python/path-6.2[${PYTHON_USEDEP}]" + >=dev-python/path-6.2[${PYTHON_USEDEP}] +" distutils_enable_tests pytest