commit:     f6833f07096bfcb582e4583abb7ceabe76b418ea
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Thu Oct  5 07:19:49 2023 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Thu Oct  5 07:19:49 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6833f07

media-libs/mutagen: dropped obsolete 1.46.0

Bug: https://bugs.gentoo.org/915166
Closes: https://bugs.gentoo.org/912417
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/mutagen/Manifest                        |  1 -
 .../mutagen/files/mutagen-1.46.0-sphinx-6.patch    | 41 ----------------------
 media-libs/mutagen/mutagen-1.46.0.ebuild           | 40 ---------------------
 3 files changed, 82 deletions(-)

diff --git a/media-libs/mutagen/Manifest b/media-libs/mutagen/Manifest
index 50cd58516751..5c97a0c02e15 100644
--- a/media-libs/mutagen/Manifest
+++ b/media-libs/mutagen/Manifest
@@ -1,2 +1 @@
-DIST mutagen-1.46.0.tar.gz 1268561 BLAKE2B 
44e0dbbc1c102521569a91386a9d807f3ad82ffb96a5e3f76958551d173d00c7095fa6a2668a0a418bfdda31be5c3bb175856b2278719007bf7af866c732dc40
 SHA512 
52ab7408af46e54e79f1d157a3f6114e2606c6a55eb46fdd314dff82d6d586c2c22294b181a432581230dee566c79554456a9435a8e1188a91f4ae000644ae71
 DIST mutagen-1.47.0.tar.gz 1274186 BLAKE2B 
220d8e136e8f41d2f3953ce61b4784a24b1e450b6cfe0d0e0c610aeccb9ff3248493b8a0ea78f801e62b2f6ac87cd219a05cff535e04586a5ce9b03aa3540278
 SHA512 
40f9a8a898c9fdae00fd0bdd38eb91a6fb813cf8319f888590bdfd4b5efcb614aa5322c0b9e017f49c3f5155ccf82d5cae80aad79df285c50b5ef270c09f4c9d

diff --git a/media-libs/mutagen/files/mutagen-1.46.0-sphinx-6.patch 
b/media-libs/mutagen/files/mutagen-1.46.0-sphinx-6.patch
deleted file mode 100644
index fe11fa6b1d46..000000000000
--- a/media-libs/mutagen/files/mutagen-1.46.0-sphinx-6.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-https://bugs.gentoo.org/889354
-https://github.com/quodlibet/mutagen/pull/590
-
-From 37b4e6bddc03e1f715425c418ea84bac15116907 Mon Sep 17 00:00:00 2001
-From: Martin Weinelt <h...@darmstadt.ccc.de>
-Date: Tue, 3 Jan 2023 17:32:55 +0100
-Subject: [PATCH] docs: Make extlinks compatible with sphinx 6.0
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-The caption must contain `%s` exactly once¹ and because it did not
-building the docs using sphinx 6.0 failed.
-
-```
-mutagen> reading sources... [ 62%] changelog0mmm00m
-mutagen> Exception occurred:
-mutagen>   File 
"/nix/store/45b9bmcr6w6k05syyflc4r8j4gzzbjkm-python3.10-sphinx-6.0.0/lib/python3.10/site-packages/sphinx/ext/extlinks.py",
 line 101, in role
-mutagen>     title = caption % part
-mutagen> TypeError: not all arguments converted during string formatting
-mutagen> The full traceback has been saved in /build/sphinx-err-kzqq6ki_.log, 
if you want to report the issue to the developers.
-```
-
-[1] 
https://www.sphinx-doc.org/en/master/usage/extensions/extlinks.html#confval-extlinks
---- a/docs/conf.py
-+++ b/docs/conf.py
-@@ -26,10 +26,10 @@
- exclude_patterns = ['_build']
- 
- extlinks = {
--    'bug': ('https://github.com/quodlibet/mutagen/issues/%s', '#'),
--    'pr': ('https://github.com/quodlibet/mutagen/pull/%s', '#pr'),
--    'commit': ('https://github.com/quodlibet/mutagen/commit/%s', '#'),
--    'user': ('https://github.com/%s', ''),
-+    'bug': ('https://github.com/quodlibet/mutagen/issues/%s', '#%s'),
-+    'pr': ('https://github.com/quodlibet/mutagen/pull/%s', '#pr%s'),
-+    'commit': ('https://github.com/quodlibet/mutagen/commit/%s', '%s'),
-+    'user': ('https://github.com/%s', '%s'),
- }
- 
- 

diff --git a/media-libs/mutagen/mutagen-1.46.0.ebuild 
b/media-libs/mutagen/mutagen-1.46.0.ebuild
deleted file mode 100644
index eb5b0d3d62cb..000000000000
--- a/media-libs/mutagen/mutagen-1.46.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1
-
-DESCRIPTION="Audio metadata tag reader and writer implemented in pure Python"
-HOMEPAGE="
-       https://github.com/quodlibet/mutagen/
-       https://pypi.org/project/mutagen/
-"
-SRC_URI="
-       
https://github.com/quodlibet/mutagen/releases/download/release-${PV}/${P}.tar.gz
-"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux"
-
-BDEPEND="
-       test? (
-               dev-python/eyeD3[${PYTHON_USEDEP}]
-               dev-python/hypothesis[${PYTHON_USEDEP}]
-               media-libs/flac[ogg]
-       )
-"
-
-DOCS=( NEWS README.rst )
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-1.46.0-sphinx-6.patch
-)
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs \
-       dev-python/sphinx-rtd-theme

Reply via email to