Page 53 of 61
Re: Package requests here! (New and updates)
Posted: Sat Aug 15, 2015 1:36 am
by barbouze
Hi falkTX!
Could you please consider adding
Shuriken Beat Slicer to KXStudio repositories?
This is imho a must-have tool for anyone working with sampled beats

Re: Package requests here! (New and updates)
Posted: Sat Aug 15, 2015 8:06 am
by stanlea
I think that he is waiting Shuriken to be out of beta, actually it changes quite often. But it's not really really hard to install from git.
Re: Package requests here! (New and updates)
Posted: Sat Aug 15, 2015 1:10 pm
by barbouze
Oh, I wasn't aware of that

Re: Package requests here! (New and updates)
Posted: Mon Aug 24, 2015 5:39 pm
by briandc
Unable to download/install the kxstudio meta packages. -I get this:
Code: Select all
W: Failed to fetch http://kxstudio.linuxaudio.org/repo/pool/free/ardour4_4.2.0-1kxstudio1_i386.deb
brian
Re: Package requests here! (New and updates)
Posted: Thu Sep 03, 2015 3:53 pm
by tramp
falkTX wrote:- jalv, almost latest svn (waiting for extui patch update from Robin)
That's cool, providing now a preset load command-line option, shows the loaded preset in the window tittle and in the menu (check menu).
For those who like to use jalv.select with it, they should checkout the svn5717 branch from jalv_select.
https://github.com/brummer10/jalv_select/tree/svn5717
Re: Package requests here! (New and updates)
Posted: Fri Sep 04, 2015 9:43 am
by briandc
falkTX wrote:@brian does that still happen?
github was down for a little while last week (damn china!) but it should be ok now.
Works now.

Thanks falkTX!
brian
Re: Package requests here! (New and updates)
Posted: Sat Sep 05, 2015 4:51 am
by tramp
falkTX wrote: but I need the external-ui patch to be working.
I've seen you've updated jalv, with the external-ui patch.
Do you notice that the extui have a serious issue?
Code: Select all
../src/jalv_extui.c: In function 'jalv_open_ui':
../src/jalv_extui.c:120:3: warning: implicit declaration of function 'usleep' [-Wimplicit-function-declaration]
usleep(1000000 / jalv->ui_update_hz);
usleep didn't work any more in newer gcc's. So the update frequency becomes u-bounded and leads to X-runs and buffer overflows.
The solution I've chose here was to replace it with nanosleep.
Even nanosleep needs a explicit MACRO to work proper.
This must be on top of the file.
and then
Code: Select all
usleep(1000000 / jalv->ui_update_hz);
get replaced with
Code: Select all
struct timespec reqtime;
nanosleep(get_reqtime(jalv,&reqtime), NULL);
get_reqtime :
Code: Select all
const struct timespec *get_reqtime(Jalv* jalv, struct timespec *reqtime)
{
int time = 1000 / jalv->ui_update_hz;
reqtime->tv_sec = time/1000;
reqtime->tv_nsec = (time % 1000) * 1000000;
return reqtime;
}
with this replacements the extui interface works flawless.
Ah, if you are choose to include jalv.select into KxStudio, please use the svn5717 branch, and u-comment the entry for jalv.extui in line 176
Re: Package requests here! (New and updates)
Posted: Sun Sep 06, 2015 1:00 am
by Ghaydn
fsthost
http://sourceforge.net/projects/fsthost/
Another app to load Windows VSTs. It works different than Carla and very useful to load standalone plugins that have their own midi mappings.
Hydrogen
http://sourceforge.net/projects/hydroge ... /Hydrogen/ on Github is 0.9.7 and current version in KX is 0.9.6 (Jan'15)
Thank you.
Re: Package requests here! (New and updates)
Posted: Sun Sep 06, 2015 4:19 am
by tramp
falkTX wrote:Please forward that info to Robin, he's the one that does the patch.
Note that Robin use gcc 4.7 were usleep still works, but in your package, you use gcc 4.9, were usleep didn't work anymore.
So your binary of jalv.extui is broken. Users of the EBU R128 Meter will notice that.
Re: Package requests here! (New and updates)
Posted: Sun Sep 06, 2015 4:47 am
by Luc
+1 for fsthost! It seems very interesting indeed. It even claims to be able to run 64-bit plugins. I've never been able to make any of them run. Not even a single one.
I went ahead and tried to compile it myself, and it didn't work, of course. It never does.
First, I had to add glib-2.0, which cost me "34.5 MB of additional disk space" in dependencies.
Then I would have to add gtk+-3.0 which would cost me 4GB (!!!!) in dependencies which is insane by my standards, so I installed gtk+-2.0, which cost me a much more reasonable 41.1 MB.
And after all that trouble, alas, it doesn't work:
Code: Select all
luc[10801-0]~/source/fsthost-1.5.4> make GTK2=1
gcc -c -m32 -pthread -I/usr/include/libxml2 -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/libpng12 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng12 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -g -O2 -Wall -Wno-deprecated-declarations -Wno-multichar -frounding-math -fsignaling-nans -mfpmath=sse -msse2 -DNO_VUMETER -fno-pic -fno-PIC -I. -I/usr/include -I/usr/include -I/usr/include/wine -I/usr/include/wine/windows -o amc_32.o amc.c
In file included from /usr/include/stdio.h:27:0,
from amc.c:20:
/usr/include/features.h:374:25: fatal error: sys/cdefs.h: No such file or directory
# include <sys/cdefs.h>
^
compilation terminated.
Makefile:97: recipe for target 'amc_32.o' failed
make: *** [amc_32.o] Error 1
I've always been very incompetent at compiling from source, so help me Obi-wan Kenobi. You're my only hope.
Re: Package requests here! (New and updates)
Posted: Sun Sep 06, 2015 5:04 am
by tramp
Luc wrote:fatal error: sys/cdefs.h: No such file or directory
you need libc6-dev-i386
or even more complete gcc-multilib and g++-multilib
Re: Package requests here! (New and updates)
Posted: Sun Sep 06, 2015 5:09 am
by Luc
tramp wrote:Luc wrote:fatal error: sys/cdefs.h: No such file or directory
you need libc6-dev-i386
or even more complete gcc-multilib and g++-multilib
Thanks. Been there, done that. I got past that hurdle with libc6-dev-i386.
Now it wants windows.h. One search hit suggests I install mingw32: 279 MB in dependencies just for that. Hmm, I'd rather not.
I am now considering gcc-multilib and g++-multilib, which will cost about half as much. Still a lot for just one program. I am getting close to running out of space in the / partition. Does anyone know if they will provide windows.h?
Re: Package requests here! (New and updates)
Posted: Sun Sep 06, 2015 5:23 am
by tramp
Luc wrote:I am now considering gcc-multilib and g++-multilib, which will cost about half as much. Still a lot for just one program. I am getting close to running out of space in the / partition. Does anyone know if they will provide windows.h?
No, they don't, therefore you need indeed mingw32.
Re: Package requests here! (New and updates)
Posted: Sun Sep 06, 2015 5:24 am
by Luc
So I see, cos I tried and it didn't work, so I quit.
If I wanted to put up with this, I'd be using Slackware.
Re: Package requests here! (New and updates)
Posted: Sun Sep 06, 2015 9:23 am
by Tesla