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 35EB015808E for ; Thu, 28 Apr 2022 04:39:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D12DE088C; Thu, 28 Apr 2022 04:39:37 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 32AEAE088C for ; Thu, 28 Apr 2022 04:39:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8C275341256 for ; Thu, 28 Apr 2022 04:39:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDF213B5 for ; Thu, 28 Apr 2022 04:39:33 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1651120766.4a05876d1ea2f3ef562e1a3f8340df6ccec348a9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pydispatcher/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pydispatcher/pydispatcher-2.1.2-r1.ebuild X-VCS-Directories: dev-python/pydispatcher/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4a05876d1ea2f3ef562e1a3f8340df6ccec348a9 X-VCS-Branch: master Date: Thu, 28 Apr 2022 04:39:33 +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: 8c99f771-811a-40b6-9271-596386bdee27 X-Archives-Hash: e007f2aeb83a6e101315a19463643bec commit: 4a05876d1ea2f3ef562e1a3f8340df6ccec348a9 Author: Sam James gentoo org> AuthorDate: Thu Apr 28 04:39:10 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Apr 28 04:39:26 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a05876d dev-python/pydispatcher: update EAPI 6 -> 8, add Python 3.10 Closes: https://bugs.gentoo.org/800794 Signed-off-by: Sam James gentoo.org> dev-python/pydispatcher/pydispatcher-2.1.2-r1.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dev-python/pydispatcher/pydispatcher-2.1.2-r1.ebuild b/dev-python/pydispatcher/pydispatcher-2.1.2-r1.ebuild new file mode 100644 index 000000000000..590658633aa1 --- /dev/null +++ b/dev-python/pydispatcher/pydispatcher-2.1.2-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +MY_P="PyPyDispatcher-${PV}" +DESCRIPTION="Multi-producer-multi-consumer signal dispatching mechanism" +HOMEPAGE="https://github.com/scrapy/pypydispatcher https://pypi.org/project/PyPyDispatcher/" +SRC_URI="mirror://pypi/${MY_P::1}/${MY_P%-*}/${MY_P}.tar.gz" +S="${WORKDIR}"/${MY_P} + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~x86" + +distutils_enable_tests unittest