Package Details: frescobaldi-git 3.3.0.r90.g1910c87c-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: GPL
Conflicts: frescobaldi
Provides: frescobaldi
Submitter: rdoursenaud
Maintainer: Flammkuchen
Last Packager: Flammkuchen
Votes: 9
Popularity: 0.000000
First Submitted: 2011-12-04 19:22 (UTC)
Last Updated: 2024-02-05 23:38 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

pepperdas commented on 2020-02-19 07:08 (UTC) (edited on 2020-02-19 07:10 (UTC) by pepperdas)

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

prepare() {
  cd "${srcdir}/${pkgname}"
  # Provided by tango-icon-theme
  rm -rf "frescobaldi_app/icons/Tango"
  # Provided by hyphen-*
  rm -f frescobaldi_app/hyphdicts/hyph_*.dic
  rm -f frescobaldi_app/hyphdicts/README*
>>  cd linux
>>  make all
}

zoe commented on 2020-01-15 00:43 (UTC) (edited on 2020-01-15 00:45 (UTC) by zoe)

Please, add python-pyqtwebengine as dependency.

Without it, frescobaldi crashed with this error :

   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 36, in <module>
       import PyQt5.QtWebEngineWidgets
   ModuleNotFoundError: No module named 'PyQt5.QtWebEngineWidgets'

Beacon515L commented on 2020-01-05 03:19 (UTC)

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 (UTC)

@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 (UTC)

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 (UTC)

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 (UTC)

@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 (UTC) (edited on 2017-05-01 15:34 (UTC) by archmylinux)

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 (UTC) (edited on 2017-02-22 05:13 (UTC) by archmylinux)

Thanks @rdoursenaud, I did recompile "python-poppler-qt5" and now frescobaldi works fine :-)