commit: b6d97eadcf5c3c4a6f00f149b357395c51746706 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in> AuthorDate: Mon Jun 2 07:23:19 2025 +0000 Commit: David Roman <davidroman96 <AT> gmail <DOT> com> CommitDate: Mon Jun 2 07:23:19 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b6d97ead
dev-python/playsound: treeclean Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in> dev-python/playsound/Manifest | 1 - .../playsound/files/playsound-1.3.0-pep517.patch | 125 --------------------- dev-python/playsound/metadata.xml | 12 -- dev-python/playsound/playsound-1.3.0-r1.ebuild | 25 ----- profiles/package.mask | 6 - 5 files changed, 169 deletions(-) diff --git a/dev-python/playsound/Manifest b/dev-python/playsound/Manifest deleted file mode 100644 index 198688b4c3..0000000000 --- a/dev-python/playsound/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST playsound-1.3.0.tar.gz 7650 BLAKE2B 27a601e2df63149e41707f1004ee301800d2e75abf81ce21d3e32c0ddce04f1fa3a9bd463637e1e0438f7ffe13bf0090bb120835f6f3a4eeca1c5bf41f0bbe5c SHA512 d64203542347938bb92616203423eae622c4a9a9b0dc78c8e000786eb6393cabfc092db3f3d799a40a290e762fd41cd068df8f83f7cb291c0ceaf8bc4fbc4184 diff --git a/dev-python/playsound/files/playsound-1.3.0-pep517.patch b/dev-python/playsound/files/playsound-1.3.0-pep517.patch deleted file mode 100644 index 05f42faf8e..0000000000 --- a/dev-python/playsound/files/playsound-1.3.0-pep517.patch +++ /dev/null @@ -1,125 +0,0 @@ -https://bugs.gentoo.org/921854 -https://github.com/TaylorSMarks/playsound/pull/149 -From 92385c78ec05c2fc3afad1afc5edc9d1282aa1e5 Mon Sep 17 00:00:00 2001 -From: taconi <[email protected]> -Date: Fri, 10 Nov 2023 22:59:23 -0300 -Subject: [PATCH 1/2] Update setuptools configuration file for pyproject.toml - ---- - pyproject.toml | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++ - setup.py | 43 ------------------------------------- - 2 files changed, 57 insertions(+), 43 deletions(-) - create mode 100644 pyproject.toml - delete mode 100644 setup.py - -diff --git a/pyproject.toml b/pyproject.toml -new file mode 100644 -index 0000000..d2b77e3 ---- /dev/null -+++ b/pyproject.toml -@@ -0,0 +1,56 @@ -+[project] -+name = "playsound" -+version = "1.3.0" -+description = "Pure Python, cross platform, single function module with no dependencies for playing sounds." -+readme = "README.rst" -+license = "MIT" -+authors = [{ name = "Taylor Marks", email = "[email protected]" }] -+keywords = [ -+ "sound", -+ "playsound", -+ "music", -+ "wave", -+ "wav", -+ "mp3", -+ "media", -+ "song", -+ "play", -+ "audio", -+] -+classifiers = [ -+ "Development Status :: 5 - Production/Stable", -+ "Intended Audience :: Developers", -+ "Operating System :: OS Independent", -+ "Programming Language :: Python :: 2", -+ "Programming Language :: Python :: 2.3", -+ "Programming Language :: Python :: 2.4", -+ "Programming Language :: Python :: 2.5", -+ "Programming Language :: Python :: 2.6", -+ "Programming Language :: Python :: 2.7", -+ "Programming Language :: Python :: 3", -+ "Programming Language :: Python :: 3.1", -+ "Programming Language :: Python :: 3.2", -+ "Programming Language :: Python :: 3.3", -+ "Programming Language :: Python :: 3.4", -+ "Programming Language :: Python :: 3.5", -+ "Programming Language :: Python :: 3.6", -+ "Programming Language :: Python :: 3.7", -+ "Programming Language :: Python :: 3.8", -+ "Programming Language :: Python :: 3.9", -+ "Topic :: Multimedia :: Sound/Audio :: MIDI", -+ "Topic :: Multimedia :: Sound/Audio :: Players", -+ "Topic :: Multimedia :: Sound/Audio :: Players :: MP3", -+] -+ -+[project.urls] -+Homepage = "https://github.com/TaylorSMarks/playsound" -+Documentation = "https://github.com/TaylorSMarks/playsound/blob/master/README.rst" -+Repository = "https://github.com/TaylorSMarks/playsound" -+"Issue tracker" = "https://github.com/TaylorSMarks/playsound/issues" -+ -+[tool.setuptools] -+py-modules = ["playsound"] -+ -+[build-system] -+requires = ["setuptools", "setuptools-scm"] -+build-backend = "setuptools.build_meta" -diff --git a/setup.py b/setup.py -deleted file mode 100644 -index 909a3ff..0000000 ---- a/setup.py -+++ /dev/null -@@ -1,43 +0,0 @@ --from codecs import open --from inspect import getsource --from os.path import abspath, dirname, join --from setuptools import setup -- --here = abspath(dirname(getsource(lambda:0))) -- --with open(join(here, 'README.rst'), encoding='utf-8') as f: -- long_description = f.read() -- --setup(name = 'playsound', -- version = '1.3.0', -- description = long_description.splitlines()[2][1:-1], -- long_description = long_description, -- url = 'https://github.com/TaylorSMarks/playsound', -- author = 'Taylor Marks', -- author_email = '[email protected]', -- license = 'MIT', -- classifiers = ['Development Status :: 5 - Production/Stable', -- 'Intended Audience :: Developers', -- 'License :: OSI Approved :: MIT License', -- 'Operating System :: OS Independent', -- 'Programming Language :: Python :: 2', -- 'Programming Language :: Python :: 2.3', -- 'Programming Language :: Python :: 2.4', -- 'Programming Language :: Python :: 2.5', -- 'Programming Language :: Python :: 2.6', -- 'Programming Language :: Python :: 2.7', -- 'Programming Language :: Python :: 3', -- 'Programming Language :: Python :: 3.1', -- 'Programming Language :: Python :: 3.2', -- 'Programming Language :: Python :: 3.3', -- 'Programming Language :: Python :: 3.4', -- 'Programming Language :: Python :: 3.5', -- 'Programming Language :: Python :: 3.6', -- 'Programming Language :: Python :: 3.7', -- 'Programming Language :: Python :: 3.8', -- 'Programming Language :: Python :: 3.9', -- 'Topic :: Multimedia :: Sound/Audio :: MIDI', -- 'Topic :: Multimedia :: Sound/Audio :: Players', -- 'Topic :: Multimedia :: Sound/Audio :: Players :: MP3'], -- keywords = 'sound playsound music wave wav mp3 media song play audio', -- py_modules = ['playsound']) diff --git a/dev-python/playsound/metadata.xml b/dev-python/playsound/metadata.xml deleted file mode 100644 index a835c92211..0000000000 --- a/dev-python/playsound/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'> -<pkgmetadata> - <maintainer type="person"> - <email>[email protected]</email> - <name>Shaoyu Tseng</name> - </maintainer> - <upstream> - <remote-id type="pypi">playsound</remote-id> - <remote-id type="github">TaylorSMarks/playsound</remote-id> - </upstream> -</pkgmetadata> diff --git a/dev-python/playsound/playsound-1.3.0-r1.ebuild b/dev-python/playsound/playsound-1.3.0-r1.ebuild deleted file mode 100644 index 93ec138823..0000000000 --- a/dev-python/playsound/playsound-1.3.0-r1.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{11..13} ) - -inherit distutils-r1 pypi - -DESCRIPTION="Single function module with no dependencies for playing sounds" -HOMEPAGE=" - https://pypi.org/project/playsound/ - https://github.com/TaylorSMarks/playsound -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" - -RDEPEND="dev-python/gst-python[${PYTHON_USEDEP}]" - -PATCHES=( - "${FILESDIR}/${P}-pep517.patch" -) diff --git a/profiles/package.mask b/profiles/package.mask index 76158f9c07..00376f2b9c 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -47,12 +47,6 @@ dev-python/codecov # Removal on 2025-06-01. dev-python/stringcase -# Anna (cybertailor) Vyalkova <[email protected]> (2025-05-01) -# No activity upstream, no revdeps left. -# There is a fork named playsound3 on PyPI. -# Removal on 2025-06-01. -dev-python/playsound - # David (stkw0) Roman <[email protected]> (2025-04-30) # Depends on removed dev-qt/qtwebengine:5, they should be moved to qtwebengine:6 # Removal on 2025-06-30
