Search Criteria
Package Details: frescobaldi-git 3.1.2.r46.gc85376f9-1
Git Clone URL: | https://aur.archlinux.org/frescobaldi-git.git (read-only, click to copy) |
---|---|
Package Base: | frescobaldi-git |
Description: | A LilyPond sheet music text editor. |
Upstream URL: | http://www.frescobaldi.org/ |
Keywords: | LilyPond |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | rdoursenaud |
Maintainer: | rdoursenaud |
Last Packager: | rdoursenaud |
Votes: | 8 |
Popularity: | 0.000000 |
First Submitted: | 2011-12-04 19:22 |
Last Updated: | 2021-01-06 11:24 |
Dependencies (27)
- hicolor-icon-theme (hicolor-icon-theme-git)
- hyphen
- poppler (poppler-minimal, poppler-lcdfilter, poppler-git, poppler-lcd)
- python-poppler-qt5 (python-poppler-qt5-git)
- qpageview (qpageview-git)
- tango-icon-theme
- python-ly>=0.9.5 (python-ly-git)
- python>=3.3 (python-dbg)
- python-pyqt5>=5.9
- python-pyqt5-sip>=5.9
- python-pyqt5-webengine>=5.9
- qt5-base>=5.9 (qt5-base-git, qt5-base-fractional-fix, qt5-base-headless)
- qt5-svg>=5.9 (qt5-svg-git)
- qt5-webkit>=5.9 (qt5-webkit-print, qt5-webkit-git)
- git (git-git) (make)
- hyphen-de (optional) – German hyphenation rules
- hyphen-en (optional) – English hyphenation rules
- hyphen-es (optional) – Spanish hyphenation rules
- hyphen-fr (optional) – French hyphenation rules
- hyphen-hu (optional) – Hungarian hyphenation rules
- hyphen-it (optional) – Italian hyphenation rules
- hyphen-nl (optional) – Dutch hyphenation rules
- hyphen-ro (optional) – Romanian hyphenation rules
- lilypond (lilypond-git) (optional) – Music engraving (recommended)
- portmidi (optional) – MIDI playback (fallback engine)
- python-pycups (optional) – Printing to a local CUPS server
- python-pygame (python-pygame-git) (optional) – MIDI playback (alternate engine)
Latest Comments
1 2 Next › Last »
pepperdas commented on 2020-02-19 07:08
I was only able to get this to work by installing
python-ly-git
instead of python-ly and also adding the following lines to the pkgbuild
zoe commented on 2020-01-15 00:43
Please, add python-pyqtwebengine as dependency.
Without it, frescobaldi crashed with this error :
Beacon515L commented on 2020-01-05 03:19
Possible missing dependency: python-pyqtwebengine.
Traceback (most recent call last): File "/usr/bin/frescobaldi", line 24, in <module> import main File "/usr/lib/python3.8/site-packages/frescobaldi_app/main.py", line 34, in <module> import app # Instantiate global signals etc File "/usr/lib/python3.8/site-packages/frescobaldi_app/app.py", line 34, in <module> import PyQt5.QtWebEngineWidgets ModuleNotFoundError: No module named 'PyQt5.QtWebEngineWidgets'
Installing the package resolves this.
rdoursenaud commented on 2017-06-09 08:22
@archmylinux Yes, I'm getting the same error. Might be worth reporting upstream: https://github.com/wbsoft/frescobaldi/issues
archmylinux commented on 2017-06-08 15:25
Can anyone confirm this issue ?
Nobody I know uses development Frescobaldi let alone on Arch Linux.
Starting Frescobaldi from the command line I get :
Traceback (most recent call last):
File "/usr/bin/frescobaldi", line 11, in <module>
main.main() # Parse command line, create windows etc
File "/usr/lib/python3.6/site-packages/frescobaldi_app/main.py", line 221, in main
import mainwindow # contains MainWindow class
File "/usr/lib/python3.6/site-packages/frescobaldi_app/mainwindow.py", line 48, in <module>
import view
File "/usr/lib/python3.6/site-packages/frescobaldi_app/view.py", line 41, in <module>
import open_file_at_cursor
File "/usr/lib/python3.6/site-packages/frescobaldi_app/open_file_at_cursor.py", line 36, in <module>
incl_regex = re.compile('(\\include\s*\")(.*)(\")')
File "/usr/lib/python3.6/re.py", line 233, in compile
return _compile(pattern, flags)
File "/usr/lib/python3.6/re.py", line 301, in _compile
p = sre_compile.compile(pattern, flags)
File "/usr/lib/python3.6/sre_compile.py", line 562, in compile
p = sre_parse.parse(p, flags)
File "/usr/lib/python3.6/sre_parse.py", line 856, in parse
p = _parse_sub(source, pattern, flags & SRE_FLAG_VERBOSE, False)
File "/usr/lib/python3.6/sre_parse.py", line 415, in _parse_sub
itemsappend(_parse(source, state, verbose))
File "/usr/lib/python3.6/sre_parse.py", line 763, in _parse
p = _parse_sub(source, state, sub_verbose)
File "/usr/lib/python3.6/sre_parse.py", line 415, in _parse_sub
itemsappend(_parse(source, state, verbose))
File "/usr/lib/python3.6/sre_parse.py", line 501, in _parse
code = _escape(source, this, state)
File "/usr/lib/python3.6/sre_parse.py", line 401, in _escape
raise source.error("bad escape %s" % escape, len(escape))
sre_constants.error: bad escape \i at position 1
archmylinux commented on 2017-05-05 00:27
Thank you so much @rdoursenaud. I had tried git: file: ssh: but not git+file:… I obviously should have rtfm.
rdoursenaud commented on 2017-05-01 21:38
@archmylinux You're missing 'file://'. Try 'git+file:///absolute/path/to/frescobaldi'. See 'man git clone' & https://wiki.archlinux.org/index.php/VCS_package_guidelines for more informations ;)
archmylinux commented on 2017-05-01 15:16
Slightly off topic: since the frescobaldi repo is somewhat big (~100M), I am trying to make this PKGBUILD file to clone from my local frescobaldi repository clone which lets assume is up to date with upstream.
I tried changing everything I could from this line :
source=("${pkgname}"::'git://github.com/wbsoft/frescobaldi.git')
to:
source=("${pkgname}"::'git:///path/to/fresco-git')
source=("${pkgname}"::'///path/to/fresco-git')
…to no avail.
What I am my missing here‽
Its probably more of a general PKGBUILD question but I am not sure.
archmylinux commented on 2017-02-20 15:59
Thanks @rdoursenaud, I did recompile "python-poppler-qt5" and now frescobaldi works fine :-)
rdoursenaud commented on 2017-02-20 14:29
@archmylinux I guess it has something to do with a poppler update. Try recompiling python-poppler-qt5.