summaryrefslogtreecommitdiff
path: root/media-sound/corrscope
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-10-21 19:48:24 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-10-21 19:48:24 +0000
commitf5b40fdf8434f21cd0b0fcc9a68b4dc3abd0220a (patch)
tree0586c9386e6d41989cac799ebdc059a56ae46656 /media-sound/corrscope
parent66435c758bc5960fee31f0e1976afb08e2d1a478 (diff)
downloadbaldeagleos-repo-f5b40fdf8434f21cd0b0fcc9a68b4dc3abd0220a.tar.gz
baldeagleos-repo-f5b40fdf8434f21cd0b0fcc9a68b4dc3abd0220a.tar.xz
baldeagleos-repo-f5b40fdf8434f21cd0b0fcc9a68b4dc3abd0220a.zip
Adding metadata
Diffstat (limited to 'media-sound/corrscope')
-rw-r--r--media-sound/corrscope/Manifest1
-rw-r--r--media-sound/corrscope/corrscope-0.10.1.ebuild45
2 files changed, 46 insertions, 0 deletions
diff --git a/media-sound/corrscope/Manifest b/media-sound/corrscope/Manifest
index 117f80c67e1c..20a1c2e19641 100644
--- a/media-sound/corrscope/Manifest
+++ b/media-sound/corrscope/Manifest
@@ -1 +1,2 @@
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.1.ebuild b/media-sound/corrscope/corrscope-0.10.1.ebuild
new file mode 100644
index 000000000000..ffef80e092c1
--- /dev/null
+++ b/media-sound/corrscope/corrscope-0.10.1.ebuild
@@ -0,0 +1,45 @@
+# 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_{9,10,11,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
+)