summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLudwig Kürzinger2022-11-18 20:45:30 +0100
committerLudwig Kürzinger2022-11-18 20:45:30 +0100
commit4a0fb2a34b0f029ec3790eaa311fb7cb00ea6c0a (patch)
tree360290aa1a0a7063666901e45d5bf5c7a83056e2
parent51847a518f6dabea6bc2077d883eadebd6a646d6 (diff)
downloadaur-python-ctc-segmentation-git.tar.gz
Update 2022-11-18
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 26ef624a10ba..7ac2d8ea5758 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = python-ctc-segmentation-git
pkgdesc = Determine and align utterance segments within audio files using CTC
- pkgver = 1.7.1
+ pkgver = 1.7.4
pkgrel = 1
url = https://github.com/lumaku/ctc-segmentation
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index b57690986ae6..219e859867cf 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
# Maintainer: Lumaku <lumaku@mailbox.org>
pkgname=python-ctc-segmentation-git
-pkgver=1.7.1
+pkgver=1.7.4
pkgrel=1
pkgdesc='Determine and align utterance segments within audio files using CTC'
arch=('any')
@@ -25,7 +25,7 @@ pkgver() {
build() {
cd "${pkgname}"
- cythonize -3 ctc_segmentation/ctc_segmentation_dyn.pyx
+ cythonize -3 ctc_segmentation/ctc_segmentation_dyn.pyx 2>&1 > /dev/null # discarding the ouptut prevents any stdout leaking to pkgver()
python setup.py build 2>&1
# echo " --> Warnings of a deprected numpy API can be safely ignored."
}