Skip to content

Commit ae5b014

Browse files
beets: update to 2.5.1.
1 parent 5f4b093 commit ae5b014

File tree

3 files changed

+17
-23
lines changed

3 files changed

+17
-23
lines changed

srcpkgs/beets/patches/3eb68ef830447d91b10a928823edb3c50cf73f48.patch

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,3 @@ index 60e2014485..fe980bb5cf 100644
5252
+ columns, _ = shutil.get_terminal_size(fallback=(0, 0))
5353
+ return columns if columns else config["ui"]["terminal_width"].get(int)
5454

55-
56-
def split_into_lines(string, width_tuple):
57-
--- a/beets/ui/__init__.py
58-
+++ b/beets/ui/__init__.py
59-
@@ -27,6 +27,7 @@
60-
import textwrap
61-
import traceback
62-
from difflib import SequenceMatcher
63-
+from functools import cache
64-
from typing import Any, Callable
65-
66-
import confuse
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
--- a/beets/util/__init__.py
2+
+++ b/beets/util/__init__.py
3+
@@ -610,6 +610,10 @@ def reflink(
4+
Otherwise, errors are re-raised as FilesystemError with an explanation.
5+
"""
6+
+ # Convert Path-like objects to bytes
7+
+ path = syspath(path)
8+
+ dest = syspath(dest)
9+
+
10+
if samefile(path, dest):
11+
return

srcpkgs/beets/template

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,27 @@
11
# Template file for 'beets'
22
pkgname=beets
3-
version=2.3.1
4-
revision=3
3+
version=2.5.1
4+
revision=1
55
build_style=python3-pep517
66
# tests requires unpackaged librosa, pytest-flask
77
make_check_args="--ignore=test/plugins/test_autobpm.py
88
--ignore=test/plugins/test_aura.py"
99
hostmakedepends="python3-poetry-core python3-Sphinx"
1010
depends="python3-lap python3-musicbrainzngs python3-Unidecode python3-yaml
1111
python3-jellyfish python3-mediafile python3-confuse python3-platformdirs
12-
python3-numpy"
12+
python3-numpy python3-typing_extensions"
1313
checkdepends="$depends python3-BeautifulSoup4 python3-Flask python3-mock
1414
python3-pylast python3-pytest python3-pytest-cov python3-mpd2 python3-xdg
1515
python3-responses python3-requests-oauthlib python3-reflink python3-rarfile
16-
python3-discogs_client python3-py7zr python3-typing_extensions
17-
python3-dateutil python3-gobject gstreamer1 ffmpeg"
16+
python3-discogs_client python3-py7zr python3-dateutil python3-gobject
17+
gstreamer1 ffmpeg"
1818
short_desc="Media library management system for obsessive-compulsive music geeks"
1919
maintainer="Joel Beckmeyer <[email protected]>"
2020
license="MIT"
2121
homepage="https://beets.io"
2222
changelog="https://raw.githubusercontent.com/beetbox/beets/master/docs/changelog.rst"
2323
distfiles="${PYPI_SITE}/b/${pkgname}/${pkgname}-${version}.tar.gz"
24-
checksum=87598721a14af89a06d5ad3d9e8138f8ac112510271a981a90b840ed784d5712
25-
26-
pre_check() {
27-
# https://github.com/beetbox/beets/issues/5770
28-
touch test/rsrc/full.mp3
29-
}
24+
checksum=7feefd70804fbcf26516089f472bac34c6a77e8e20ec539252fd1bafc91de9a2
3025

3126
post_install() {
3227
vman man/beet.1

0 commit comments

Comments
 (0)