diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-10-17 09:26:31 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-10-17 09:26:31 +0200 |
commit | 9ec1696464d7db3b653ddb71c54aa40470c270a8 (patch) | |
tree | 194c143b9d5673d548dd8515f8d68a1e2b2a3f77 /dev-python/audioread | |
parent | dev-python/asyncstdlib: Remove old (diff) | |
download | gentoo-9ec1696464d7db3b653ddb71c54aa40470c270a8.tar.gz gentoo-9ec1696464d7db3b653ddb71c54aa40470c270a8.tar.bz2 gentoo-9ec1696464d7db3b653ddb71c54aa40470c270a8.zip |
dev-python/audioread: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/audioread')
-rw-r--r-- | dev-python/audioread/Manifest | 1 | ||||
-rw-r--r-- | dev-python/audioread/audioread-2.1.8-r2.ebuild | 33 | ||||
-rw-r--r-- | dev-python/audioread/files/audioread-2.1.8-test-deps.patch | 27 |
3 files changed, 0 insertions, 61 deletions
diff --git a/dev-python/audioread/Manifest b/dev-python/audioread/Manifest index 14ca29568adb..23cbe4994c59 100644 --- a/dev-python/audioread/Manifest +++ b/dev-python/audioread/Manifest @@ -1,2 +1 @@ -DIST audioread-2.1.8.tar.gz 21222 BLAKE2B 78cc55d45dd987fbe0171cd3da9f8441e38b60fa6f1b0ef8b0781abc91e6b447b8cf839437b59bfafdf13ca90bb50a032788e0470250f303122a46ddc24ebd19 SHA512 9db5ad1f8b2047256b5f6b4bbee2366043ed19d35ffd2766ae3ab66bdc5b9f63910bcf449fd42aab074fd8132642bf730c432aa0c8f3c5368cd6ef36d7f4f5a5 DIST audioread-2.1.9.tar.gz 377500 BLAKE2B a90d1d7531c265a8c2b7933ac0bfc00fbdf298546620fef3ccae0204fc1eedcc584bf2fdb79b1bbda81b29d03346abc236cd0234684ba3cc70642f837033ab99 SHA512 ad2260b6931cfeebb815d48221366a2a5d8095965ff18e94c5eb0809d9a1b02e650a62ad5e895b7f1e003771fa3babf56f59ce4538aca78b678566fd28327290 diff --git a/dev-python/audioread/audioread-2.1.8-r2.ebuild b/dev-python/audioread/audioread-2.1.8-r2.ebuild deleted file mode 100644 index c0d64fd1ab2f..000000000000 --- a/dev-python/audioread/audioread-2.1.8-r2.ebuild +++ /dev/null @@ -1,33 +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" - -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 ) -" - -PATCHES=( "${FILESDIR}/${P}-test-deps.patch" ) # git master - -python_prepare_all() { - distutils-r1_python_prepare_all - sed -e "/'pytest-runner'/d" -i setup.py || die -} diff --git a/dev-python/audioread/files/audioread-2.1.8-test-deps.patch b/dev-python/audioread/files/audioread-2.1.8-test-deps.patch deleted file mode 100644 index 0a67767070b1..000000000000 --- a/dev-python/audioread/files/audioread-2.1.8-test-deps.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 5dd6c87a53f3a6c5bfa6ea384598213c49402056 Mon Sep 17 00:00:00 2001 -From: Glen Baker <iepathos@gmail.com> -Date: Mon, 5 Aug 2019 23:40:27 -0700 -Subject: [PATCH] Correct pytest-runner location in setup.py - -Moved pytest-runner from setup_requires to tests_require. It is the tests that require pytest-runner. ---- - setup.py | 5 +---- - 1 file changed, 1 insertion(+), 4 deletions(-) - -diff --git a/setup.py b/setup.py -index bd90605..6041f6e 100644 ---- a/setup.py -+++ b/setup.py -@@ -36,11 +36,8 @@ def _read(fn): - - packages=['audioread'], - -- setup_requires=[ -- 'pytest-runner' -- ], -- - tests_require=[ -+ 'pytest-runner', - 'pytest' - ], - |