diff --git a/media-sound/corrscope/Manifest b/media-sound/corrscope/Manifest index 20a1c2e196..61b30fc00d 100644 --- a/media-sound/corrscope/Manifest +++ b/media-sound/corrscope/Manifest @@ -1,2 +1 @@ -DIST corrscope-0.10.0.tar.gz 107386 BLAKE2B af3613386ce45917b9701fa2eb3d4857a7ae8b2a0e7452ce03db00493a49ecf3e1d196e0324434261f3f652c64b31036b6bf0f9cf6541a886051445f3d29fb67 SHA512 c403ed4f740d48b720bc521c005708f7c0797fd12d7ebb2a8605f33f2b2ca0e2a7af9e38883437460f32f5515675532b9a6ba49118a8bc21190af8eb070274c2 DIST corrscope-0.10.1.tar.gz 104563 BLAKE2B 1f6c81e488b2b868a23a0af1f3a69d39cd84a75017296a00a6a261b8457ae77a5221eb5422c1bfea4cfb4689a16f53d9eb59cd87276320010682796c9e5d8f32 SHA512 b70a60f01f8cfd6a5f3b6f02cd74218dc694b4264d7803a6c0372e658fc543a97eaab79f0f2c47dbe99bf65997b9e7ddcc8040e3904f46019cfbe8818c056d59 diff --git a/media-sound/corrscope/corrscope-0.10.0-r1.ebuild b/media-sound/corrscope/corrscope-0.10.0-r1.ebuild deleted file mode 100644 index 50d704b327..0000000000 --- a/media-sound/corrscope/corrscope-0.10.0-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 -EAPI=8 - -DISTUTILS_USE_PEP517=poetry -DISTUTILS_SINGLE_IMPL=1 -PYTHON_COMPAT=( python3_{12..13} ) - -inherit distutils-r1 pypi - -DESCRIPTION="Advanced oscilloscope audio visualizer specializing in chiptune" -HOMEPAGE=" - https://pypi.org/project/corrscope/ - https://corrscope.github.io/corrscope/ -" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~arm64" - -RDEPEND=" - $(python_gen_cond_dep ' - dev-python/ruamel-yaml[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/click[${PYTHON_USEDEP}] - dev-python/matplotlib[${PYTHON_USEDEP}] - dev-python/attrs[${PYTHON_USEDEP}] - dev-python/appdirs[${PYTHON_USEDEP}] - dev-python/atomicwrites[${PYTHON_USEDEP}] - dev-python/colorspacious[${PYTHON_USEDEP}] - dev-python/qtpy[${PYTHON_USEDEP}] - ') - media-video/ffmpeg -" - -PATCHES=( - # appnope is a library for disabling powersaving on macOS. corrscope - # hard-depends on this currently. appnope isn't packaged, and it seems a - # bit silly to me to package it for gentoo given its purpose, so I've just - # removed the few lines that import/invoke it. - # - # Ideally, we should upstream a fix that only conditionally imports it, - # but I don't know how to do that right now. - "${FILESDIR}"/remove-appnope-dep.patch - - # corrscope seems to have copied in a modified scipy file to their source - # tree. That file uses np.deprecate, which is removed in numpy2. corrscope - # doesn't care about this function being marked deprecated, so neither do we - "${FILESDIR}"/remove-npdeprecate.patch -)