libraries/pyacoustid: Updated for version 1.2.2.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
fourtysixandtwo 2022-04-30 09:59:57 +07:00 committed by Willy Sudiarto Raharjo
parent d306321789
commit 1b9b8f27e9
No known key found for this signature in database
GPG key ID: 3F617144D7238786
3 changed files with 13 additions and 12 deletions

View file

@ -4,6 +4,6 @@ This package provides Python bindings for both the fingerprinting
algorithm library, which is written in C but portable, and the Web
service, which provides fingerprint lookups.
If you want to build this for use with Python 3.x (require python3)
pass the script PYTHON3=yes, like
PYTHON3=yes ./pyacoustid.SlackBuild
If you want to build this for use with Python 2.x (require python2)
pass the script PYTHON2=yes, like
PYTHON2=yes ./pyacoustid.SlackBuild

View file

@ -2,6 +2,7 @@
# Slackware build script for pyacoustid
# Copyright 2022 fourtysixandtwo <fourtysixandtwo@sliderr.net>
# Copyright 2014-2017 Dimitris Zlatanidis Orestiada, Greece
# All rights reserved.
#
@ -25,7 +26,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=pyacoustid
VERSION=${VERSION:-1.1.5}
VERSION=${VERSION:-1.2.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@ -64,8 +65,8 @@ else
LIBDIRSUFFIX=""
fi
PYTHON=python
[ "${PYTHON3:-no}" = "yes" ] && PYTHON=python3
PYTHON=python3
[ "${PYTHON2:-no}" = "yes" ] && PYTHON=python2
set -e

View file

@ -1,10 +1,10 @@
PRGNAM="pyacoustid"
VERSION="1.1.5"
VERSION="1.2.2"
HOMEPAGE="https://github.com/sampsyo/pyacoustid"
DOWNLOAD="https://pypi.python.org/packages/da/d1/bf83cce400d5513891ea52e83fde42f17299f80a380f427d50428f817a3c/pyacoustid-1.1.5.tar.gz"
MD5SUM="036a4754343d1f9c894004c82d8309bd"
DOWNLOAD="https://files.pythonhosted.org/packages/97/e6/aeada0cc05e510d655f17a4336d5a108e4bdfa95eb7d3cc0ca5415bbe568/pyacoustid-1.2.2.tar.gz"
MD5SUM="1ae706128e7cf2cdbc9628c2ac3da579"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="audioread"
MAINTAINER="Dimitris Zlatanidis"
EMAIL="d.zlatanidis@gmail.com"
REQUIRES="audioread chromaprint"
MAINTAINER="fourtysixandtwo"
EMAIL="fourtysixandtwo@sliderr.net"