Thanks for the clarification, I hadn't realised the LV2 versions of the plugins 
weren't working. I've managed to get the F29 version as you suggest, and 
patched (attached) the scripts to force Python 2 so I can run the  GUI from the 
launcher. Upstream seems to have updated the GUI to Python 3, but as mentioned 
there are some bugs with their config parser currently.

Regards,

Ryan

On Wed, 11 Sep 2019, at 3:44 PM, stan via devel wrote:
> On Tue, 10 Sep 2019 22:50:32 +0100
> "Ryan Walklin" <[email protected]> wrote:
> 
> > I built pulseaudio-equalizer directly from github today and it
> > doesn't seem to be able to parse it's own config files? Which is a
> > pain because I'd prefer something lighter than pulseeffects for a
> > simple EQ.
> 
> I built it on f31 from the f29 src.rpm in koji.  I had to build
> the f29 src.rpm for ladspa-swh-plugins first, and install it, then
> everything built fine, and works as usual.  But, pulseaudio-equalizer is
> a python2 program, so has to be explicitly started as 
> python2 pulseaudio-equalizer
> in a terminal now that python2 is deprecated and replaced as default
> python.
> 
> pulseaudio-equalizer
> https://koji.fedoraproject.org/koji/buildinfo?buildID=1121317
> 
> ladspa-swh-plugins
> https://koji.fedoraproject.org/koji/buildinfo?buildID=1112542
> 
> How to build rpm from src.rpm
> 
> http://fedoranews.org/hoyt/rpm/
> _______________________________________________
> devel mailing list -- [email protected]
> To unsubscribe send an email to [email protected]
> Fedora Code of Conduct: 
> https://docs.fedoraproject.org/en-US/project/code-of-conduct/
> List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> List Archives: 
> https://lists.fedoraproject.org/archives/list/[email protected]
>
diff -ru pulseaudio-equalizer-2.7/usr/bin/pulseaudio-equalizer-gtk pulseaudio-equalizer-2.7-py2/usr/bin/pulseaudio-equalizer-gtk
--- pulseaudio-equalizer-2.7/usr/bin/pulseaudio-equalizer-gtk	2010-02-07 13:18:41.000000000 +0000
+++ pulseaudio-equalizer-2.7-py2/usr/bin/pulseaudio-equalizer-gtk	2019-09-12 12:17:37.847045921 +0100
@@ -4,4 +4,4 @@
 # Author: Conn O'Griofa <connogriofa AT gmail DOT com>
 # Version: (see '/usr/pulseaudio-equalizer' script)
 
-python /usr/share/pulseaudio-equalizer/pulseaudio-equalizer.py
+python2 /usr/share/pulseaudio-equalizer/pulseaudio-equalizer.py
diff -ru pulseaudio-equalizer-2.7/usr/share/pulseaudio-equalizer/pulseaudio-equalizer.py pulseaudio-equalizer-2.7-py2/usr/share/pulseaudio-equalizer/pulseaudio-equalizer.py
--- pulseaudio-equalizer-2.7/usr/share/pulseaudio-equalizer/pulseaudio-equalizer.py	2010-02-07 13:18:41.000000000 +0000
+++ pulseaudio-equalizer-2.7-py2/usr/share/pulseaudio-equalizer/pulseaudio-equalizer.py	2019-09-12 12:17:32.608024590 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 
 # PulseAudio Equalizer (PyGTK Interface)
 #
_______________________________________________
devel mailing list -- [email protected]
To unsubscribe send an email to [email protected]
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/[email protected]

Reply via email to