summaryrefslogtreecommitdiff
path: root/dev-python/pydub
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/pydub
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/pydub')
-rw-r--r--dev-python/pydub/Manifest1
-rw-r--r--dev-python/pydub/metadata.xml11
-rw-r--r--dev-python/pydub/pydub-0.25.1.ebuild38
3 files changed, 0 insertions, 50 deletions
diff --git a/dev-python/pydub/Manifest b/dev-python/pydub/Manifest
deleted file mode 100644
index debead7054a9..000000000000
--- a/dev-python/pydub/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pydub-0.25.1.tar.gz 27555582 BLAKE2B 5a7aa4af4f2bb75306c3eef7052e403a09f6dc638e2805f7dd9269cb12149fec3962ab9b84b6c6744de75c34bde0cbe6daab711a8df050eb9861c21e70e98ef6 SHA512 8c3fb3714c4b0aed37ba7ab6727776bf4cd7568c1f5060cf43c30ede8da2ce4b498fb83326daa19ef44635250d552295407289c3945681e028eedde1b2b418e0
diff --git a/dev-python/pydub/metadata.xml b/dev-python/pydub/metadata.xml
deleted file mode 100644
index 9e193016cc2d..000000000000
--- a/dev-python/pydub/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>smaniotto.nicola@gmail.com</email>
- <name>Nicola Smaniotto</name>
- </maintainer>
- <upstream>
- <remote-id type="github">jiaaro/pydub</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pydub/pydub-0.25.1.ebuild b/dev-python/pydub/pydub-0.25.1.ebuild
deleted file mode 100644
index 081196c13562..000000000000
--- a/dev-python/pydub/pydub-0.25.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 2022-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{13..14} )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit distutils-r1 optfeature
-
-DESCRIPTION="Manipulate audio with an simple and easy high level interface"
-HOMEPAGE="http://pydub.com/"
-SRC_URI="https://github.com/jiaaro/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- test? (
- media-video/ffmpeg[lame,vorbis]
- )
- "
-
-distutils_enable_tests unittest
-
-python_test() {
- eunittest test/
-}
-
-pkg_postinst() {
- optfeature "opening and saving non-wav files - like mp3" media-video/ffmpeg
- #optfeature "playing audio" dev-python/simpleaudio # upstream suggests this, not available in gentoo or guru
- optfeature "playing audio" dev-python/pyaudio
-}