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 A577A158041 for ; Thu, 14 Mar 2024 04:52:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 838B3E29C9; Thu, 14 Mar 2024 04:52:29 +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 5B085E29C8 for ; Thu, 14 Mar 2024 04:52:29 +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 57EE733BEFF for ; Thu, 14 Mar 2024 04:52:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 925B5B29 for ; Thu, 14 Mar 2024 04:52:26 +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: <1710391771.d123620a304ed68d4e07d74d1a38c5267dbdc8b1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyasyncore/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyasyncore/Manifest dev-python/pyasyncore/metadata.xml dev-python/pyasyncore/pyasyncore-1.0.4.ebuild X-VCS-Directories: dev-python/pyasyncore/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d123620a304ed68d4e07d74d1a38c5267dbdc8b1 X-VCS-Branch: master Date: Thu, 14 Mar 2024 04:52:26 +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: 4d1e18e3-d10b-4b49-9ea4-10cdff5e4727 X-Archives-Hash: a77212fd4197f4bded965e4e595b61c0 commit: d123620a304ed68d4e07d74d1a38c5267dbdc8b1 Author: Sam James gentoo org> AuthorDate: Thu Mar 14 04:16:13 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 14 04:49:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d123620a dev-python/pyasyncore: new package, add 1.0.4 Bug: https://bugs.gentoo.org/909998 Signed-off-by: Sam James gentoo.org> dev-python/pyasyncore/Manifest | 1 + dev-python/pyasyncore/metadata.xml | 13 +++++++++++++ dev-python/pyasyncore/pyasyncore-1.0.4.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 38 insertions(+) diff --git a/dev-python/pyasyncore/Manifest b/dev-python/pyasyncore/Manifest new file mode 100644 index 000000000000..8b5051785e12 --- /dev/null +++ b/dev-python/pyasyncore/Manifest @@ -0,0 +1 @@ +DIST pyasyncore-1.0.4.tar.gz 15339 BLAKE2B 1cc689c94dc7fe4f4c75a78cf58a0afabbe48f01b8c1511f9500b93b64b862dc1c7cc653e17a49786af9360441fcb45be03fa38c72c2e89ec05385fd8bfc648a SHA512 43746fca009f7acc5f05506c7d54e71ee74a76a112c3689aa98ab714f0452d1ed1196836bf52585bbbced2d64c1d4ccd86f8f5c2d2c5537fdc397e29d0d87008 diff --git a/dev-python/pyasyncore/metadata.xml b/dev-python/pyasyncore/metadata.xml new file mode 100644 index 000000000000..062106caae26 --- /dev/null +++ b/dev-python/pyasyncore/metadata.xml @@ -0,0 +1,13 @@ + + + + + python@gentoo.org + Python + + + + pyasyncore + simonrob/pyasyncore + + diff --git a/dev-python/pyasyncore/pyasyncore-1.0.4.ebuild b/dev-python/pyasyncore/pyasyncore-1.0.4.ebuild new file mode 100644 index 000000000000..e019b13f2aea --- /dev/null +++ b/dev-python/pyasyncore/pyasyncore-1.0.4.ebuild @@ -0,0 +1,24 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_12 ) + +inherit distutils-r1 pypi + +DESCRIPTION="Make asyncore available for Python 3.12 onwards" +HOMEPAGE=" + https://github.com/simonrob/pyasyncore + https://pypi.org/project/pyasyncore/ +" + +LICENSE="PSF-2" +SLOT="0" +KEYWORDS="~amd64" + +python_test() { + # Can't use d_e_t unittest (bug #926964) + eunittest tests +}