Github messages for voidlinux
 help / color / mirror / Atom feed
From: ologantr <ologantr@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] quodlibet: update to 4.5.0.
Date: Sat, 16 Jul 2022 23:03:48 +0200	[thread overview]
Message-ID: <20220716210348.xzKr-od2UBYZmYF9RlUWnWde_gNTZBfwTu-MP7uAucs@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-38099@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 535 bytes --]

There is an updated pull request by ologantr against master on the void-packages repository

https://github.com/ologantr/void-packages quodlibet-update
https://github.com/void-linux/void-packages/pull/38099

quodlibet: update to 4.5.0.
Also add libsoup-gnome to depends.

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture (x86_64-glibc)

A patch file from https://github.com/void-linux/void-packages/pull/38099.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-quodlibet-update-38099.patch --]
[-- Type: text/x-diff, Size: 5156 bytes --]

From 0a1938a39890c0758f6bf87aa6ec8e9068178f63 Mon Sep 17 00:00:00 2001
From: ologantr <mrphyber@protonmail.com>
Date: Sat, 16 Jul 2022 22:57:27 +0200
Subject: [PATCH] quodlibet: update to 4.5.0.

Also add libsoup to depends.
---
 .../quodlibet/patches/collections_abc.patch   | 103 ------------------
 srcpkgs/quodlibet/template                    |   8 +-
 2 files changed, 4 insertions(+), 107 deletions(-)
 delete mode 100644 srcpkgs/quodlibet/patches/collections_abc.patch

diff --git a/srcpkgs/quodlibet/patches/collections_abc.patch b/srcpkgs/quodlibet/patches/collections_abc.patch
deleted file mode 100644
index 60cf01bb04b4..000000000000
--- a/srcpkgs/quodlibet/patches/collections_abc.patch
+++ /dev/null
@@ -1,103 +0,0 @@
-Upstream: yes
-
-commit d4e05aef03fe9775de9c00f2730d89815450022e
-Author: LuK1337 <priv.luk@gmail.com>
-Date:   Sat Sep 11 11:46:46 2021 +0200
-
-    Finish up collections -> collections.abc migration
-    
-    This lets us start QuodLibet on Python 3.10 ^.^
-
-diff --git a/quodlibet/packages/raven/context.py b/quodlibet/packages/raven/context.py
-index 272259a3b..2a3eab4a7 100644
---- a/quodlibet/packages/raven/context.py
-+++ b/quodlibet/packages/raven/context.py
-@@ -7,7 +7,10 @@ raven.context
- """
- from __future__ import absolute_import
- 
--from collections import Mapping, Iterable
-+try:
-+    from collections import abc
-+except ImportError:
-+    import collections as abc  # type: ignore
- from threading import local
- from weakref import ref as weakref
- 
-@@ -30,7 +33,7 @@ def get_active_contexts():
-         return []
- 
- 
--class Context(local, Mapping, Iterable):
-+class Context(local, abc.Mapping, abc.Iterable):
-     """
-     Stores context until cleared.
- 
-diff --git a/quodlibet/player/gstbe/util.py b/quodlibet/player/gstbe/util.py
-index 2611f8120..7439b716a 100644
---- a/quodlibet/player/gstbe/util.py
-+++ b/quodlibet/player/gstbe/util.py
-@@ -6,7 +6,10 @@
- # the Free Software Foundation; either version 2 of the License, or
- # (at your option) any later version.
- 
--import collections
-+try:
-+    from collections import abc
-+except ImportError:
-+    import collections as abc  # type: ignore
- import subprocess
- from enum import Enum
- from typing import Iterable, Tuple
-@@ -183,7 +186,7 @@ def GStreamerSink(pipeline_desc):
-     return pipe, pipeline_desc
- 
- 
--class TagListWrapper(collections.Mapping):
-+class TagListWrapper(abc.Mapping):
-     def __init__(self, taglist, merge=False):
-         self._list = taglist
-         self._merge = merge
-diff --git a/quodlibet/util/collection.py b/quodlibet/util/collection.py
-index b726f98e9..83646b8af 100644
---- a/quodlibet/util/collection.py
-+++ b/quodlibet/util/collection.py
-@@ -24,7 +24,10 @@ from quodlibet.formats._audio import (TAG_TO_SORT, NUMERIC_ZERO_DEFAULT,
-                                       AudioFile)
- from quodlibet.formats._audio import PEOPLE as _PEOPLE
- from quodlibet.pattern import Pattern
--from collections import Iterable
-+try:
-+    from collections import abc
-+except ImportError:
-+    import collections as abc  # type: ignore
- 
- from quodlibet.util import is_windows
- from quodlibet.util.path import escape_filename, unescape_filename, limit_path
-@@ -332,7 +335,7 @@ class Album(Collection):
- 
- @hashable
- @total_ordering
--class Playlist(Collection, Iterable):
-+class Playlist(Collection, abc.Iterable):
-     """A Playlist is a `Collection` that has list-like features
-     Songs can appear more than once.
-     """
-diff --git a/quodlibet/util/collections.py b/quodlibet/util/collections.py
-index ba9d5c1a4..f0b83b5e9 100644
---- a/quodlibet/util/collections.py
-+++ b/quodlibet/util/collections.py
-@@ -9,7 +9,12 @@
- 
- from __future__ import absolute_import
- 
--from collections import MutableSequence, defaultdict
-+try:
-+    from collections.abc import MutableSequence
-+except ImportError:
-+    from collections import MutableSequence
-+from collections import defaultdict
-+from typing import Any
- 
- from .misc import total_ordering
- 
diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index e37fb6dd9057..04d59f8f20d6 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -1,16 +1,16 @@
 # Template file for 'quodlibet'
 pkgname=quodlibet
-version=4.4.0
-revision=3
+version=4.5.0
+revision=1
 build_style=python3-module
 hostmakedepends="intltool python3-devel"
 depends="desktop-file-utils gst-plugins-bad1 gst-plugins-base1 gst-plugins-good1
  gst-plugins-ugly1 gtk+3 hicolor-icon-theme python3-dbus python3-feedparser
- python3-gobject python3-inotify python3-mutagen"
+ python3-gobject python3-inotify python3-mutagen libsoup"
 short_desc="Music Library/Editor/Player"
 maintainer="John <me@johnnynator.dev>"
 license="GPL-2.0-or-later"
 homepage="https://quodlibet.readthedocs.io/en/latest/"
 distfiles="https://github.com/quodlibet/quodlibet/releases/download/release-${version}/quodlibet-${version}.tar.gz"
-checksum=a03318d2767e4959551763d0a87fad977387af712608fe572714176a24bbf367
+checksum=301615829f652cbafedb35539237162a58bc1ee71a567d249f7789d9268245bc
 make_check=no  # requires X server

  reply	other threads:[~2022-07-16 21:03 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-16 21:00 [PR PATCH] " ologantr
2022-07-16 21:03 ` ologantr [this message]
2022-07-18  2:51 ` [PR PATCH] [Merged]: " classabbyamp

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220716210348.xzKr-od2UBYZmYF9RlUWnWde_gNTZBfwTu-MP7uAucs@z \
    --to=ologantr@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).