LV2 packages updated

Discuss anything new and newsworthy!

Moderators: raboof, khz, MattKingUSA

LV2 packages updated

Postby StudioDave » Thu Apr 19, 2012 9:31 pm

Greetings,

Dave Robillard has announced the following updates :

http://lv2plug.in/spec/lv2-1.0.0.tar.bz2

http://download.drobilla.net/lilv-0.14.2.tar.bz2

http://download.drobilla.net/sord-0.8.0.tar.bz2

http://download.drobilla.net/serd-0.14.0.tar.bz2

http://download.drobilla.net/sratom-0.2.0.tar.bz2

Built cleanly here on Arch64 and Ubuntu 10.04. I rebuilt A3 with the new libs, no troubles so far. Tests will continue. :)

Best,

dp
StudioDave
Establlshed Member
 
Posts: 455
Joined: Sat Nov 01, 2008 1:12 pm

Re: LV2 packages updated

Postby falkTX » Thu Apr 19, 2012 11:18 pm

I wish all devs would update their own plugins to be compliant with the "new" spec.
Life is not easy for LV2 hosts...

projects like teliasopia and others seem dead now... :(

I expect mine (juce-lv2 plugins&ports) to be released next week (plugins are ready, just doing all final testing now :D)
User avatar
falkTX
Establlshed Member
 
Posts: 2450
Joined: Sat Jan 09, 2010 3:04 pm

Re: LV2 packages updated

Postby scalawag » Fri Apr 20, 2012 12:01 am

falkTX wrote:I wish all devs would update their own plugins to be compliant with the "new" spec.
Life is not easy for LV2 hosts...

projects like teliasopia and others seem dead now... :(

I expect mine (juce-lv2 plugins&ports) to be released next week (plugins are ready, just doing all final testing now :D)

Can you share with us what you're cooking? :D
scalawag
Establlshed Member
 
Posts: 12
Joined: Fri Jun 17, 2011 12:01 am

Re: LV2 packages updated

Postby falkTX » Fri Apr 20, 2012 12:45 am

scalawag wrote:Can you share with us what you're cooking? :D


sure, but note that most of them are ports and not my own plugins.

DrumSynth and EQinox
http://www.anticore.org/jucetice/?page_id=7
(Soundcrab is broken and there is already a nekobee-lv2)

TAL Plugins, as lv2 (their webpage is offline atm)

dRowAudio Plugins
http://www.drowaudio.co.uk/audio/audio_plugins.html

Arctican Plugins
http://arcticanaudio.com/plugins.html

Highlife and Vex
http://www.anticore.org/jucetice/?page_id=8
(I'll port the rest at a later time)

HybridReverb2
http://www2.ika.rub.de/HybridReverb2/

and others, in a total of 60 plugins/ports

good enough? :lol:
User avatar
falkTX
Establlshed Member
 
Posts: 2450
Joined: Sat Jan 09, 2010 3:04 pm

Re: LV2 packages updated

Postby StudioDave » Fri Apr 20, 2012 5:51 pm

falkTX wrote:
scalawag wrote:Can you share with us what you're cooking? :D


sure, but note that most of them are ports and not my own plugins.

DrumSynth and EQinox
http://www.anticore.org/jucetice/?page_id=7


Bless your soul ! Those are nice plugins, I'd like to see them in LV2 format.



Outstanding. I'll be happy to test any of them, I'm keeping Ardour3 and LV2 up-to-date on various systems.

... and others, in a total of 60 plugins/ports

good enough? :lol:


70 would have been better... ;)

Fantastic endeavor. Now to get DSSI support into A3...

Best,

dp
StudioDave
Establlshed Member
 
Posts: 455
Joined: Sat Nov 01, 2008 1:12 pm

Re: LV2 packages updated

Postby falkTX » Fri Apr 20, 2012 7:41 pm

StudioDave wrote:Outstanding. I'll be happy to test any of them, I'm keeping Ardour3 and LV2 up-to-date on various systems.

You can complie the latest git code right now. afaik, it should be stable, I'm just doing final tests and making sure they work on my hosts (and some others too, although limited due to missing features)

Code: Select all
git clone git://distrho.git.sf.net/gitroot/distrho/distrho --depth 1
cd distrho
# checkout the README and install all dependencies
./scripts/premake-update linux
make lv2
make gen


StudioDave wrote:70 would have been better... ;)

I know I could had there much much more, but I want to get out a base pack first (need to focus a bit on KXStudio too, release is already delayed).
There are a lot of Juce based plugins out there waiting for a port, and my vst2lv2 bridge allows me to easily port any VST to LV2 (cmt-bitcrusher is an example of that).
So in 2 months I expect to get ~200 plugins & ports :D

StudioDave wrote:Fantastic endeavor. Now to get DSSI support into A3...

Good luck on that... afaik they have 0 interest on it.
User avatar
falkTX
Establlshed Member
 
Posts: 2450
Joined: Sat Jan 09, 2010 3:04 pm

Re: LV2 packages updated

Postby funkmuscle » Sat Apr 21, 2012 6:32 pm

falkTX wrote:
Code: Select all
git clone git://distrho.git.sf.net/gitroot/distrho/distrho --depth 1
cd distrho
# checkout the README and install all dependencies
./scripts/premake-update linux
make lv2
make gen




this ain't working for me on Arch64. :(

Code: Select all
./scripts/premake-update.sh linux
cd ./libs/drowaudio/build-drowaudio
premake --os linux --target gnu --cc gcc
./scripts/premake-update.sh: line 43: premake: command not found


for anything to even happen, I had to add the '.sh' to the end of 'premake-update'. :?
could be me not understanding the README.. :oops:

Also falk, when you say any VST2Lv2, do you mean any of the freely available ones found on the net?
funkmuscle
Establlshed Member
 
Posts: 1152
Joined: Mon Jun 02, 2008 2:30 pm

Re: LV2 packages updated

Postby falkTX » Sat Apr 21, 2012 9:18 pm

funkmuscle wrote:this ain't working for me on Arch64. :(

Code: Select all
./scripts/premake-update.sh linux
cd ./libs/drowaudio/build-drowaudio
premake --os linux --target gnu --cc gcc
./scripts/premake-update.sh: line 43: premake: command not found


for anything to even happen, I had to add the '.sh' to the end of 'premake-update'. :?
could be me not understanding the README.. :oops:

hm, I though it was simple enough...
This operation requires 'premake' (version 3) to be installed on your system.
(...)
To build plugins, you first need to install the following dependencies:

All OSes:

- fftw3
- premake
- Qt4


Linux: (development versions of these)

- ALSA
- JACK
- freetype2
- X11 core
- X11 extensions (Xinerama, X Shared memory/Xshm, XRender and XCursor)

but if you're on archlinux, you better use instead:
http://aur.archlinux.org/packages.php?ID=57903
(speps have confirmed me it builds fine)

funkmuscle wrote:Also falk, when you say any VST2Lv2, do you mean any of the freely available ones found on the net?

It's part of my c++ plugin classes, but it's all very new/experimental right now. I'll give more details when it gets ready.
User avatar
falkTX
Establlshed Member
 
Posts: 2450
Joined: Sat Jan 09, 2010 3:04 pm

Re: LV2 packages updated

Postby funkmuscle » Sat Apr 21, 2012 9:26 pm

falkTX wrote:but if you're on archlinux, you better use instead:
http://aur.archlinux.org/packages.php?ID=57903
(speps have confirmed me it builds fine)



ok, the one speps has in AUR I've installed already.. thought what you had here was something new..
sorry about about that! told you the mess up was most likely my fault.. :mrgreen:
funkmuscle
Establlshed Member
 
Posts: 1152
Joined: Mon Jun 02, 2008 2:30 pm

Re: LV2 packages updated

Postby StudioDave » Sun Apr 22, 2012 12:41 am

Hi falk,

Your git code built fine on my Arch system, but when I try to use any of them in Ardour3 (latest SVN always) it freezes up. Ctrl-C gets me out of it, but I thought you'd want at least this report. More details in a while. I haven't tested on my Ubuntu and Debian systems yet, they're 32-bit. Also haven't tried standalone builds yet, will do so later this evening.

Building on GMaq's AVLinux now...

Best,

dp
StudioDave
Establlshed Member
 
Posts: 455
Joined: Sat Nov 01, 2008 1:12 pm

Re: LV2 packages updated

Postby StudioDave » Sun Apr 22, 2012 11:23 am

StudioDave wrote:... haven't tried standalone builds yet...


A quick update on that: The standalones seem to work well (in AVLinux), they fit into my use of JACK, I'm starting to get happy. :)

Best,

dp
StudioDave
Establlshed Member
 
Posts: 455
Joined: Sat Nov 01, 2008 1:12 pm

Re: LV2 packages updated

Postby funkmuscle » Sun Apr 22, 2012 12:22 pm

Ardour2 and standalone on Arch64 works well, will try A3 later.
funkmuscle
Establlshed Member
 
Posts: 1152
Joined: Mon Jun 02, 2008 2:30 pm


Return to New Linux Music News

Who is online

Users browsing this forum: No registered users and 1 guest