audio/puddletag: Update dependencies

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Jeremy Hansen 2024-02-23 15:56:20 -08:00 committed by Willy Sudiarto Raharjo
parent 097e180b84
commit 1ec812eabe
No known key found for this signature in database
GPG Key ID: 3F617144D7238786
3 changed files with 11 additions and 4 deletions

View File

@ -4,5 +4,5 @@ spreadsheet-like layout so that all the tags you want to edit by hand
are visible and easily editable.
Optional dependencies:
chromaprint - enables AcoustID support for music tagging
pyacoustid - enables AcoustID support for music tagging
quodlibet - supports importing Quod Libet music libraries

View File

@ -4,7 +4,7 @@
# Copyright 2012-2014 Bill Kirkpatrick, Cedar Lane, TX USA <bkirkp@gmail.com>
# Copyright 2016-2017 Philip van der Hoeven, Almere, The Netherlands
# Copyright 2020-2023 Jeremy Hansen <jebrhansen+SBo -at- gmail.com>
# Copyright 2020-2024 Jeremy Hansen <jebrhansen+SBo -at- gmail.com>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -28,7 +28,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=puddletag
VERSION=${VERSION:-2.2.0}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@ -78,6 +78,13 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
# Remove hardcoded required module versions
sed -i 's/==.*//' requirements.txt
# Remove incorrect chromaprint requirement
# https://github.com/puddletag/puddletag/issues/854
sed -i '/chromaprint/d' requirements.txt
python3 setup.py install --root=$PKG
# Install plugins globally

View File

@ -5,6 +5,6 @@ DOWNLOAD="https://github.com/puddletag/puddletag/archive/2.2.0/puddletag-2.2.0.t
MD5SUM="a4dab9b990bb1faa79827c3940e586f1"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="configobj mutagen"
REQUIRES="configobj mutagen python3-lxml audioread"
MAINTAINER="Jeremy Hansen"
EMAIL="jebrhansen+SBo@gmail.com"