Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] quodlibet: update to 4.5.0.
@ 2022-07-16 21:00 ologantr
  2022-07-16 21:03 ` [PR PATCH] [Updated] " ologantr
  2022-07-18  2:51 ` [PR PATCH] [Merged]: " classabbyamp
  0 siblings, 2 replies; 3+ messages in thread
From: ologantr @ 2022-07-16 21:00 UTC (permalink / raw)
  To: ml

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

There is a new 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: 5168 bytes --]

From 0165303dbdfeb5c02d605831e661c9d2caaf1279 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-gnome 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..a944bc6d7ffc 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-gnome"
 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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PR PATCH] [Updated] quodlibet: update to 4.5.0.
  2022-07-16 21:00 [PR PATCH] quodlibet: update to 4.5.0 ologantr
@ 2022-07-16 21:03 ` ologantr
  2022-07-18  2:51 ` [PR PATCH] [Merged]: " classabbyamp
  1 sibling, 0 replies; 3+ messages in thread
From: ologantr @ 2022-07-16 21:03 UTC (permalink / raw)
  To: ml

[-- 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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PR PATCH] [Merged]: quodlibet: update to 4.5.0.
  2022-07-16 21:00 [PR PATCH] quodlibet: update to 4.5.0 ologantr
  2022-07-16 21:03 ` [PR PATCH] [Updated] " ologantr
@ 2022-07-18  2:51 ` classabbyamp
  1 sibling, 0 replies; 3+ messages in thread
From: classabbyamp @ 2022-07-18  2:51 UTC (permalink / raw)
  To: ml

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

There's a merged pull request on the void-packages repository

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

Description:
Also add libsoup 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)

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-07-18  2:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-16 21:00 [PR PATCH] quodlibet: update to 4.5.0 ologantr
2022-07-16 21:03 ` [PR PATCH] [Updated] " ologantr
2022-07-18  2:51 ` [PR PATCH] [Merged]: " classabbyamp

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).