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 D9584158041 for ; Sat, 30 Mar 2024 15:28:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21161E2A0D; Sat, 30 Mar 2024 15:28:53 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 F3968E2A0D for ; Sat, 30 Mar 2024 15:28:52 +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 2AFCA34313A for ; Sat, 30 Mar 2024 15:28:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1B97160C for ; Sat, 30 Mar 2024 15:28:50 +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: <1711811003.4181748b5a4b07f14272267ba741b0b2b82ec8e4.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyaudio/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyaudio/pyaudio-0.2.13-r1.ebuild X-VCS-Directories: dev-python/pyaudio/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4181748b5a4b07f14272267ba741b0b2b82ec8e4 X-VCS-Branch: master Date: Sat, 30 Mar 2024 15:28:50 +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: 874984e6-8bde-440a-ad6d-ba4291f8c654 X-Archives-Hash: c10d52a20b99341dea2dadef98ccd9c1 commit: 4181748b5a4b07f14272267ba741b0b2b82ec8e4 Author: Michał Górny gentoo org> AuthorDate: Sat Mar 30 15:03:23 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Mar 30 15:03:23 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4181748b dev-python/pyaudio: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/pyaudio/pyaudio-0.2.13-r1.ebuild | 38 ----------------------------- 1 file changed, 38 deletions(-) diff --git a/dev-python/pyaudio/pyaudio-0.2.13-r1.ebuild b/dev-python/pyaudio/pyaudio-0.2.13-r1.ebuild deleted file mode 100644 index 012803c8853a..000000000000 --- a/dev-python/pyaudio/pyaudio-0.2.13-r1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..11} ) -PYPI_NO_NORMALIZE=1 -PYPI_PN="PyAudio" -DISTUTILS_EXT=1 -DISTUTILS_USE_PEP517="setuptools" -inherit distutils-r1 pypi - -DESCRIPTION="Python bindings for PortAudio" -HOMEPAGE="https://people.csail.mit.edu/hubert/pyaudio/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" - -# Tests work if you have the correct HW device(s) to test. 0.2.11-r1. -RESTRICT="test" - -RDEPEND="media-libs/portaudio" -DEPEND="${RDEPEND}" -BDEPEND="test? ( dev-python/numpy[${PYTHON_USEDEP}] )" - -distutils_enable_sphinx sphinx -distutils_enable_tests unittest - -python_test() { - elog "These tests require an OS loopback sound device that forwards audio" - elog "output, generated by PyAudio for playback, and forwards it to an input" - elog "device, which PyAudio can record and verify against a test signal." - - cd tests || die - # pyaudio_tests have very complicated runtime requirements, therefore skipping them. - "${EPYTHON}" -m unittest error_tests -v || die "Tests fail with ${EPYTHON}" -}