Skip to content

Commit e881dca

Browse files
beets: update to 2.5.1.
1 parent 21cc82b commit e881dca

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed
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: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Template file for 'beets'
22
pkgname=beets
3-
version=2.3.1
3+
version=2.5.1
44
revision=1
55
build_style=python3-pep517
66
# tests requires unpackaged librosa, pytest-flask
@@ -9,24 +9,19 @@ make_check_args="--ignore=test/plugins/test_autobpm.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)