* bug#42301: Build of GNU Solfege fails [not found] <b5beef52-b072-ff3a-8a97-2e462a402c65.ref@eastlincoln.net> @ 2020-07-09 17:43 ` Tim Magee 2020-08-07 18:03 ` bug#42301: [PATCH] gnu: solfage: fix build Michael Rohleder 2021-07-05 10:47 ` bug#42301: Build of GNU Solfege fails zimoun 0 siblings, 2 replies; 10+ messages in thread From: Tim Magee @ 2020-07-09 17:43 UTC (permalink / raw) To: 42301 GNU Solfege 3.22.2 refuses to build. Here is what I believe is the relevant part of the log file: Converting to PNG...LC_ALL=C makeinfo -I topdocs --no-split --no-headers --output FAQ topdocs/FAQ.texi utf8 "\xF6" does not map to Unicode at /gnu/store/w8k9hcigvhzrlrblv8lgqj77sm3833rs-texinfo-6.7/share/texinfo/Texinfo/ParserNonXS.pm line 1796, <FH> line 169. Malformed UTF-8 character: \xf6\x20\x41\x63 (unexpected non-continuation byte 0x20, immediately after start byte 0xf6; need 4 bytes, got 1) in pattern match (m//) at /gnu/store/w8k9hcigvhzrlrblv8lgqj77sm3833rs-texinfo-6.7/share/texinfo/Texinfo/ParserNonXS.pm line 3364. Malformed UTF-8 character (fatal) at /gnu/store/w8k9hcigvhzrlrblv8lgqj77sm3833rs-texinfo-6.7/share/texinfo/Texinfo/ParserNonXS.pm line 3364. make[1]: *** [Makefile:83: README] Error 25 make[1]: *** Waiting for unfinished jobs.... Deleting `inverting-intervals.eps'... Layout output to `inverting-intervals-1.eps'... Writing inverting-intervals-systems.texi... Writing inverting-intervals-systems.tex... Writing inverting-intervals-systems.count... Success: compilation successfully completed make[1]: Leaving directory '/tmp/guix-build-solfege-3.22.2.drv-0/solfege-3.22.2' make: *** [Makefile:74: genfiles] Error 2 command "make" "-j" "4" failed with status 2 ^ permalink raw reply [flat|nested] 10+ messages in thread
* bug#42301: [PATCH] gnu: solfage: fix build. 2020-07-09 17:43 ` bug#42301: Build of GNU Solfege fails Tim Magee @ 2020-08-07 18:03 ` Michael Rohleder 2020-08-09 11:08 ` Nicolas Goaziou 2021-07-05 10:47 ` bug#42301: Build of GNU Solfege fails zimoun 1 sibling, 1 reply; 10+ messages in thread From: Michael Rohleder @ 2020-08-07 18:03 UTC (permalink / raw) To: 42301 * gnu/packages/music.scm (solfage): fix build (http://issues.guix.gnu.org/42301). --- gnu/packages/music.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index db2f1ff8d6..af65c40193 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -1361,6 +1361,9 @@ re-sequencer LV2 plugin.") (substitute* '("solfege/parsetree.py" "solfege/presetup.py") (("#!/usr/bin/python") (string-append "#!" (which "python")))) + ;; fix build, see https://issues.guix.gnu.org/42301 + (with-fluids ((%default-port-encoding "ISO-8859-1")) + (substitute* '("README") (("Malm.") "Malmoe"))) #t)) (add-before 'build 'add-sitedirs ;; .pth files are not automatically interpreted unless the -- 2.28.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* bug#42301: [PATCH] gnu: solfage: fix build. 2020-08-07 18:03 ` bug#42301: [PATCH] gnu: solfage: fix build Michael Rohleder @ 2020-08-09 11:08 ` Nicolas Goaziou 2020-08-09 16:36 ` Michael Rohleder 0 siblings, 1 reply; 10+ messages in thread From: Nicolas Goaziou @ 2020-08-09 11:08 UTC (permalink / raw) To: Michael Rohleder; +Cc: 42301 Hello, Michael Rohleder <mike@rohleder.de> writes: > * gnu/packages/music.scm (solfage): fix build (http://issues.guix.gnu.org/42301). > --- > gnu/packages/music.scm | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm > index db2f1ff8d6..af65c40193 100644 > --- a/gnu/packages/music.scm > +++ b/gnu/packages/music.scm > @@ -1361,6 +1361,9 @@ re-sequencer LV2 plugin.") > (substitute* '("solfege/parsetree.py" > "solfege/presetup.py") > (("#!/usr/bin/python") (string-append "#!" (which "python")))) > + ;; fix build, see https://issues.guix.gnu.org/42301 > + (with-fluids ((%default-port-encoding "ISO-8859-1")) > + (substitute* '("README") (("Malm.") "Malmoe"))) Thank you. Unfortunately, the build fails later on with the following unrelated message, probably related to the latest Lilypond release: fatal error: Uninitialized variable `write-performances-midis' in module (lily) Besides, you are adding this snippet to an unrelated phase, about Python wrapping. BTW, would it make sense to provide 3.23.4 release instead? It is a development version, but development has stalled anyway. Also, it relies on Python 3 intead of Python 2. I tried to update it with the following source: (origin (method url-fetch) (uri (string-append "http://alpha.gnu.org/gnu/solfege/solfege-" version ".tar.gz")) (sha256 (base32 "0sc17vf4xz6gy0s0z9ghi68yskikdmyb4gdaxx6imrm40734k8mp"))) but it fails in the same way. WDYT? Regards, -- Nicolas Goaziou ^ permalink raw reply [flat|nested] 10+ messages in thread
* bug#42301: [PATCH] gnu: solfage: fix build. 2020-08-09 11:08 ` Nicolas Goaziou @ 2020-08-09 16:36 ` Michael Rohleder 2020-08-11 17:09 ` Nicolas Goaziou 0 siblings, 1 reply; 10+ messages in thread From: Michael Rohleder @ 2020-08-09 16:36 UTC (permalink / raw) To: Nicolas Goaziou; +Cc: 42301 [-- Attachment #1.1: Type: text/plain, Size: 565 bytes --] Hi! Nicolas Goaziou <mail@nicolasgoaziou.fr> writes: > Thank you. Unfortunately, the build fails later on with the following > unrelated message, probably related to the latest Lilypond release: > > fatal error: Uninitialized variable `write-performances-midis' in module (lily) > This is interesting, I can't reproduce this, it builds (and runs) fine here. Are you using a newer version of lilypond? (here, its 2.20.0 from current master) > Besides, you are adding this snippet to an unrelated phase, about Python > wrapping. Added a phase 'patch-readme: [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #1.2: [PATCH] gnu: solfege: fix build. --] [-- Type: text/x-patch, Size: 1218 bytes --] From 3e6a637fcacb990291fb8a8b7e03e18be15bd644 Mon Sep 17 00:00:00 2001 From: Michael Rohleder <mike@rohleder.de> Date: Sun, 9 Aug 2020 18:26:25 +0200 Subject: [PATCH] gnu: solfege: fix build. * gnu/packages/music.scm (solfege): fix build (http://issues.guix.gnu.org/42301). --- gnu/packages/music.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index db2f1ff8d6..f788d93b65 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -1362,6 +1362,12 @@ re-sequencer LV2 plugin.") "solfege/presetup.py") (("#!/usr/bin/python") (string-append "#!" (which "python")))) #t)) + ;; fix build, see https://issues.guix.gnu.org/42301 + (add-before 'build 'patch-readme + (lambda _ + (with-fluids ((%default-port-encoding "ISO-8859-1")) + (substitute* '("README") (("Malm.") "Malmoe"))) + #t)) (add-before 'build 'add-sitedirs ;; .pth files are not automatically interpreted unless the ;; directories containing them are added as "sites". The directories -- 2.28.0 [-- Attachment #1.3: Type: text/plain, Size: 841 bytes --] > > BTW, would it make sense to provide 3.23.4 release instead? It is > a development version, but development has stalled anyway. Also, it > relies on Python 3 intead of Python 2. > > I tried to update it with the following source: > > (origin > (method url-fetch) > (uri (string-append "http://alpha.gnu.org/gnu/solfege/solfege-" > version ".tar.gz")) > (sha256 > (base32 "0sc17vf4xz6gy0s0z9ghi68yskikdmyb4gdaxx6imrm40734k8mp"))) > > but it fails in the same way. > > WDYT? idk. I haven't tried building it, because I think, we should first solve that "fatal error: Uninitialized variable `write-performances-midis' in module (lily)" error you get and I cant reproduce... Regards, -- Ein Hamsterrad sieht von innen aus wie eine Karriereleiter. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 487 bytes --] ^ permalink raw reply related [flat|nested] 10+ messages in thread
* bug#42301: [PATCH] gnu: solfage: fix build. 2020-08-09 16:36 ` Michael Rohleder @ 2020-08-11 17:09 ` Nicolas Goaziou 0 siblings, 0 replies; 10+ messages in thread From: Nicolas Goaziou @ 2020-08-11 17:09 UTC (permalink / raw) To: Michael Rohleder; +Cc: 42301 Hello, Michael Rohleder <mike@rohleder.de> writes: > This is interesting, I can't reproduce this, it builds (and runs) fine here. > Are you using a newer version of lilypond? (here, its 2.20.0 from > current master) I am using ./pre-inst-env guix, so latest version of lilypond in the repository. I applied your patch on top of 145484e8f5d89911f5f905c9fe604e3cbfd1e434. I'm pasting here the short build log, from configure phase: --8<---------------cut here---------------start------------->8--- starting phase `configure' source directory: "/tmp/guix-build-solfege-3.22.2.drv-0/solfege-3.22.2" (relative from build: ".") build directory: "/tmp/guix-build-solfege-3.22.2.drv-0/solfege-3.22.2" configure flags: ("CONFIG_SHELL=/gnu/store/pwcp239kjf7lnj5i4lkdzcfcxwcfyk72-bash-minimal-5.0.16/bin/bash" "SHELL=/gnu/store/pwcp239kjf7lnj5i4lkdzcfcxwcfyk72-bash-minimal-5.0.16/bin/bash" "--prefix=/gnu/store/20v7anwhwhfnp9g5flf77jbj74znarc1-solfege-3.22.2" "--enable-fast-install" "--build=x86_64-unknown-linux-gnu") configure: WARNING: unrecognized options: --enable-fast-install checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for a Python interpreter with version >= 2.5... python checking for python... /gnu/store/ln0jd0k32xbr2jyha1sdaynllkazgmsi-python2-2.7.17/bin/python checking for python version... 2.7 checking for python platform... linux2 checking for python script directory... ${prefix}/lib/python2.7/site-packages checking for python extension module directory... ${exec_prefix}/lib/python2.7/site-packages checking how to run the C preprocessor... gcc -E checking for headers required to compile python extensions... found checking for a BSD-compatible install... /gnu/store/57xj5gcy1jbl9ai2lnrqnpr0dald9i65-coreutils-8.32/bin/install -c checking whether make sets $(MAKE)... no checking for swig... no checking for lilypond... /gnu/store/q3msgwcg2fl8jf7cp1d7n59iiyywc9n9-lilypond-2.20.0/bin/lilypond checking for bzr... notfound checking for gs... /gnu/store/00myzm2c6sdh324w54syzb9m23v6h6nj-ghostscript-9.52/bin/gs checking for xgettext... /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/xgettext checking for msgfmt... /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt checking for msgmerge... /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgmerge checking for msggrep... /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msggrep checking for makeinfo... /gnu/store/w8k9hcigvhzrlrblv8lgqj77sm3833rs-texinfo-6.7/bin/makeinfo checking for sed... /gnu/store/ishk7fswcs4gkwcp8mh788z4mvvl9bxh-sed-4.8/bin/sed checking for cat... /gnu/store/57xj5gcy1jbl9ai2lnrqnpr0dald9i65-coreutils-8.32/bin/cat checking for pkg-config... /gnu/store/krpyb0zi700dcrg9cc8932w4v0qivdg9-pkg-config-0.29.2/bin/pkg-config checking pkg-config is at least version 0.17.0... yes checking for PYGTK... yes checking for xml2po... no checking for xsltproc... no checking for /usr/share/sgml/docbook/stylesheet/xsl/nwalsh/html/chunk.xsl... no checking for grep that handles long lines and -e... /gnu/store/bhs4rj58v8j1narb2454raan2ps38xd8-grep-3.4/bin/grep checking for egrep... /gnu/store/bhs4rj58v8j1narb2454raan2ps38xd8-grep-3.4/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking sys/soundcard.h usability... yes checking sys/soundcard.h presence... yes checking for sys/soundcard.h... yes checking for ANSI C header files... (cached) yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking sys/ioctl.h usability... yes checking sys/ioctl.h presence... yes checking for sys/ioctl.h... yes checking for unistd.h... (cached) yes checking for an ANSI C-conforming const... yes checking whether gcc needs -traditional... no configure: creating ./config.status config.status: creating run-solfege.py config.status: creating solfege/buildinfo.py config.status: creating topdocs/defs.texi config.status: creating windowsinstaller.iss config.status: creating Makefile config.status: WARNING: 'Makefile.in' seems to ignore the --datarootdir setting config.status: creating autopackage/default.apspec config.status: creating help/C/solfege.xml config.status: creating config.h configure: WARNING: unrecognized options: --enable-fast-install configure: configure: Please remember to rerun configure if you change swig versions! configure: configure: xml2po was not found. This is no big deal, but it mean that the configure: translated user manuals will not be updated if you make changes configure: to the english manual. phase `configure' succeeded after 2.8 seconds starting phase `patch-generated-file-shebangs' patch-shebang: ./test/seq.py: warning: no binary for interpreter `python2.3' found in $PATH phase `patch-generated-file-shebangs' succeeded after 0.1 seconds starting phase `patch-python-shebangs' phase `patch-python-shebangs' succeeded after 0.0 seconds starting phase `patch-readme' phase `patch-readme' succeeded after 0.0 seconds starting phase `add-sitedirs' phase `add-sitedirs' succeeded after 0.0 seconds starting phase `adjust-config-file-prefix' phase `adjust-config-file-prefix' succeeded after 0.0 seconds starting phase `build' /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/cs.po -o po/cs.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/da.po -o po/da.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/de.po -o po/de.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/eo.po -o po/eo.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/es.po -o po/es.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/et.po -o po/et.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/fa.po -o po/fa.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/fi.po -o po/fi.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/fr.po -o po/fr.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/gl.po -o po/gl.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/hr.po -o po/hr.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/hu.po -o po/hu.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/it.po -o po/it.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/nb.po -o po/nb.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/nl.po -o po/nl.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/pl.po -o po/pl.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/pt_BR.po -o po/pt_BR.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/ru.po -o po/ru.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/sv.po -o po/sv.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/tr.po -o po/tr.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/vi.po -o po/vi.mo /gnu/store/n9wx4dp68bfsw9bb1bwmklzl34ggrmgm-gettext-minimal-0.20.1/bin/msgfmt po/zh_CN.po -o po/zh_CN.mo /gnu/store/ln0jd0k32xbr2jyha1sdaynllkazgmsi-python2-2.7.17/bin/python tools/generate_theory_ly.py --all make all make[1]: Entering directory '/tmp/guix-build-solfege-3.22.2.drv-0/solfege-3.22.2' mkdir -p share/locale/cs/LC_MESSAGES mkdir -p share/locale/da/LC_MESSAGES mkdir -p share/locale/de/LC_MESSAGES mkdir -p share/locale/eo/LC_MESSAGES cp po/cs.mo share/locale/cs/LC_MESSAGES/solfege.mo cp po/da.mo share/locale/da/LC_MESSAGES/solfege.mo cp po/de.mo share/locale/de/LC_MESSAGES/solfege.mo cp po/eo.mo share/locale/eo/LC_MESSAGES/solfege.mo mkdir -p share/locale/es/LC_MESSAGES mkdir -p share/locale/et/LC_MESSAGES mkdir -p share/locale/fa/LC_MESSAGES cp po/es.mo share/locale/es/LC_MESSAGES/solfege.mo cp po/et.mo share/locale/et/LC_MESSAGES/solfege.mo cp po/fa.mo share/locale/fa/LC_MESSAGES/solfege.mo mkdir -p share/locale/fi/LC_MESSAGES mkdir -p share/locale/fr/LC_MESSAGES mkdir -p share/locale/gl/LC_MESSAGES cp po/fi.mo share/locale/fi/LC_MESSAGES/solfege.mo cp po/fr.mo share/locale/fr/LC_MESSAGES/solfege.mo cp po/gl.mo share/locale/gl/LC_MESSAGES/solfege.mo mkdir -p share/locale/hr/LC_MESSAGES mkdir -p share/locale/hu/LC_MESSAGES mkdir -p share/locale/it/LC_MESSAGES mkdir -p share/locale/nb/LC_MESSAGES cp po/hr.mo share/locale/hr/LC_MESSAGES/solfege.mo cp po/hu.mo share/locale/hu/LC_MESSAGES/solfege.mo cp po/it.mo share/locale/it/LC_MESSAGES/solfege.mo cp po/nb.mo share/locale/nb/LC_MESSAGES/solfege.mo mkdir -p share/locale/nl/LC_MESSAGES mkdir -p share/locale/pl/LC_MESSAGES cp po/nl.mo share/locale/nl/LC_MESSAGES/solfege.mo mkdir -p share/locale/pt_BR/LC_MESSAGES cp po/pl.mo share/locale/pl/LC_MESSAGES/solfege.mo mkdir -p share/locale/ru/LC_MESSAGES mkdir -p share/locale/sv/LC_MESSAGES cp po/pt_BR.mo share/locale/pt_BR/LC_MESSAGES/solfege.mo cp po/ru.mo share/locale/ru/LC_MESSAGES/solfege.mo mkdir -p share/locale/tr/LC_MESSAGES cp po/sv.mo share/locale/sv/LC_MESSAGES/solfege.mo mkdir -p share/locale/vi/LC_MESSAGES mkdir -p share/locale/zh_CN/LC_MESSAGES cp po/tr.mo share/locale/tr/LC_MESSAGES/solfege.mo cp po/vi.mo share/locale/vi/LC_MESSAGES/solfege.mo /gnu/store/q3msgwcg2fl8jf7cp1d7n59iiyywc9n9-lilypond-2.20.0/bin/lilypond -I ../../C/ly --png -d backend=eps -o help/C/ly/inverting-intervals help/C/ly/inverting-intervals.ly /gnu/store/q3msgwcg2fl8jf7cp1d7n59iiyywc9n9-lilypond-2.20.0/bin/lilypond -I ../../C/ly --png -d backend=eps -o help/C/ly/theory-intervals-1 help/C/ly/theory-intervals-1.ly cp po/zh_CN.mo share/locale/zh_CN/LC_MESSAGES/solfege.mo /gnu/store/q3msgwcg2fl8jf7cp1d7n59iiyywc9n9-lilypond-2.20.0/bin/lilypond -I ../../C/ly --png -d backend=eps -o help/C/ly/theory-intervals-fifths-1 help/C/ly/theory-intervals-fifths-1.ly /gnu/store/q3msgwcg2fl8jf7cp1d7n59iiyywc9n9-lilypond-2.20.0/bin/lilypond -I ../../C/ly --png -d backend=eps -o help/C/ly/theory-intervals-fifths-2 help/C/ly/theory-intervals-fifths-2.ly fatal error: Uninitialized variable `write-performances-midis' in module (lily) make[1]: *** [help/Makefile:155: help/C/ly/theory-intervals-1.png] Error 1 make[1]: *** Waiting for unfinished jobs.... fatal error: Uninitialized variable `write-performances-midis' in module (lily) make[1]: *** [help/Makefile:155: help/C/ly/inverting-intervals.png] Error 1 fatal error: Uninitialized variable `write-performances-midis' in module (lily) make[1]: *** [help/Makefile:155: help/C/ly/theory-intervals-fifths-2.png] Error 1 fatal error: Uninitialized variable `write-performances-midis' in module (lily) make[1]: *** [help/Makefile:155: help/C/ly/theory-intervals-fifths-1.png] Error 1 make[1]: Leaving directory '/tmp/guix-build-solfege-3.22.2.drv-0/solfege-3.22.2' make: *** [Makefile:74: genfiles] Error 2 command "make" "-j" "4" failed with status 2 builder for `/gnu/store/j7mw53h0pwvp6g620i6argf0gfh4d101-solfege-3.22.2.drv' failed with exit code 1 build of /gnu/store/j7mw53h0pwvp6g620i6argf0gfh4d101-solfege-3.22.2.drv failed View build log at '/var/log/guix/drvs/j7/mw53h0pwvp6g620i6argf0gfh4d101-solfege-3.22.2.drv.bz2'. guix build: error: build of `/gnu/store/j7mw53h0pwvp6g620i6argf0gfh4d101-solfege-3.22.2.drv' failed --8<---------------cut here---------------end--------------->8--- Regards, -- Nicolas Goaziou ^ permalink raw reply [flat|nested] 10+ messages in thread
* bug#42301: Build of GNU Solfege fails 2020-07-09 17:43 ` bug#42301: Build of GNU Solfege fails Tim Magee 2020-08-07 18:03 ` bug#42301: [PATCH] gnu: solfage: fix build Michael Rohleder @ 2021-07-05 10:47 ` zimoun 2021-07-05 11:57 ` Nicolas Goaziou 1 sibling, 1 reply; 10+ messages in thread From: zimoun @ 2021-07-05 10:47 UTC (permalink / raw) To: Tim Magee; +Cc: mail, 42301 Hi, Using Guix 3694c0d, the package ’solfege’ builds and the substitute is available. The package ’lilypond’ too. Something probably changed in the dependency chain since commit 145484e8f5d89911f5f905c9fe604e3cbfd1e434 (fail). Closing? All the best, simon ^ permalink raw reply [flat|nested] 10+ messages in thread
* bug#42301: Build of GNU Solfege fails 2021-07-05 10:47 ` bug#42301: Build of GNU Solfege fails zimoun @ 2021-07-05 11:57 ` Nicolas Goaziou 2021-07-05 12:31 ` Michael Rohleder 0 siblings, 1 reply; 10+ messages in thread From: Nicolas Goaziou @ 2021-07-05 11:57 UTC (permalink / raw) To: zimoun; +Cc: Tim Magee, 42301 Hello, zimoun <zimon.toutoune@gmail.com> writes: > Using Guix 3694c0d, the package ’solfege’ builds and the substitute is > available. The package ’lilypond’ too. > > Something probably changed in the dependency chain since commit > 145484e8f5d89911f5f905c9fe604e3cbfd1e434 (fail). > > Closing? Fine by me, but I'm not the OP. Regards, -- Nicolas Goaziou ^ permalink raw reply [flat|nested] 10+ messages in thread
* bug#42301: Build of GNU Solfege fails 2021-07-05 11:57 ` Nicolas Goaziou @ 2021-07-05 12:31 ` Michael Rohleder 2021-07-05 13:46 ` Tim Magee 0 siblings, 1 reply; 10+ messages in thread From: Michael Rohleder @ 2021-07-05 12:31 UTC (permalink / raw) To: Nicolas Goaziou; +Cc: Tim Magee, 42301 [-- Attachment #1: Type: text/plain, Size: 272 bytes --] Nicolas Goaziou <mail@nicolasgoaziou.fr> writes: > Fine by me, but I'm not the OP. dito. -- Thus spake the master programmer: "Without the wind, the grass does not move. Without software, hardware is useless." -- Geoffrey James, "The Tao of Programming" [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 511 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* bug#42301: Build of GNU Solfege fails 2021-07-05 12:31 ` Michael Rohleder @ 2021-07-05 13:46 ` Tim Magee 2021-07-05 13:49 ` zimoun 0 siblings, 1 reply; 10+ messages in thread From: Tim Magee @ 2021-07-05 13:46 UTC (permalink / raw) To: 42301; +Cc: Nicolas Goaziou [-- Attachment #1.1: Type: text/plain, Size: 63 bytes --] It works for me now. I will close if nobody beats me to it. [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 236 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* bug#42301: Build of GNU Solfege fails 2021-07-05 13:46 ` Tim Magee @ 2021-07-05 13:49 ` zimoun 0 siblings, 0 replies; 10+ messages in thread From: zimoun @ 2021-07-05 13:49 UTC (permalink / raw) To: Tim Magee; +Cc: 42301-done, Nicolas Goaziou Hi, On Mon, 5 Jul 2021 at 15:46, Tim Magee <timothy@eastlincoln.net> wrote: > It works for me now. I will close if nobody beats me to it. Thanks. So closing. (-: All the best, simon ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2021-07-05 14:53 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <b5beef52-b072-ff3a-8a97-2e462a402c65.ref@eastlincoln.net> 2020-07-09 17:43 ` bug#42301: Build of GNU Solfege fails Tim Magee 2020-08-07 18:03 ` bug#42301: [PATCH] gnu: solfage: fix build Michael Rohleder 2020-08-09 11:08 ` Nicolas Goaziou 2020-08-09 16:36 ` Michael Rohleder 2020-08-11 17:09 ` Nicolas Goaziou 2021-07-05 10:47 ` bug#42301: Build of GNU Solfege fails zimoun 2021-07-05 11:57 ` Nicolas Goaziou 2021-07-05 12:31 ` Michael Rohleder 2021-07-05 13:46 ` Tim Magee 2021-07-05 13:49 ` zimoun
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/guix.git This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.