ChanServ 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.irclog.whitequark.org/haiku | Matrix: #haiku:matrix.org | XMPP: #haiku%irc.oftc.net@irc.jabberfr.org
KapiX has quit [Quit: KapiX]
zard has joined #haiku
* zard starts trying to figure out how to handle "Ownership of python objects inheriting from C++ classes"
* coolcoder613 waves to zard
<zard> Hello coolcoder613_32 :)
<zard> "This is, unfortunately, a limitation of pybind: we keep the C++ instance alive, but can't keep the Python instance alive."
<zard> And that, of course, is where the trouble starts
<zard> but there are workarounds, we just need to pick one
<coolcoder613> Okay, let's ask all these Haiku developers whether we should apply an icon with attributes, compile with nuitka, or write a C/C++ wrapper for FeedGator
<zard> Couldn't hurt :)
<coolcoder613> Hey PulkoMandy, waddlesplash, augiedoggie
<augiedoggie> you can apply an icon to scripts but you have to cheat and set the mimetype to be elfexecutable, a number of ports recipes do that
<zard> Wait, you have to set the mimetype to elfexecutable for the icon to show up?
<augiedoggie> on a script
<augiedoggie> iirc
<zard> How about a Python script? I had an icon on the Python script without any special intervention
<augiedoggie> maybe it's been fixed since i last tried
OscarL has joined #haiku
<coolcoder613> As a resource or as an attribute?
* OscarL tries to get up to speed with the conversation really quick...
<OscarL> in the meantime...
<augiedoggie> it would have to be an attribute
<coolcoder613> But that would disappear if moved off BFS
<zard> OscarL: We could either put an icon and related resources directly onto the Python file, or...
<zard> turn it into an executable with Nuitka, and use resource files directly, or...
<zard> write a wrapper program that has the resources whose sole goal is to launch the Python program
<OscarL> in any case... you'll want to add at least the "mime app-signature", otherwise it won't be picked up by things like QuickLaunch, and the like :-D
erysdren has quit [Quit: Konversation terminated!]
<zard> Good point, wasn't aware of that
<OscarL> not entirely sure using a wrapper would be best (due to the mentioned app-signatures)...
<OscarL> the BEOS:TYPE trick works well enough...
<OscarL> other than that... I would recommend to take a look at whateve "xicon" did.
<OscarL> (also... me likes simple having a script work with a simple "#!python3", but that's just me :-D)
<zard> Indeed, there's something beautiful about that simplicity :)
<zard> What is "xicon"? Can't find it on the terminal or HaikuDepot...
<OscarL> sorry.. really old app that allowed to run scripts as "regular apps" (via double-click, and such)... will try to find a link for it.
<OscarL> PulkoMandy's BeOS Archive to the rescue again! :-D https://pulkomandy.tk/~beosarchive/index.pl?search=xicon
<zard> Hey, look, a mailing list item that mentions our exact problem! https://www.freelists.org/post/haiku-development/xicon-and-executable-scripts,1
HaikuUser has joined #haiku
HaikuUser has quit []
<coolcoder613> The thing about a wrapper script, is that it could be reused across Haiku-PyAPI programs
<OscarL> (I'm getting old, and forgot it was written by Pete Goodeve! :-D)
<OscarL> coolcoder613: as long as the different programs appear as different apps in QuickLaunch... I wouldn't mind that much :-D
<coolcoder613> I mean the source code is reused, not the binary
<augiedoggie> you can reuse the binary if you get creative
<OscarL> BTW, coolcoder613 and zard... after a bit of consideration... I'm starting to think that https://github.com/coolcoder613eb/Haiku-PyAPI/pull/7 was the right idea after all.
<zard> coolcoder613: Moving the Python file out of a BFS
<zard> Yikes, half completed message! :P
<OscarL> (I really don't want to pack pybind11 for every possible Python version on Haiku... when you can just `pip3 install` it without much issues, or just use it as a submodule.
<coolcoder613> Why not pip3 install in the recipe?
<coolcoder613> For repeatability, you can pip3 install pybind11==1.2.3
<OscarL> mostly because we (almost?) never do pip installs on recipes. (not sure if that has changed since I stoped doing Python recipes daily :-D)
<OscarL> as in... seems we try to not blindly download code while building (at least, not code we can't run checksums on).
<zard> coolcoder613: Moving the Python file out of a BFS would certainly remove the attributes... but wouldn't that happen with a regular executable as well?
<coolcoder613> Once a package is uploaded to pypi, it can't be changed
<OscarL> if we do end up using pip in the end... sure... we'll "pin" it to a known version.
<coolcoder613> zard: It will remove the attributes, but on a regular executable, the icon is not in the attributes, it is in the resources
<OscarL> coolcoder613: I think mostly "our" issue is that way too many Python projects willy-nilly do "pip install the latest and greatest" if we're not careful :-D
<zard> Woops, wonder where the reproducible builds went? :D
* zard tries removing the icon attribute of a regular executable
<OscarL> instead of pip install... I guess we could also just do `python -m install` on the pybind wheels provided on PyPI.
* coolcoder613 nods
<coolcoder613> But deps
<OscarL> we HAVE to declare deps for .hpkgs anyway.
<OscarL> (part of why we avoid PIP... good luck finding out what else it did installed)
* zard discovers that executables are able to recreate their BEOS:ICON resource if it gets destroyed
<zard> To be continued, maybe... gtg, though
<zard> bye everyone!
<coolcoder613> bye zard
zard has quit [Quit: leaving]
<augiedoggie> you can't run a beos executable from a filesystem that doesn't support attributes
<augiedoggie> Tracker will complain that it can't find the mimetype
<phschafft> is that the relevant attribute or are there more?
<OscarL> coolcoder613: I guess you can close https://github.com/coolcoder613eb/Haiku-PyAPI/issues/8 now that you use -Os for your builds?
* OscarL still puts https://github.com/coolcoder613eb/Haiku-PyAPI/issues/9 up to consideration (before it gets an explosion of clones :-P)
<augiedoggie> i'm not sure what attributes it needs, i copied an executable to a fat32 disk and it failed to run even after i copied it back to bfs
<OscarL> BeOS/Haiku reliance on app-signature is neat... until you have mounted install for incompatible architectures, and a few of local clones with the same app with diffenent patches applied :-D
<OscarL> good luck opening the right one then! :-D
<OscarL> In fact... listing, say, x86 (32 bits) apps on "Open with" while running Haiku 64 bits... should warrant a Trac ticket, if there's none already there.
TMM has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
TMM has joined #haiku
<OscarL> one of those things you think... surely this is already known/reported.
<phschafft> augiedoggie: I see. thanks for the info. :)
jess has quit []
AlienSoldier has joined #haiku
AlienSoldier has quit []
HaikuUser has joined #haiku
HaikuUser has quit []
AlienSoldier has joined #haiku
<scanty> hello all
<coolcoder613> Hi scanty
AlaskanEmily has joined #haiku
<scanty> what's new?
Maturi0n has joined #haiku
Maturi0n_ has quit [Ping timeout: 480 seconds]
x10z has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ablyss has joined #haiku
* OscarL remembered why he logged in today... he meant to ask a question:
<OscarL> Hey guys... question for those of you using an USB-Wifi adapter on Haiku... does it shows up as "usb_ecm" or similar in the Network preflet?
<OscarL> I've never used one before, and I'm a bit worried about trying to find one, only to see it requires chipset-specific drivers (ie. RTL vs Atheros vs Intel, etc)
janoz has joined #haiku
* OscarL waves enthusiastically at scanty, even if a bit late :-D
<scanty> hi OscarL!
janus has quit [Ping timeout: 480 seconds]
janoz is now known as janus
* scanty goes to grab a snack.
erysdren has joined #haiku
* OscarL tries to snatch scanty's snack for himself... he was too slow :-(
<OscarL> Oh welll time for cooking some pasta then. See you around folks! :-D
OscarL has quit [Quit: Gone with the wind]
mmu_man has quit [Ping timeout: 480 seconds]
Maturi0n_ has joined #haiku
Maturi0n has quit [Ping timeout: 480 seconds]
HaikuUser has joined #haiku
HaikuUser has quit []
ablyss has quit [Remote host closed the connection]
x10z has joined #haiku
Halamix2 has quit [Quit: Gone (and/or ZNC is doing something stupid)]
Halamix2 has joined #haiku
walkingdisaster has joined #haiku
erysdren has quit [Quit: Konversation terminated!]
v_harkonnen has joined #haiku
<Al2O3> enju pasta
rexbinary has quit [Quit: ZNC - https://znc.in]
rexbinary has joined #haiku
hightower3 has joined #haiku
hightower4 has quit [Ping timeout: 480 seconds]
<coolcoder613> I had a rust program that had a debug build of 13M, and I got it down to 291K!
walkingdisaster has quit [Quit: Vision[]: i've been blurred!]
<coolcoder613> I've now got that binary down to 224K
mr_lou has joined #haiku
x10z has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
botifico-ecd96135 has quit [Ping timeout: 480 seconds]
<vdamewood> Now if only they would add rsync.
x10z has joined #haiku
Begasus has joined #haiku
<Begasus> g'morning peeps
<coolcoder613> Hi Begasus
<Begasus> Hi coolcoder613
* coolcoder613 got a Rust program down from 11MB to 224K
<Begasus> whoot! and still fully functional?
<nielx[m]> nice
<Begasus> g'morgen nielx[m] :)
<nielx[m]> goedemorgen :-)
<Begasus> list is getting smaller :) ~> inrecipe devel:libicu | grep ">= 66"
<Begasus> a few nasty ones in there though
coolcoder613_32 has quit [Quit: Vision[]: i've been blurred!]
Nephele has joined #haiku
vdamewood has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
walkingdisaster has joined #haiku
<Nephele> So far no bugs about the new native control rendering. neat. Either it works fine or nobody wants to report bugs :3
<Nephele> Begasus: probably easier to do grep -v "74"
<Nephele> to only show recipes that do *not* have the specification for icu 74
<Begasus> an option too Nephele, was for now filtering out the obvious
<Begasus> the ones not mentioning a version could be either
<Nephele> yes
<Begasus> just did boot169/boost170, seems boost1.83 still uses icu73, so doing that in one roll
<Nephele> too many boost versions :)
<Begasus> and probably drop the old 1.65 and 1.66
<Begasus> working on moving up to 1.83 where I can so we could drop 1.69 later on too (if possible)
<Nephele> I actually wonder, isn't boost severall different libraries for C++? maybe we can split that up a bit
<Begasus> I mostly look at repology for that kind of stuff, but you need to make sure you package the "correct" libraries together then
<Begasus> not the most fun thing to do :)
<Begasus> at least for LO it's narrowed down to one version
<Nephele> thanks for that, it's already much nicer with only one version :)
<Begasus> take your pick there sir ... https://repology.org/project/boost/versions :P
<Nephele> looks like they split them up already
<Begasus> it's always good to have a fallback, for older version when a new one comes along, it's not always progress :)
<Begasus> the major OS's there only provide one package though
<Nephele> sure. But would be cool if for example LO could depend on one version of specific boost libraries, then updating them is not that important
<Nephele> since it won't redownload huge sets of uneeded libraries, but just pick different versions of libs that just happen to be in one project ;)
<Begasus> Gentoo also (that's our guide) :)
<Nephele> I know. but alpine linux and adelie split it up ;)
<Begasus> and Entware ... who uses that :P
<Nephele> and yes, generally gentoo is the guide on the "where to put". but not the how
<Begasus> granted there :)
<Nephele> gentoos portage is very... slow... and we don't even implement *any* options to compile ports, while gentoo tries to support all of them
<Nephele> gentoo is a buffet with every food, Haiku is a themed restaurant
<Nephele> ;)
<Nephele> "Sir, we don't serve pulseaudio here"
<Begasus> not that familiar with the ebuilds, always give me the creeps :D
<Begasus> building pulseaudio could be possible, using it is another thing :)
<Begasus> I even have a recipe for "jack" (ducks), but without a backend it's of no use
yeti has quit [Ping timeout: 480 seconds]
<Nephele> why?
<Nephele> I hope we don't inherit the linux audio mess. Ideally high level libs that applications need can use the media kit directly, or the apps can be ported to it.
<Begasus> I think there is still a lot of work to be done on media kit (afaik)
<Nephele> sure. But the main reason people use jack is to have low latency audio, if media kit can provide this then just use media kit. If it cannot then using jack makes no sense either
<Nephele> Begasus: are there severall .so libraries in the current boost package?
tuaris has quit [Ping timeout: 480 seconds]
<Nephele> looks like adelie linux builds boost in one go and then splits up the package https://git.adelielinux.org/adelie/packages/-/blob/current/user/boost/APKBUILD
<Nephele> we could probably do the same with boost if it's already severall shared libraries
<Nephele> too bad i cant view package contents online with HDS
vdamewood has joined #haiku
hightower4 has joined #haiku
HaikuUser has joined #haiku
HaikuUser has quit []
<Begasus> re
hightower3 has quit [Ping timeout: 480 seconds]
<Begasus> Nephele https://bpa.st/R6MQ
<Nephele> okay, thanks
<Nephele> seems "easy" to split up? :)
<Begasus> heh
<Begasus> 1.84 is out I see :P
hightower4 has quit [Ping timeout: 480 seconds]
<Begasus> you could look into that Nephele, not that hard :D
<Begasus> 1.83 is only 117.2MiB :P
<Nephele> 110 mb is much to download on a slow connection
<Begasus> peanuts compared to webkit ;)
botifico has joined #haiku
<botifico> [haikuports/haikuports] Begasus pushed 1 commit to master [+0/-4/±3] https://github.com/haikuports/haikuports/compare/3f77945c9af2...bda0fe3d3526
<botifico> [haikuports/haikuports] Begasus bda0fe3 - boost, cleanup old, revbump other to use icu74 (#10086)
<Begasus> k, that was the end for the 2 old versions ;)
mr_lou has quit [Quit: Leaving]
dominicm has quit [Read error: Connection reset by peer]
utzig has quit [Read error: Connection reset by peer]
utzig has joined #haiku
dominicm has joined #haiku
x10z has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<Begasus> bah ... grcompiler needs icu66 (no updates upstream for 3 years) :/
<Nephele> Begasus: is haikuwebkit that difficult to download?
<Nephele> how big is its package?
<Begasus> no Nephele, it's HUGE :)
<Begasus> I think somewhere around 1.3GB
<Begasus> granted, not as big as texlive though
<Nephele> the entire haiku image is 1.3GB, how can haikuwebkit be....?
<Begasus> 1314816K ........ ........ ........ ....                       2.19M=9m49s (from buildmaster)
<Nephele> yes, that's the source. But that wasn't my question :)
<Nephele> the source includes a huuuuge ammount of tests that isn't needed for distributing the webengine
<Begasus> it's not more difficult/easier then downloading something else
<Begasus> can't be split?
<Nephele> The source download has no impact on the binary. I'm asking what the binary download size is of haikuwebkit
<Begasus> the hpkg?
<Nephele> yes
<Begasus> ah, say that then :)
<Begasus> 37.37MiB
<Nephele> > Nephele> how big is its package?
<Nephele> :P
<Nephele> is boost also that big?
<Begasus> ah, my bad, missed that line ;)
<Begasus> 3.4*MiB
<Begasus> small package
<Begasus> devel package for boost1.83 is +16MiB
AlienSoldier has quit [Quit: Vision[]: i've been blurred!]
<Nephele> downloading 3mb is not that bad indeed
<Begasus> hmm .. why is there an empty documentation folder in that devel package ...
<Begasus> a docDir vs documentationDir thing I guess
<Begasus> documentation package for boost1.83 +12MiB :-)
jmairboeck has joined #haiku
walkingdisaster has quit [Remote host closed the connection]
walkingdisaster has joined #haiku
<andreasdr[m]> Hi there.
<Begasus> Arrr andreasdr[m]
<Nephele> hi
<PriyanshuGupta[m]> hii
<Begasus> afk
mmu_man has joined #haiku
coolcoder613 has quit [Ping timeout: 480 seconds]
hightower2 has joined #haiku
<andreasdr[m]> Hi Begasus, Nephele and Priyanshu Gupta.
Nephele has quit [Quit: Leaving]
Nephele has joined #haiku
coolcoder613 has joined #haiku
jmairboeck has quit [Ping timeout: 480 seconds]
coolcoder613 has quit [Ping timeout: 480 seconds]
coolcoder613 has joined #haiku
coolcoder613_ has joined #haiku
HaikuUser has joined #haiku
HaikuUser2 has joined #haiku
HaikuUser2 has quit []
coolcoder613 has quit [Ping timeout: 480 seconds]
HaikuUser has quit [Read error: Connection reset by peer]
mmu_man has quit [Ping timeout: 480 seconds]
<botifico> [haikuports/haikuports] Begasus pushed 1 commit to master [+0/-0/±1] https://github.com/haikuports/haikuports/compare/bda0fe3d3526...a18e155b0c53
<botifico> [haikuports/haikuports] Begasus a18e155 - grcompiler, disable recipe, no updates after icu66 (#10087)
mmu_man has joined #haiku
coolcoder613_ has quit [Read error: Connection reset by peer]
coolcoder613 has joined #haiku
<botifico> [haikuports/haikuports] Begasus pushed 1 commit to master [+1/-0/±1] https://github.com/haikuports/haikuports/compare/a18e155b0c53...3e533dc9545c
<botifico> [haikuports/haikuports] Begasus 3e533dc - libebook, revbump, use icu74 (#10088)
coolcoder613 has quit [Ping timeout: 480 seconds]
coolcoder613 has joined #haiku
walkingdisaster has quit [Quit: Vision[]: i've been blurred!]
novaphoenix has quit [Quit: gone fishing]
novaphoenix has joined #haiku
yeti has joined #haiku
<botifico> [haikuports/haikuports] korli pushed 1 commit to master [+2/-2/±0] https://github.com/haikuports/haikuports/compare/3e533dc9545c...5a63715ec154
<botifico> [haikuports/haikuports] korli 5a63715 - rhash: bump version
v_harkonnen has quit [Ping timeout: 480 seconds]
v_harkonnen has joined #haiku
coolcoder613 has quit [Ping timeout: 480 seconds]
coolcoder613 has joined #haiku
hightower2 has quit [Ping timeout: 480 seconds]
zard has joined #haiku
<botifico> [haikuports/haikuports] Begasus pushed 1 commit to master [+2/-2/±0] https://github.com/haikuports/haikuports/compare/5a63715ec154...3f284e86eeb3
<botifico> [haikuports/haikuports] Begasus 3f284e8 - gptfdisk, bump version (#10089)
mmu_man has quit [Ping timeout: 480 seconds]
<nekobot> [haiku/haiku] pulkomandy pushed 2 commits to master [hrev57577] - https://git.haiku-os.org/haiku/log/?qt=range&q=7804ba6054a3+%5Eeb2154fd47f2
<nekobot> [haiku/haiku] 1774dd5ee9de - ffmpeg: channels and channel_layout are deprecated
<nekobot> [haiku/haiku] 7804ba6054a3 - ffmpeg: use new AVFifo API
<botifico> [haikuports/haikuports] Begasus pushed 1 commit to master [+0/-0/±1] https://github.com/haikuports/haikuports/compare/3f284e86eeb3...0f9751cd23b8
<botifico> [haikuports/haikuports] Begasus 0f9751c - libmspub, revbump, use icu74 (#10090)
Nephele has quit [Quit: This computer has gone to sleep]
<botifico> [haikuports/haikuports] Begasus pushed 1 commit to master [+0/-0/±1] https://github.com/haikuports/haikuports/compare/0f9751cd23b8...cb0a630114e9
<botifico> [haikuports/haikuports] Begasus cb0a630 - nuspell, revbump, use icu74 (#10091)
mmu_man has joined #haiku
<Begasus> afk again :)
<botifico> [haikuports/haikuports] korli pushed 2 commits to master [+3/-1/±0] https://github.com/haikuports/haikuports/compare/cb0a630114e9...f60d0e82f5b5
<botifico> [haikuports/haikuports] korli d1cf939 - cppdap: new recipe
<botifico> [haikuports/haikuports] korli f60d0e8 - libarchive: bump version
vdamewood has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
bjorkint0sh has joined #haiku
coolcoder613 has quit [Ping timeout: 480 seconds]
bjorkintosh has quit [Ping timeout: 480 seconds]
HaikuUser has joined #haiku
HaikuUser has quit []
coolcoder613 has joined #haiku
<botifico> [haikuports/haikuports] korli pushed 1 commit to master [+2/-0/±1] https://github.com/haikuports/haikuports/compare/f60d0e82f5b5...d2d7b10d7b08
<botifico> [haikuports/haikuports] korli d2d7b10 - rhash: add compat recipe for soname 0
<botifico> [haikuports/haikuports] korli pushed 1 commit to master [+0/-0/±1] https://github.com/haikuports/haikuports/compare/d2d7b10d7b08...69972d255f91
<botifico> [haikuports/haikuports] korli 69972d2 - cppdap: trigger build
<botifico> [haikuports/haikuports] korli pushed 1 commit to master [+0/-0/±2] https://github.com/haikuports/haikuports/compare/69972d255f91...49e6002ed3aa
<botifico> [haikuports/haikuports] korli 49e6002 - rhash: add compat strings
erysdren has joined #haiku
<botifico> [haikuports/haikuports] korli pushed 1 commit to master [+0/-0/±1] https://github.com/haikuports/haikuports/compare/49e6002ed3aa...e620ba85c47d
<botifico> [haikuports/haikuports] korli e620ba8 - cppdap: trigger build
<Begasus> bugger, now my tree is out of sync :P
<botifico> [haikuports/haikuports] Begasus pushed 1 commit to master [+0/-0/±1] https://github.com/haikuports/haikuports/compare/e620ba85c47d...3539594b498a
<botifico> [haikuports/haikuports] Begasus 3539594 - sword, revbump, use icu74, disable static library (#10092)
<Begasus> oof
<Begasus> wiki to the resque :)
jmairboeck has joined #haiku
<botifico> [haikuports/haikuports] korli pushed 1 commit to master [+2/-2/±0] https://github.com/haikuports/haikuports/compare/3539594b498a...dbfd2a2aaa15
<botifico> [haikuports/haikuports] korli dbfd2a2 - lgogdownloader: bump version
hightower2 has joined #haiku
<botifico> [haikuports/haikuports] korli pushed 1 commit to master [+2/-2/±0] https://github.com/haikuports/haikuports/compare/dbfd2a2aaa15...898533d01cfe
<botifico> [haikuports/haikuports] korli 898533d - ninja: move to dev-build
<botifico> [haikuports/haikuports] korli pushed 1 commit to master [+2/-2/±0] https://github.com/haikuports/haikuports/compare/898533d01cfe...1779a0f9b479
<botifico> [haikuports/haikuports] korli 1779a0f - meson: move to dev-build
<zard> That's a lot of commits :)
<botifico> [haikuports/haikuports] korli pushed 1 commit to master [+2/-2/±0] https://github.com/haikuports/haikuports/compare/1779a0f9b479...fb2704b35ea2
<botifico> [haikuports/haikuports] korli fb2704b - bmake: move to dev-build
bjorkint0sh has quit [Remote host closed the connection]
bjorkintosh has joined #haiku
bbjimmy has quit [Quit: Vision[]: i've been blurred!]
<botifico> [haikuports/haikuports] korli pushed 3 commits to master [+10/-10/±0] https://github.com/haikuports/haikuports/compare/fb2704b35ea2...3d8309774b3c
<botifico> [haikuports/haikuports] korli e8020a9 - automake: move to dev-build
<botifico> [haikuports/haikuports] korli 6c2d96a - libtool: move to dev-build
<botifico> [haikuports/haikuports] korli 3d83097 - autoconf: move to dev-build
<botifico> [haikuports/haikuports] korli pushed 2 commits to master [+3/-3/±0] https://github.com/haikuports/haikuports/compare/3d8309774b3c...10cb0ce40a35
<botifico> [haikuports/haikuports] korli f56cf6e - netsurf_buildsystem: move to dev-build
<botifico> [haikuports/haikuports] korli 10cb0ce - scons: move to dev-build
bbjimmy has joined #haiku
<zard> I see, moving a bunch of tools to dev-build. Wonder where those were before
<Begasus> dev-util :)
<zard> and sys-devel :)
<Begasus> didn't check all :)
<zard> So you
<botifico> [haikuports/haikuports] korli pushed 2 commits to master [+6/-6/±0] https://github.com/haikuports/haikuports/compare/10cb0ce40a35...2090b64222be
<botifico> [haikuports/haikuports] korli f1a328e - kbuild: move to dev-build
<botifico> [haikuports/haikuports] korli 2090b64 - gn: move to dev-build
<zard> So you're folder structure is based off of Gentoo?
<Begasus> new sub directory also
<Begasus> yep
<Begasus> makes more sense also
<Begasus> once korli is up and running, nothing can stop him :D
<zard> :D
<botifico> [haikuports/haikuports] korli pushed 1 commit to master [+2/-2/±0] https://github.com/haikuports/haikuports/compare/2090b64222be...3630e6389c29
<botifico> [haikuports/haikuports] korli 3630e63 - gyp: move to dev-build
<andreasdr[m]> Arrrr
<zard> Arrr :)
<Begasus> k, let's see if this works for postgrsql
freakazoid332 has joined #haiku
nosycat has joined #haiku
mmu_man has quit [Ping timeout: 480 seconds]
<bbjimmy> It seems that the latest update broke Falcon hrev57576
<bbjimmy> state: Call (abort() called)
<bbjimmy> whatever that means.
frkzoid has quit [Ping timeout: 480 seconds]
<zard> No other output?
mmu_man has joined #haiku
<Begasus> issues reported bbjimmy
<Begasus> hrev57575 is the one that broke it
<Begasus> and a "few" others
<zard> Issue URL: github.com/haikuports/haikuports/issues/10071
<zard> Alas, the problem isn't obvious
<Begasus> major change is the build switch to ICU74
mr_lou has joined #haiku
Begasus_32 has joined #haiku
TMM has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
TMM has joined #haiku
crash_2 has joined #haiku
crash_ has quit [Read error: Connection reset by peer]
crash_2 is now known as crash_
crash_ is now known as Guest2199
HaikuUser has joined #haiku
HaikuUser has quit []
<andreasdr[m]> zard: Arrrrrr.
BrunoSpr has joined #haiku
<Begasus> 3 of 192 tests failed (not bad considering the tests didn't run before) :P
<BrunoSpr> hello all,
<BrunoSpr> hello Begasus
<Begasus> Hi BrunoSpr
BrunoSpr has quit []
<nosycat> Hi there!
<Begasus> Hi nosycat
BrunoSpr has joined #haiku
<Begasus> k, PR for postgresql12 files, could use a second look :)
<Begasus> files/filed*
* Begasus suspects OscarL is around ...
<bjorkintosh> offer peeps, Begasus.
zdykstra has joined #haiku
<Begasus> nah, keeping all bjorkintosh :)
<bjorkintosh> tsk tsk.
<Begasus> two lang ones now .. R and swift ..
<augiedoggie> hm, someone should probably remove "amazon smile" from https://www.haiku-inc.org/donate/ as amazon no longer supports it
<Begasus> coolcoder613, maybe something for you? "Microsoft is seeking a software architect to port Microsoft 365 to Rust | TechSpot" ;)
<nosycat> I thought we had R already.
<Begasus> switching ICU dependency nosycat
<Begasus> atm still uses ICU66
<nosycat> Ooh, okay.
<Begasus> still good :)
<nosycat> Doesn't impact me, just curious.
<Begasus> np, rkward still looking ok
BrunoSpr has quit [Quit: Vision[]: Ich wurde gewaschen!]
BrunoSpr has joined #haiku
HaikuUser has joined #haiku
BrunoSpr has quit []
v_harkonnen has quit [Ping timeout: 480 seconds]
B2IA has quit [Quit: Vision[]: i've been blurred!]
B2IA has joined #haiku
coolcoder613 has quit [Ping timeout: 480 seconds]
mmu_man has quit [Ping timeout: 480 seconds]
coolcoder613 has joined #haiku
HaikuUser has quit [Quit: Vision[]: i've been blurred!]
<botifico> [haikuports/haikuports] Begasus pushed 1 commit to master [+0/-0/±1] https://github.com/haikuports/haikuports/compare/3630e6389c29...5f6721638599
<botifico> [haikuports/haikuports] Begasus 5f67216 - R, switch to icu74 (#10094)
<Begasus> still looking (working) good it seems :) https://0x0.st/HdPY.png
v_harkonnen has joined #haiku
HaikuUser has joined #haiku
HaikuUser has quit []
<botifico> [haikuports/haikuports] Begasus pushed 1 commit to master [+0/-0/±1] https://github.com/haikuports/haikuports/compare/5f6721638599...e4abe7bebdd0
<botifico> [haikuports/haikuports] Begasus e4abe7b - ixion, revbump, use boost1.83 (#10095)
<Habbie> botifico is https://github.com/TkTech/notifico ?
<Habbie> oh i see the hostname in /whois, so yes :)
<Begasus> he's busy today :)
<Habbie> :)
<Habbie> i was wondering suddenly, because i set up a different bot for another project recently
<botifico> [haikuports/haikuports] Begasus pushed 1 commit to master [+0/-0/±1] https://github.com/haikuports/haikuports/compare/e4abe7bebdd0...cb418f206ad2
<botifico> [haikuports/haikuports] Begasus cb418f2 - orcus, revbump, use boost1.83 (#10096)
<Begasus> simular to this one?
<Habbie> yes
tuaris has joined #haiku
<Habbie> less colorful though
<Habbie> and in our case, more focused on conversations in issues/PRs
<Habbie> it's a lightly modified fork of https://github.com/irccloud/irccat
<Begasus> still nice, up and running
* zard hops onto #powerdns out of curiosity
<zdykstra> I use https://n.tkte.ch/ on a few projects
<zdykstra> oh, I misread what Habbie posted. Derp.
<Habbie> actually i was wondering where the -service- was
* zdykstra puts a dunce hat on and sits himself in timeout for 10 minutes
<Habbie> i just found the notifico source
<Habbie> had i known, i might not have set up my own bot ;)
<Begasus> too late to switch?
<Habbie> definitely not
<Habbie> i'm going to observe the bot here for a while before i decide ;)
AD_MOS2 has joined #haiku
AD_MOS has quit [Read error: Connection reset by peer]
coolcoder613_ has joined #haiku
<nekobot> [haiku/haiku] waddlesplash pushed 1 commit to master [hrev57578] - https://git.haiku-os.org/haiku/log/?qt=range&q=bd34f534dd41+%5E7804ba6054a3
<nekobot> [haiku/haiku] bd34f534dd41 - libroot: Disable -Werror and re-enable safeClone usage.
Begasus_32 has quit [Quit: Vision[]: Gone to the dogs!]
<Begasus> one down :)
coolcoder613 has quit [Ping timeout: 480 seconds]
<Begasus> time to close down here
<Begasus> cu peeps!
Begasus has quit [Quit: Vision[]: i've been blurred!]
v_harkonnen has quit [Ping timeout: 480 seconds]
coolcoder613 has joined #haiku
coolcoder613_ has quit [Ping timeout: 480 seconds]
<botifico> [haikuports/haikuports] korli pushed 1 commit to master [+4/-4/±0] https://github.com/haikuports/haikuports/compare/cb418f206ad2...e5dbf550c204
<botifico> [haikuports/haikuports] korli e5dbf55 - cmake: bump version
andreaa72 has joined #haiku
andreaa72 has left #haiku [#haiku]
x10z has joined #haiku
v_harkonnen has joined #haiku
nosycat has quit [Quit: Leaving]
v_harkonnen has quit [Ping timeout: 480 seconds]
gouchi has joined #haiku
x10z has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
AlaskanEmily has quit [Remote host closed the connection]
v_harkonnen has joined #haiku
Nephele has joined #haiku
<Nephele> > hint: The '.git/hooks/commit-msg' hook was ignored because it's not set as executable.
<Nephele> ugh
<Nephele> so now "run chmod +x" has to be documented too?
<Nephele> .-.
x10z has joined #haiku
Anarchos has joined #haiku
mr_lou has quit [Remote host closed the connection]
mr_lou has joined #haiku
<Anarchos> hello
zard has quit [Quit: leaving]
<erysdren> hello Anarchos
ClaudioM has quit [Quit: leaving]
x10z has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<Anarchos> erysdren how goes ?
<erysdren> pretty good. i'm assembling a music video mix dvd
<Anarchos> sounds nice
<Anarchos> my music skills are : 2 years piano at age 8. And listening black metal at 45.
v_harkonnen has quit [Ping timeout: 480 seconds]
<Al2O3> any one want to buy some original BeOS clothing?
<Al2O3> I bought the auction clothing back in 2001, have had it here for 23 years packed away, vacuum sealed.
<Habbie> ww
<Habbie> wow
<Al2O3> well, wow or not, its in two boxes and came from the Be Inc. HQ auction.
<Al2O3> :)
<Al2O3> its just taking up space here.
<Habbie> where, roughly, is here? US?
<Al2O3> US yes.
<Al2O3> rocky mountains
<Al2O3> I will inventory it, mostly polo shirts, caps, t-shirts
<Habbie> cool :)
<Al2O3> the typical original stuff from Be.
<Al2O3> might be.
Nephele has quit [Quit: This computer has gone to sleep]
<Al2O3> never thought I'd consider selling original Be Inc stuff after I sold my boxens
<Al2O3> but I see there is this stuff around, and it should be worn by Haiku heads.
<Habbie> :)
<Al2O3> Instead of BeBobbins
<Habbie> lol
<Al2O3> as I used to call the Be Boys
Guest2199 is now known as crash_
<Al2O3> like bobble heads.
DKnoto has quit [Quit: Leaving]
v_harkonnen has joined #haiku
DKnoto has joined #haiku
jmairboeck has quit [Quit: Konversation terminated!]
mr_lou has quit [Quit: Leaving]
tombhadAC has joined #haiku
extrowerk_ has quit [Quit: Bye!]
extrowerk has joined #haiku
<botifico> [haikuports/haikuports] korli pushed 1 commit to noto [+1/-0/±0] https://github.com/haikuports/haikuports/commit/6bbe059d6c3d
<botifico> [haikuports/haikuports] korli 6bbe059 - noto: add recipe for version 24.2.1
<botifico> [haikuports] korli created branch noto - https://github.com/haikuports/haikuports
v_harkonnen has quit [Remote host closed the connection]
coolcoder613 has quit [Ping timeout: 480 seconds]
hightower2 has quit [Remote host closed the connection]
hightower2 has joined #haiku
AlienSoldier has joined #haiku
coolcoder613 has joined #haiku
hightower2 has quit [Remote host closed the connection]
hightower2 has joined #haiku
erysdren has quit [Quit: Konversation terminated!]
Anarchos has quit [Quit: Vision[]: i've been blurred!]
coolcoder613 has quit [Ping timeout: 480 seconds]
hightower2 has quit [Remote host closed the connection]
hightower2 has joined #haiku
hightower2 has quit [Remote host closed the connection]
hightower2 has joined #haiku
coolcoder613 has joined #haiku
hightower2 has quit [Remote host closed the connection]
hightower2 has joined #haiku
gouchi has quit [Remote host closed the connection]
coolcoder613 has quit [Ping timeout: 480 seconds]
coolcoder613 has joined #haiku
HaikuUser has joined #haiku
HaikuUser has quit [Quit: Vision[]: i've been blurred!]
HaikuUser has joined #haiku
coolcoder613 has quit [Ping timeout: 480 seconds]
HaikuUser2 has joined #haiku
mmu_man has joined #haiku
coolcoder613 has joined #haiku
HaikuUser2 has quit [Quit: Vision[]: i've been blurred!]
HaikuUser has quit [Quit: Vision[]: i've been blurred!]
HaikuUser has joined #haiku
HaikuUser has quit [Remote host closed the connection]
mmu_man has quit [Ping timeout: 480 seconds]
HaikuUser has joined #haiku
rodolphoeck has quit [Ping timeout: 480 seconds]
dominicm has quit [Ping timeout: 480 seconds]
utzig has quit [Ping timeout: 480 seconds]
coolcoder613 has quit [Ping timeout: 480 seconds]
mmu_man has joined #haiku
<HaikuUser> Hello