audio/quodlibet: Updated for version 4.4.0.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Nick Smallbone 2022-02-04 17:19:35 +01:00 committed by Willy Sudiarto Raharjo
parent fa904e3b22
commit b25b40d63c
No known key found for this signature in database
GPG Key ID: 3F617144D7238786
3 changed files with 12 additions and 15 deletions

View File

@ -15,7 +15,7 @@ The user guide is available online at:
https://quodlibet.readthedocs.io/en/quodlibet-3.9/guide/
To build a user guide for offline use, install Sphinx and
sphinx_rtd_theme, and run:
sphinx-rtd-theme, and run:
DOCS=yes ./quodlibet.SlackBuild

View File

@ -4,7 +4,7 @@
#
# Written by K.D.Hedger kdhedger@yahoo.co.uk
# Copyright 2016-2017 Edinaldo P. Silva, Rio de Janeiro, Brazil.
# Copyright 2020 Nick Smallbone, Gothenburg, Sweden.
# Copyright 2020-2022 Nick Smallbone, Gothenburg, Sweden.
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -27,7 +27,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=quodlibet
VERSION=${VERSION:-3.9.1}
VERSION=${VERSION:-4.4.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@ -68,30 +68,27 @@ fi
set -e
SRCNAM="release"
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$SRCNAM-$VERSION.tar.gz || tar xvf $CWD/$PRGNAM-$SRCNAM-$VERSION.tar.gz
mv $PRGNAM-$SRCNAM-$VERSION $PRGNAM-$VERSION
cd $PRGNAM-$VERSION/$PRGNAM
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
python setup.py install --root=$PKG
python3 setup.py install --root=$PKG
mv $PKG/usr/share/man $PKG/usr
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a COPYING NEWS README $PKG/usr/doc/$PRGNAM-$VERSION
cp -a COPYING NEWS.rst README.rst $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
DOCS=${DOCS:-no}
if [ $DOCS = yes ] || [ $DOCS = y ] || [ $DOCS = true ]; then
python setup.py build_sphinx
python3 setup.py build_sphinx
cp -a build/sphinx $PKG/usr/doc/$PRGNAM-$VERSION/user_guide
fi

View File

@ -1,10 +1,10 @@
PRGNAM="quodlibet"
VERSION="3.9.1"
VERSION="4.4.0"
HOMEPAGE="https://github.com/quodlibet/quodlibet/"
DOWNLOAD="https://github.com/quodlibet/quodlibet/archive/release-3.9.1.tar.gz"
MD5SUM="49772b4c8f6044344b2c5c8bb4f84f9c"
DOWNLOAD="https://github.com/quodlibet/quodlibet/releases/download/release-4.4.0/quodlibet-4.4.0.tar.gz"
MD5SUM="6ea4e3e646e2fce0d3f44c4cf6932d81"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="gst-plugins-bad gst-python gst-plugins-ugly mutagen python-faulthandler feedparser"
REQUIRES="gst-plugins-bad gst-plugins-ugly gst-python mutagen feedparser python3-sgmllib3k"
MAINTAINER="Nick Smallbone"
EMAIL="nick@smallbone.se"