Re: drum exercises

2020-01-03 Thread Marco
Sorry but I'm not very practical
Now do you see the attachment?



--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html



Re: QtWebEngine vs. Ubuntu 16.04

2020-01-03 Thread Wols Lists
On 29/12/19 04:30, Simon Albrecht wrote:
> thanks for the reply. I have learned from painful experience that it
> seems better to just reinstall the OS completely, avoiding any issues
> with the upgrade, and restore user data from backup. I have made all
> preparations for that and am trying to do it (freshly install 18.04).

In that case, if you haven't already, make sure you put /home on its own
partition. That will make things a lot easier as the re-install won't go
anywhere near your home directories ...

Cheers,
Wol



Getting Frescobaldi to use my poppler

2020-01-03 Thread Knute Snortum
I noticed that the minimum version for poppler was 0.82 for
Frescobaldi 3.1 and I didn't have a package that high, so I built
poppler from source.  It's installed in /usr/local/.

But when I run Frescobaldi and look in the versions tab of the About
window, it is still using the old poppler.  So I thought I would
rebuild python-poppler-qt5.  But when I try to build it I get this
error:

$ python setup.py build
Traceback (most recent call last):
  File "setup.py", line 42, in 
import sipdistutils
ImportError: No module named sipdistutils
$ apt list sip*
Listing... Done
sip-dev/eoan,now 4.19.18+dfsg-1 amd64 [installed,automatic]

Should I continue to try to build python-poppler-qt5?  How do I get
Frescobaldi to use the newer poppler?

I'm running Ubuntu 19.10.

---
Knute Snortum
(via Gmail)



Re: Getting Frescobaldi to use my poppler

2020-01-03 Thread Federico Bruni




Il giorno ven 3 gen 2020 alle 09:28, Knute Snortum  
ha scritto:

I noticed that the minimum version for poppler was 0.82 for
Frescobaldi 3.1 and I didn't have a package that high, so I built
poppler from source.  It's installed in /usr/local/.

But when I run Frescobaldi and look in the versions tab of the About
window, it is still using the old poppler.  So I thought I would
rebuild python-poppler-qt5.  But when I try to build it I get this
error:

$ python setup.py build
Traceback (most recent call last):
  File "setup.py", line 42, in 
import sipdistutils
ImportError: No module named sipdistutils
$ apt list sip*
Listing... Done
sip-dev/eoan,now 4.19.18+dfsg-1 amd64 [installed,automatic]

Should I continue to try to build python-poppler-qt5?  How do I get
Frescobaldi to use the newer poppler?

I'm running Ubuntu 19.10.




See this issue:
https://github.com/frescobaldi/python-poppler-qt5/issues/14#issuecomment-506735413

Try this:
wget 
https://www.riverbankcomputing.com/hg/sip/raw-file/79f89221765d/sipdistutils.py

mv sipdistutils.py path/to/lib/python3.X/site-packages/






Re: Getting Frescobaldi to use my poppler

2020-01-03 Thread Kevin Cole
It seems you're not the only one. A similar problem (poppler and
sipdistutils) was encountered by another, and a solution proposed -- though
not marked as accepted by the questioner.

https://stackoverflow.com/questions/51420803/modulenotfounderror-no-module-named-sipdistutils-while-install-python-poppler#51421349

Perhaps an "apt-cache search sip | grep python" to see which Debian
packages might be relevant other than sip-dev, rather than going with the
Python package directly, since it would integrate better with the entire
distribution that way.


Re: Getting Frescobaldi to use my poppler

2020-01-03 Thread Kevin Cole
On Fri, Jan 3, 2020 at 12:39 PM Federico Bruni  wrote:

>
> See this issue:
>
> https://github.com/frescobaldi/python-poppler-qt5/issues/14#issuecomment-506735413
>
> Try this:
> wget
>
> https://www.riverbankcomputing.com/hg/sip/raw-file/79f89221765d/sipdistutils.py
> mv sipdistutils.py path/to/lib/python3.X/site-packages/
>

That sounds better than my answer.


Re: QtWebEngine vs. Ubuntu 16.04

2020-01-03 Thread Simon Albrecht

On 03.01.20 14:25, Wols Lists wrote:

On 29/12/19 04:30, Simon Albrecht wrote:

thanks for the reply. I have learned from painful experience that it
seems better to just reinstall the OS completely, avoiding any issues
with the upgrade, and restore user data from backup. I have made all
preparations for that and am trying to do it (freshly install 18.04).

In that case, if you haven't already, make sure you put /home on its own
partition. That will make things a lot easier as the re-install won't go
anywhere near your home directories ...



Thanks for the reply—seems like I forgot reporting my success. It turns 
out that last time around I did set up some things in a way that made 
re-installing the OS easier, including a separate home partition. After 
finding that the snap software manager should be avoided at all cost I’m 
pretty well off now.


Best, Simon




RE: positioning a natural

2020-01-03 Thread Mark Stephen Mrotek
Malte Meyn,

Perfect! Thank you.
I am so fortunate to have people who can help me with the finer points of
Lilypond

Mark

-Original Message-
From: lilypond-user
[mailto:lilypond-user-bounces+carsonmark=ca.rr@gnu.org] On Behalf Of
Malte Meyn
Sent: Thursday, January 02, 2020 10:59 PM
To: lilypond-user@gnu.org
Subject: Re: positioning a natural



Am 03.01.20 um 06:55 schrieb Mark Stephen Mrotek:
> Hello All,
> 
> In the following the natural should be associated with the a4.
> 
> Any suggestions/corrections welcome.

How about this?

\version "2.19.83"
\relative c'' {

   <<
 {
   ais8 ([b])
 } \\ {
   \once \override NoteColumn.force-hshift = #2.2
   \once \override Accidental.X-extent = #'(1 . 0)
   \once \override Accidental.extra-offset = #'(3 . 0)
   a!4
 }
   >>

}




Re: [Frescobaldi] ANN: Frescobaldi 3.1 has been released!

2020-01-03 Thread Stanton Sanderson
Mac OS X Mojave- I previously reported that Frescobaldi 3.1 installed from the 
disk image reported an error when convert-ly was requested. There were a few 
other minor anomalies. 

I have now installed frescobaldi (3.1) from MacPorts and everything I’ve tried 
works as advertised. Thanks to Davide for the fast port file submission.

Stan




Re: Getting Frescobaldi to use my poppler

2020-01-03 Thread Knute Snortum
Thanks for your answers!  What was going on with my system was that I
need to use "python3" because "python" points to 2.7.  Also, I needed
to set my QT_SELECT so the actual command that did it for me was:

QT_SELECT=5 python3 setup.py build (and install)

---
Knute Snortum
(via Gmail)

On Fri, Jan 3, 2020 at 9:42 AM Kevin Cole  wrote:
>
>
>
> On Fri, Jan 3, 2020 at 12:39 PM Federico Bruni  wrote:
>>
>>
>> See this issue:
>> https://github.com/frescobaldi/python-poppler-qt5/issues/14#issuecomment-506735413
>>
>> Try this:
>> wget
>> https://www.riverbankcomputing.com/hg/sip/raw-file/79f89221765d/sipdistutils.py
>> mv sipdistutils.py path/to/lib/python3.X/site-packages/
>
>
> That sounds better than my answer.
>



Re: drum exercises

2020-01-03 Thread Knute Snortum
No.

---
Knute Snortum
(via Gmail)

On Fri, Jan 3, 2020 at 3:58 AM Marco  wrote:
>
> Sorry but I'm not very practical
> Now do you see the attachment?
>
>
>
> --
> Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html
>