Package Details: openlp 3.1.1-3

Git Clone URL: https://aur.archlinux.org/openlp.git (read-only, click to copy)
Package Base: openlp
Description: Church presentation software.
Upstream URL: http://openlp.org/
Keywords: bible church pdf presentation projection song video
Licenses: GPLv2
Submitter: floft
Maintainer: rprice
Last Packager: rprice
Votes: 17
Popularity: 0.003390
First Submitted: 2015-08-11 00:27 (UTC)
Last Updated: 2024-05-01 05:35 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 Next › Last »

thebiblelover7 commented on 2021-12-14 08:06 (UTC)

@ClawOfLight Sorry for the misunderstanding. Do you know if we can at least unbind the python version? Or is it still not supported?

ClawOfLight commented on 2021-12-14 07:56 (UTC) (edited on 2021-12-14 07:57 (UTC) by ClawOfLight)

2.4.6 is the latest stable version, everything else has been alpha or beta. The next stable will me a major 3.x release :)

Please don't flag out of date for unstable releases!

joelchrono12 commented on 2021-12-14 01:16 (UTC)

This package requires to be updated, my system wants to update python3 but is unable to do so because OpenLP requires Python's version to be under 3.10.

Also, there are newer versions available since 2.4.6, could it be possible for this package to be updated?

game commented on 2021-09-08 16:52 (UTC) (edited on 2021-09-08 17:24 (UTC) by game)

I wasn't able to show PDFs after installing mupdf. Only after some research I found out that I need mupdf-tools instead. Can you please update the dependencies? btw: openlp talks about mudraw, but that's outdated and has been moved into the command mutool draw

edit: mupdf is not needed for presenting PDFs

edit: ghostscript can also be used as a PDF renderer

macxcool commented on 2021-03-19 15:12 (UTC)

@thelinuxguy 2.9.2 is a beta release of the development version, not a stable release. Can you please unflag it. @sweenu Please don't flag this 'out-of-date' for development releases.

macxcool commented on 2021-02-01 21:21 (UTC)

@sweenu The 'new' versions are not releases. Please don't mark this out-of-date until the new 3.0 release is done.

luspi commented on 2020-12-11 18:24 (UTC)

Build fails as python is now at version 3.9. Replacing the references to python3.8 to python3.9 fixes it.

hashstat commented on 2020-09-12 02:27 (UTC)

It looks like vlc is required, not optional. openlp crashed without it. The stack trace referenced libvlc.

macxcool commented on 2020-06-07 00:53 (UTC)

Build is failing with:

patching file setup.py Hunk #1 FAILED at 100. 1 out of 1 hunk FAILED -- saving rejects to file setup.py.rej

celilo commented on 2019-11-26 07:55 (UTC) (edited on 2019-11-26 08:01 (UTC) by celilo)

pkgbuild fails deleting the test directories.
____
Copying OpenLP.egg-info to /home/kurtm/.cache/yay/openlp/pkg/openlp/usr/lib/python3.8/site-packages/OpenLP-2.4.6-py3.8.egg-info
running install_scripts
creating /home/kurtm/.cache/yay/openlp/pkg/openlp/usr/bin
copying build/scripts-3.8/openlp.py -> /home/kurtm/.cache/yay/openlp/pkg/openlp/usr/bin
changing mode of /home/kurtm/.cache/yay/openlp/pkg/openlp/usr/bin/openlp.py to 755
/home/kurtm/.cache/yay/openlp/PKGBUILD: line 35: /home/kurtm/.cache/yay/openlp/pkg/openlp/usr/lib/python3.7/site-packages/openlp/.version: No such file or directory
==> ERROR: A failure occurred in package().
Aborting...
Error making: openlp
______

Modify the pkgbuild as follows to automatically use the correct python version in the path to the test directory.
1) Add local variable "site_packages" to store the path to the current python version
2) Replace the hardcoded paths with the variable.
______
package() {
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
cd "${srcdir}/OpenLP-$pkgver"
python setup.py install --root="${pkgdir}/" --optimize=1
mv "${pkgdir}/usr/bin/openlp"{.py,}

#remove tests
#rm -rf "${pkgdir}/usr/lib/python3.7/site-packages/tests"
rm -rf "${pkgdir}${site_packages}/tests"

#echo "${pkgver}" > "${pkgdir}/usr/lib/python3.7/site-packages/openlp/.version"
echo "${pkgver}" > "${pkgdir}${site_packages}/openlp/.version"