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 9EE1115808B for ; Sun, 17 Apr 2022 19:01:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E059E0BC1; Sun, 17 Apr 2022 19:00:25 +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 F228AE0BBC for ; Sun, 17 Apr 2022 19:00:24 +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 1BD0B3415B0 for ; Sun, 17 Apr 2022 19:00:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A2E33B5 for ; Sun, 17 Apr 2022 19:00:20 +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: <1650221989.65852060013c84da3978ce4eac9eb1546d63e463.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/audioread/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/audioread/audioread-2.1.9.ebuild X-VCS-Directories: dev-python/audioread/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 65852060013c84da3978ce4eac9eb1546d63e463 X-VCS-Branch: master Date: Sun, 17 Apr 2022 19:00:20 +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: ae624888-5a7e-4eb3-b352-9fe377388b8d X-Archives-Hash: e6113e6346eab3013ddfbd37233a1b1e commit: 65852060013c84da3978ce4eac9eb1546d63e463 Author: Sam James gentoo org> AuthorDate: Sun Apr 17 18:51:29 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Apr 17 18:59:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65852060 dev-python/audioread: drop 2.1.9 Signed-off-by: Sam James gentoo.org> dev-python/audioread/audioread-2.1.9.ebuild | 38 ----------------------------- 1 file changed, 38 deletions(-) diff --git a/dev-python/audioread/audioread-2.1.9.ebuild b/dev-python/audioread/audioread-2.1.9.ebuild deleted file mode 100644 index c14c97ad2fe9..000000000000 --- a/dev-python/audioread/audioread-2.1.9.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) -inherit distutils-r1 - -DESCRIPTION="Wrapper for audio file decoding using FFmpeg or GStreamer" -HOMEPAGE="https://pypi.org/project/audioread/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="ffmpeg gstreamer +mad" -# Enabled mad by default as it's the lighest dep to ease testing -REQUIRED_USE=" - ${PYTHON_REQUIRED_USE} - test? ( || ( ffmpeg gstreamer mad ) ) -" - -RDEPEND=" - ffmpeg? ( media-video/ffmpeg ) - gstreamer? ( - dev-python/pygobject:3[${PYTHON_USEDEP}] - media-libs/gstreamer:1.0 - media-plugins/gst-plugins-meta:1.0 - ) - mad? ( dev-python/pymad ) -" - -python_prepare_all() { - distutils-r1_python_prepare_all - sed -e "/'pytest-runner'/d" -i setup.py || die -} - -distutils_enable_tests pytest