Accepting request 1193478 from multimedia:apps
OBS-URL: https://build.opensuse.org/request/show/1193478 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/picard?expand=0&rev=72
This commit is contained in:
commit
9226b91c01
44
0001-Fix-exception-when-genre-filtering-results-in.patch
Normal file
44
0001-Fix-exception-when-genre-filtering-results-in.patch
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
From b1a8b2c85c0615c2018de3c054d59f2a0b5315bd Mon Sep 17 00:00:00 2001
|
||||||
|
From: Philipp Wolfer <ph.wolfer@gmail.com>
|
||||||
|
Date: Sat, 13 Jul 2024 11:05:31 +0200
|
||||||
|
Subject: [PATCH] PICARD-2939: Fix exception when genre filtering results in
|
||||||
|
empty genre list
|
||||||
|
|
||||||
|
---
|
||||||
|
picard/track.py | 2 ++
|
||||||
|
test/test_taggenrefilter.py | 12 ++++++++++++
|
||||||
|
2 files changed, 14 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/picard/track.py b/picard/track.py
|
||||||
|
index 3da608de7f..025ebb8b55 100644
|
||||||
|
--- a/picard/track.py
|
||||||
|
+++ b/picard/track.py
|
||||||
|
@@ -115,6 +115,8 @@ def filter(self, counter: Counter, minusage=0) -> Counter:
|
||||||
|
for name, count in counter.items():
|
||||||
|
if not self.skip(name):
|
||||||
|
result[name] = count
|
||||||
|
+ if not result:
|
||||||
|
+ return result
|
||||||
|
topcount = result.most_common(1)[0][1]
|
||||||
|
for name, count in counter.items():
|
||||||
|
percent = 100 * count // topcount
|
||||||
|
diff --git a/test/test_taggenrefilter.py b/test/test_taggenrefilter.py
|
||||||
|
index 01a54c383d..46cb5a5a52 100644
|
||||||
|
--- a/test/test_taggenrefilter.py
|
||||||
|
+++ b/test/test_taggenrefilter.py
|
||||||
|
@@ -178,3 +178,15 @@ def test_filter_method_minusage(self):
|
||||||
|
genres = Counter(ax=4, bx=5, ay=20, by=10, bz=4)
|
||||||
|
result = tag_filter.filter(genres, minusage=50)
|
||||||
|
self.assertEqual([('bx', 5), ('by', 10)], list(result.items()))
|
||||||
|
+
|
||||||
|
+ def test_filter_method_empty_input(self):
|
||||||
|
+ tag_filter = TagGenreFilter("")
|
||||||
|
+ genres = Counter()
|
||||||
|
+ result = tag_filter.filter(genres)
|
||||||
|
+ self.assertEqual([], list(result.items()))
|
||||||
|
+
|
||||||
|
+ def test_filter_method_empty_result(self):
|
||||||
|
+ tag_filter = TagGenreFilter("-*")
|
||||||
|
+ genres = Counter(ax=1, bx=2, ay=3, by=4)
|
||||||
|
+ result = tag_filter.filter(genres)
|
||||||
|
+ self.assertEqual([], list(result.items()))
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 12 15:25:02 UTC 2024 - Antonio Larrosa <alarrosa@suse.com>
|
||||||
|
|
||||||
|
- Add patch from upstream to fix a segfault when filtering genres
|
||||||
|
results in empty list of genres:
|
||||||
|
* 0001-Fix-exception-when-genre-filtering-results-in.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 27 09:17:16 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
Thu Jun 27 09:17:16 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
||||||
|
|
||||||
|
@ -26,6 +26,8 @@ URL: https://picard.musicbrainz.org
|
|||||||
Source0: https://codeload.github.com/metabrainz/picard/tar.gz/release-%{version}#/%{name}-%{version}.tar.gz
|
Source0: https://codeload.github.com/metabrainz/picard/tar.gz/release-%{version}#/%{name}-%{version}.tar.gz
|
||||||
# PATCH-FIX-SUSE picard-requirements.patch, code@bnavigator.de -- clean python requirements metadata
|
# PATCH-FIX-SUSE picard-requirements.patch, code@bnavigator.de -- clean python requirements metadata
|
||||||
Patch0: picard-requirements.patch
|
Patch0: picard-requirements.patch
|
||||||
|
# PATCH-FIX-UPSTREAM 0001-Fix-exception-when-genre-filtering-results-in.patch alarrosa@suse.com -- Fix segfault when genre filtering results in empty list
|
||||||
|
Patch1: 0001-Fix-exception-when-genre-filtering-results-in.patch
|
||||||
BuildRequires: desktop-file-utils
|
BuildRequires: desktop-file-utils
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
|
Loading…
Reference in New Issue
Block a user