Package Details: python-lookatme-ueberzug 1.1.0-1

Git Clone URL: https://aur.archlinux.org/python-lookatme-ueberzug.git (read-only, click to copy)
Package Base: python-lookatme-ueberzug
Description: Provides image rendering support for python-lookatme
Upstream URL: https://github.com/d0c-s4vage/lookatme.contrib.image_ueberzug
Licenses: MIT
Submitter: KarlWithK
Maintainer: KarlWithK
Last Packager: KarlWithK
Votes: 0
Popularity: 0.000000
First Submitted: 2021-03-28 05:27 (UTC)
Last Updated: 2021-03-28 05:27 (UTC)

Dependencies (6)

Required by (3)

Sources (1)

Latest Comments

mnzaki commented on 2024-11-22 14:06 (UTC) (edited on 2024-11-22 14:09 (UTC) by mnzaki)

There's a missing build step to replace the {{VERSION}} string in setup.py (as done in the .travis.yml)

Currently setup.py fails with Invalid version: '{{VERSION}}' but this change to PKGCONFIG resolves the issue.

--- PKGBUILD    2024-11-22 16:08:21.779161280 +0200
+++ PKGBUILD.fix        2024-11-22 16:08:19.562437520 +0200
@@ -15,6 +15,7 @@

 build() {
   cd "$srcdir/$_pkgname-${pkgver}"
+  find . -type f -exec sed -i "s/{{VERSION}}/${pkgver}/g" {} \;
   python setup.py build
 }

Also same issue with the python-lookatme-render packages