Re: Still failing to operate lilypond 2.20.0 64-bit version.

2023-10-06 Thread Werner LEMBERG
>> I think it's ghostscript – there are no pre-built packages >> available either. While LilyPond doesn't link to it in normal >> builds, gs is needed for converting LilyPond's EPS output files to >> PDF. In other words, a MacPorts user still needs a compiler... > > Damn, you are right.

Re: Still failing to operate lilypond 2.20.0 64-bit version.

2023-10-06 Thread David Kastrup
David Kastrup writes: > msk...@ansuz.sooke.bc.ca writes: > >> On Fri, 6 Oct 2023, Werner LEMBERG wrote: >> >>> Thanks. I think it's ghostscript – there are no pre-built packages >>> available either. While LilyPond doesn't link to it in normal builds, >>> gs is needed for converting LilyPond's

Re: Still failing to operate lilypond 2.20.0 64-bit version.

2023-10-06 Thread Jean Abou Samra
 > Le 6 oct. 2023 à 23:18, Werner LEMBERG a écrit : > Thanks. I think it's ghostscript – there are no pre-built packages > available either. While LilyPond doesn't link to it in normal builds, > gs is needed for converting LilyPond's EPS output files to PDF. In > other words, a MacPorts

Re: Still failing to operate lilypond 2.20.0 64-bit version.

2023-10-06 Thread David Kastrup
msk...@ansuz.sooke.bc.ca writes: > On Fri, 6 Oct 2023, Werner LEMBERG wrote: > >> Thanks. I think it's ghostscript – there are no pre-built packages >> available either. While LilyPond doesn't link to it in normal builds, >> gs is needed for converting LilyPond's EPS output files to PDF. In >>

Re: Still failing to operate lilypond 2.20.0 64-bit version.

2023-10-06 Thread mskala
On Fri, 6 Oct 2023, Werner LEMBERG wrote: > Thanks. I think it's ghostscript – there are no pre-built packages > available either. While LilyPond doesn't link to it in normal builds, > gs is needed for converting LilyPond's EPS output files to PDF. In > other words, a MacPorts user still needs

Re: Still failing to operate lilypond 2.20.0 64-bit version.

2023-10-06 Thread Werner LEMBERG
>> Ah, now I remember, thanks! I wasn't fluent enough then with the >> 'ports' program to find out which of the dependencies actually uses >> libpaper, since LilyPond itself [doesn't use it]( >> https://github.com/macports/macports-ports/blob/master/textproc/lilypond/Portfile >> ) > > It's most

Re: Lyrics above staff

2023-10-06 Thread Dimitrios Sykias
Thanks all for your help! The final working code is: \version "2.24.2" \score { \new StaffGroup << \new Staff = "soprano" \with { \override InstrumentName.self-alignment-X = #RIGHT instrumentName = #"S. " } \new Voice = "S" { \relative { c'4 d e f } } \new

Re: Still failing to operate lilypond 2.20.0 64-bit version.

2023-10-06 Thread Jean-Julien Fleck
Le ven. 6 oct. 2023 à 22:35, Werner LEMBERG a écrit : > > > It's in the non-distributable list: > > > > not-distributable.txt:lilypond "lilypond" is not distributable > > because its license "GPL-3+" conflicts with license "GPL-2" of > > dependency "libpaper" not-distributable.txt:lilypond-devel

Re: Still failing to operate lilypond 2.20.0 64-bit version.

2023-10-06 Thread Werner LEMBERG
> Ah, now I remember, thanks! I wasn't fluent enough then with the > 'ports' program to find out which of the dependencies actually uses > libpaper, since LilyPond itself [doesn't use > it](https://github.com/macports/macports-ports/blob/master/textproc/lilypond/Portfile) I've even asked to

Re: Still failing to operate lilypond 2.20.0 64-bit version.

2023-10-06 Thread Werner LEMBERG
> It's in the non-distributable list: > > not-distributable.txt:lilypond "lilypond" is not distributable > because its license "GPL-3+" conflicts with license "GPL-2" of > dependency "libpaper" not-distributable.txt:lilypond-devel > "lilypond-devel" is not distributable because its license

Re: Lyrics above staff

2023-10-06 Thread Werner LEMBERG
>>> Le 6 oct. 2023 à 15:47, David Kastrup a écrit : >>> \new Staff = "staff" { >>> c'1 >>> } \addlyrics \with { alignAboveContext = "staff"} { Om } >> >> >> OMG! I didn't know that syntax at all. It looks undocumented. > > Sigh. We

Re: Lyrics above staff

2023-10-06 Thread David Kastrup
Jean Abou Samra writes: >  > > >> Le 6 oct. 2023 à 15:47, David Kastrup a écrit : >> \new Staff = "staff" { >> c'1 >> } \addlyrics \with { alignAboveContext = "staff"} { Om } > > > OMG! I didn't know that syntax at all. It looks undocumented.

Re: Lyrics above staff

2023-10-06 Thread Jean Abou Samra
 > Le 6 oct. 2023 à 15:47, David Kastrup a écrit : > \new Staff = "staff" { > c'1 > } \addlyrics \with { alignAboveContext = "staff"} { Om } OMG! I didn't know that syntax at all. It looks undocumented.

Re: Still failing to operate lilypond 2.20.0 64-bit version.

2023-10-06 Thread Jean-Julien Fleck
Hello, Le ven. 6 oct. 2023 à 15:19, Werner LEMBERG a écrit : > > > All of LilyPond's dependencies definitely are GPLv3-compatible (or > > we could not distribute official binaries on lilypond.org). > > I don't have access to my old Mac in the next days, but there is a > possibility to actually

Re: Lyrics above staff

2023-10-06 Thread Jean Abou Samra
> Le 6 oct. 2023 à 18:13, Dimitrios Sykias a écrit : > >\new Staff = "soprano" { \with { \override > InstrumentName.self-alignment-X = #RIGHT instrumentName = #"S. " } } You have extraneous braces around \with { ... }

Re: Lyrics above staff

2023-10-06 Thread Dimitrios Sykias
Thanks for your help! This works fine: \version "2.24.2" \score { \new StaffGroup << \new Staff = "soprano" \new Voice = "S" { \relative { c'4 d e f } } \new Lyrics { \lyricsto "S" { "1" "2" "3" "4" } } \new Lyrics \with {

Re: Lyrics above staff

2023-10-06 Thread David Kastrup
Dimitrios Sykias writes: > Is it possible to place lyrics above staff using \addlyrics? I tried > “\addlyrics { \with { alignAboveContext = "staff" }” but it didn’t > work. Thanks! It does here. \new Staff = "staff" { c'1 } \addlyrics \with { alignAboveContext = "staff"} { Om } Maybe you

Re: Still failing to operate lilypond 2.20.0 64-bit version.

2023-10-06 Thread Werner LEMBERG
>> Again: license issues, as far as I know (but not from Apple in this >> case). > > Are you sure? It seems to me that it just wants clang from XCode. > I can't imagine what else could be useful for building LilyPond and > provided by XCode. Well, there are no pre-built 'lilypond' (or

Re: Lyrics above staff

2023-10-06 Thread Jean Abou Samra
> Le 6 oct. 2023 à 14:18, Dimitrios Sykias a écrit : > > Is it possible to place lyrics above staff using \addlyrics? I tried > “\addlyrics { \with { alignAboveContext = "staff" }” but it didn’t work. > Thanks! { ... } \addlyrics { ... } is a shorthand for << \new Voice =

Lyrics above staff

2023-10-06 Thread Dimitrios Sykias
Is it possible to place lyrics above staff using \addlyrics? I tried “\addlyrics { \with { alignAboveContext = "staff" }” but it didn’t work. Thanks!

Re: Still failing to operate lilypond 2.20.0 64-bit version.

2023-10-06 Thread Jean Abou Samra
> Le 6 oct. 2023 à 07:16, Werner LEMBERG a écrit : > Again: license issues, as far as I know (but not from Apple in this > case). Are you sure? It seems to me that it just wants clang from XCode. I can't imagine what else could be useful for building LilyPond and provided by XCode. > There