Package Details: ly2video 0.5.0-2

Git Clone URL: https://aur.archlinux.org/ly2video.git (read-only, click to copy)
Package Base: ly2video
Description: Generate videos from Lilypond sheet music files
Upstream URL: https://github.com/aspiers/ly2video
Licenses: GPL3
Submitter: eclairevoyant
Maintainer: eclairevoyant
Last Packager: eclairevoyant
Votes: 2
Popularity: 0.67
First Submitted: 2023-05-21 02:37 (UTC)
Last Updated: 2023-06-12 08:41 (UTC)

Latest Comments

Popolon commented on 2026-04-27 08:55 (UTC)

Please, could you add in the package the following prepare():

prepare() {
        cd $pkgname-$pkgver
        sed -i 's/pipes.quote/shlex.quote/g' ly2video/cli.py
        sed -i 's/import pipes/import shlex/' ly2video/cli.py
}

Until the update of the source code is applied: https://github.com/aspiers/ly2video/issues/127

pipes has been removed from python3 base library and is replaced by subprocess now:

https://docs.python.org/3/library/pipes.html