summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Arndt2019-11-24 20:12:54 +0100
committerChristopher Arndt2019-11-24 20:12:54 +0100
commit604cd8b1f944e3f7582efa36c9da4f8f4f64c7ee (patch)
treed20e9cd0f78473e9f0f74fdfe50982f6a04f8586
parentf4478ee95866d69b5a016651e4c48d8028fc2f38 (diff)
downloadaur-604cd8b1f944e3f7582efa36c9da4f8f4f64c7ee.tar.gz
* Increase revision to trigger package rebuild for Python 3.8
* Fix byte code compilation error due to extraneous backslash at end of file
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD8
2 files changed, 8 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3d504b983c9d..bc33cb81475a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = linux-show-player
pkgdesc = Sound cue playback software designed for live musical shows and theatre plays
pkgver = 0.5.1_py3.7
- pkgrel = 1
+ pkgrel = 2
url = http://linux-show-player.sourceforge.net/
arch = any
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index 5af79a0f3f06..f38b1896325a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=linux-show-player
pkgver=0.5.1_py3.7
-pkgrel=1
+pkgrel=2
pkgdesc="Sound cue playback software designed for live musical shows and theatre plays"
url="http://linux-show-player.sourceforge.net/"
arch=('any')
@@ -19,6 +19,12 @@ source=("https://github.com/FrancescoCeruti/${pkgname}/archive/v${pkgver/_/-}.ta
sha256sums=('2a9bd80fa45c508c9c19d7edd430199290c9096f74e520e766f99a8223297946')
+prepare() {
+ cd "${srcdir}/${pkgname}-${pkgver/_/-}"
+
+ sed -i -e 's|\\$||' lisp/ui/ui_utils.py
+}
+
build() {
cd "${srcdir}/${pkgname}-${pkgver/_/-}"