waddlesplash changed the topic of #haiku to: Open-source operating system that specifically targets personal computing. | https://haiku-os.org | Nightlies: https://download.haiku-os.org | Bugtracker: https://dev.haiku-os.org | SCM: https://git.haiku-os.org/ | Logs: https://oftc.catirclogs.org/haiku/ | Matrix: #haiku:matrix.org | XMPP: #haiku%irc.oftc.net@irc.jabberfr.org
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
Skipp_OSX has joined #haiku
<Skipp_OSX> https://0x0.st/85-9.png <= Trash icon state messed up on BeOS R5
<Skipp_OSX> Easiest way to reproduce the problem is by creating a New folder and trashing it, on Haiku as well.
<Skipp_OSX> Safe to say this has been subtly broken the entire life of Tracker in Haiku since first included in 2005.
janoz has joined #haiku
janus has quit [Ping timeout: 480 seconds]
janoz is now known as janus
ChaiTRex has quit [Remote host closed the connection]
ChaiTRex has joined #haiku
mmu_man has quit [Ping timeout: 480 seconds]
janking has quit [Quit: Vision[]: i've been blurred!]
dman8765 has joined #haiku
janking has joined #haiku
dman8765 has quit [Remote host closed the connection]
erysdren has quit [Quit: Konversation terminated!]
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
Asterisk_ has joined #haiku
Asterisk has quit [Read error: Connection reset by peer]
<janking> :)
Asterisk has joined #haiku
Asterisk_ has quit [Ping timeout: 480 seconds]
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
<janking> :)
Skipp_OSX has quit [Quit: Textual IRC Client: www.textualapp.com]
tuaris has joined #haiku
<Begasus[m]> g'morning peeps
<janking> Good morning to you all :)
<Begasus[m]> g'morning janking :)
<janking> Good morning Begasus[m] :)
tuaris has quit [Quit: tuaris]
Aedil has quit [Quit: Laterz…]
OscarL has joined #haiku
<OscarL> Hello guys.
<OscarL> Hey Begasus[m]. re: VLC... is that the full output of readelf? if so... it also doesn't shows many of the other libs mentioned in the vlc recipe, so maybe they are linked not to the executable, but to libvlc.so / libvlccore.so ?
<OscarL> Might be better in such cases to use lddtree instead of plain readelf.
<OscarL> (as lddtree will show linked libraries for linked libraries, and so on)
<OscarL> I don't use nor have vlc installed... so maybe it has some plugins/modules that it loads at runtime (those would also not show up in either readelf nor lddtree)
<Begasus[m]> Hola OscarL that was the most important on the binary yes
<Begasus[m]> didn't check the library :)
<Begasus[m]> with lddtree: https://bpa.st/FJUA
<Begasus[m]> https://bpa.st/WLGQ
<Begasus[m]> binary and both libraries, no sing of libuunp
<Begasus[m]> not going over the full list of plugins :P
<OscarL> Begasus[m]: you could use this: https://bpa.st/NMZQ
<OscarL> (assumes all the libs end in ".so", if that's not the case... changing \*.so for \*.so\* might work better)
<Begasus[m]> ~> list_required_libs /system/bin/vlc
<Begasus[m]> readelf: Warning: Nothing to do.
<Begasus[m]> ah
<Begasus[m]> so not intended for the binary :)
<OscarL> no, I use it for dirs full of .so files :-D (like in some python packages)
<OscarL> try pointing it to the vlc addons/plugins dir
<OscarL> in any case... m-ito should pay close attention to the build log, to see if something comes up there.
<Begasus[m]> 0x0000000000000001 (NEEDED) Shared library: [libupnp.so.17]
<Begasus[m]> so yes, it's burried somewhere there :)
<OscarL> aha! well. some thing DOES links to it at least, then :-)
<Begasus[m]> this thing could be handy :)
<Begasus[m]> thanks!
<OscarL> No problem :-D
<Begasus[m]> haikuporter warns/errors on missing dependencies, but not if they are burried down in those subdirectories
<Begasus[m]> can't you add this somehow in haikuporter tool OscarL ?
<OscarL> I think it would only make sense as a "function/scriptlet" that one could call from inside the ".recipe"... like: "please HP, check this dir too for .so deps".
<OscarL> perhaps as a variable instead of a "function" call.... like "HP_EXTRA_LIBS_DIR_TO_CHECK=foo/bar/addons/"
<Begasus[m]> food to think about :)
<Begasus[m]> we already got some false positives, don't want to add more to the list also
<OscarL> one could say that right now we're getting false negatives.
<Begasus[m]> depends on how you define it I guess :P
<Begasus[m]> noting provides libfoo for ...
<Begasus[m]> or libfoo_a requires libfoo_b but isn't defined (something like that)
<OscarL> re: false positives/negatives.... that's why I think that explicitly asking hp (by call or $VARIABLE) to check some extra dirs when you need it, doesn't sounds too bad.
<OscarL> will try to rember to add it to the ToDo list... if I can find it (instead of creating yet another one that I'll quickly forget about :-P)
<Begasus[m]> lol
<Begasus[m]> know the feeling :)
<OscarL> re: libupnp... remains to be seen if it doesn't loads, or it simply doesn't works well enough in Haiku.
<Begasus[m]> I know I had issues with both those libraries (forgot the name of the other one), in some cases it was adviced to use one of them and not the other
<Begasus[m]> libnpupnp
erysdren has joined #haiku
<OscarL> added an "edit" in my reply to m-aito (mentioning that the lib IS linked).
<Begasus[m]> +1
<Begasus[m]> if that function would list the actual plugin that would be nice too :)
<Begasus[m]> time for doggies, biab
<OscarL> I think I have a similar one that does prints the names, eh (but uses a for loop, not xargs)
<Begasus[m]> I know it's possible to search for libraries that use a specific one, had some talks about that with fbrosson back then iirc, just forgot how :)
<OscarL> Begasus[m]: try with this one: https://bpa.st/TE3Q
<OscarL> list_required_libs2 <path to dir you want to check>
<OscarL> (can replace "for i" with "for lib" and remove the superfluous "lib = $i"... I just did a quick masshup of other functions I had lying around)
<Begasus[m]> ow lol : [ /boot/system/lib/vlc/plugins/services_discovery/libupnp_plugin.so ]
<Begasus[m]> thanks again!
<Begasus[m]> 1675 lines in that list for the vlc plugins :)
<OscarL> ouch
<Begasus[m]> replied :)
<OscarL> (should do a version that filters for a given lib name, for such cases. not today, though... brain too slow, and hands too cold)
<OscarL> +1
<Begasus[m]> I just redirected the output to Desktop and opened the file in Pe, works too :)
<OscarL> Turns out VMware makes this netbook heat up WAY more than when using Haiku on VirtualBox. Guess I should stick to VB on this one then.
<Begasus[m]> Windows host?
<Begasus[m]> atleast for me VMWare works way better then VirtualBox on Windows
<OscarL> Begasus[m]: "list_required_libs2 <path> | lpe" might come in handy (or just "| grep upnp" in this case :-D)
<OscarL> Win10, yes.
<Begasus[m]> grep upnp works in this case as the plugin has it in it's name, if it's not in the name it's still not very helpfull :)
<OscarL> VMware is a bit faster, yes... but not if the CPU overheats.... so in this hardware, VB, slower but cooler, wins in the end :-)
<Begasus[m]> ;)
<Begasus[m]> list_required_libs2 /boot/system/lib/vlc/plugins/ | lpe
<Begasus[m]> that's handy!
<OscarL> I even use: "EDITOR=lpe git commit" sometimes (when I know I need to copy/paste, as darn nano can't handle shift+arrows text selection).
<Begasus[m]> still using nano for that
<Begasus[m]> breakfast ... :)
<OscarL> enjoy!
<Begasus[m]> thanks :)
cp- has quit [Remote host closed the connection]
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
<Begasus[m]> err ... qtdeclaretive needs qttools also (or atleast checks for it)
<Begasus[m]> not going to add that :P
<OscarL> wee! we went down to 73 *_python39 packages (against 284 *_python310)
<Begasus[m]> progress! :D
<OscarL> errr, a few less for _python310... it was counting double the ones I have installed :-P
<OscarL> around 203 it seems.
<Begasus[m]> hence I sometimes run inrecipe on the fork and on the working repo :)
<OscarL> for this, I was using "pkgman search _python310", but forgot to add "-u" :-D
<OscarL> too distracted and too cold to do anything productive in Haiku today. I might head off to bed :-)
<OscarL> See you around Begasus[m]! Have a good one!
OscarL has quit []
<Begasus[m]> take care os.... tl
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
janking has quit []
janking has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
roiredX has joined #haiku
<roiredX> good day
janking has joined #haiku
TMM has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
TMM has joined #haiku
Anarchos has joined #haiku
Anarchos has quit []
<Begasus[m]> hi roiredX !
<Begasus[m]> long time no see :)
Anarchos has joined #haiku
Anarchos has quit [Quit: Vision[]: i've been blurred!]
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
Anarchos has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
neoncortex has joined #haiku
roiredX has quit [Quit: Vision[]: i've been blurred!]
Anarchos has quit [Quit: Vision[]: i've been blurred!]
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
dalme has joined #haiku
pabs has quit [Read error: Connection reset by peer]
pabs has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
Shaka444 has quit [Quit: Vision[]: i've been blurred!]
mmu_man has joined #haiku
<Begasus[m]> k, enough cleaning on qt 6.9.0 for today, about 10ish to go :)
bbjimmy has quit [Quit: Vision[]: i've been blurred!]
tuaris has joined #haiku
<nekobot> • Begasus (e5467c9f): kid3, bump to 3.9.7 (#12624)
<nekobot> [haikuports] Begasus pushed 1 commit to branch master: https://github.com/haikuports/haikuports/compare/5a1330a14518...e5467c9fc7dd
bbjimmy has joined #haiku
Aedil has joined #haiku
Aedil has quit []
janking has quit [Quit: Vision[]: i've been blurred!]
Aedil has joined #haiku
janking has joined #haiku
mmu_man has quit [Ping timeout: 480 seconds]
mmu_man has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
stephan48 has quit [Remote host closed the connection]
janking has joined #haiku
janking has quit []
janking has joined #haiku
janking has quit []
janking has joined #haiku
stephan48 has joined #haiku
WoC has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
Anarchos has joined #haiku
mmu_man has quit [Ping timeout: 480 seconds]
mmu_man has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
<Anarchos> i have some vm_page_fault at boot time. Is it recent ?
Babaj has joined #haiku
TMM has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
TMM has joined #haiku
mmu_man is now known as Guest22732
mmu_man has joined #haiku
Guest22732 has quit [Ping timeout: 480 seconds]
diver1 has quit [Quit: Leaving.]
diver has joined #haiku
mmu_man has quit [Ping timeout: 480 seconds]
bokehphilia has quit [Quit: Connection closed for inactivity]
mmu_man has joined #haiku
Skipp_OSX has joined #haiku
mmu_man is now known as Guest22737
mmu_man has joined #haiku
Anarchos has quit [Quit: Vision[]: i've been blurred!]
Guest22737 has quit [Ping timeout: 480 seconds]
Aedil has quit [Quit: leaving]
mmu_man has quit [Ping timeout: 480 seconds]
Skipp_OSX has quit [Quit: Textual IRC Client: www.textualapp.com]
mmu_man has joined #haiku
dodo75 has joined #haiku
dodo75 has quit []
dodo75 has joined #haiku
bokehphilia has joined #haiku
erysdren has quit [Quit: Konversation terminated!]
dodo75 has quit [Quit: Vision[]: i've been blurred!]
HaikuUser has joined #haiku
HaikuUser has quit []
mmu_man has quit [Ping timeout: 480 seconds]
mmu_man has joined #haiku
dalme has quit []