[2021-08-07T00:00:05Z] systemd [2021-08-07T00:01:04Z] owncast looks dope [2021-08-07T00:01:12Z] as a twitch replacement [2021-08-07T00:02:42Z] kyxor: where are you seeing that? [2021-08-07T00:03:24Z] han they just had some systemd examples there, but I hope it doesn't [2021-08-07T00:04:38Z] I think you can just use ffmpeg to stream [2021-08-07T00:05:21Z] hm looks like you can [2021-08-07T03:37:56Z] Hi [2021-08-07T03:40:14Z] Hi [2021-08-07T04:31:12Z] using distcc over ssh is even slower than compiling locally... [2021-08-07T04:32:32Z] Wouldn't it depend on your network speed [2021-08-07T04:32:42Z] Or local network ssh ? [2021-08-07T04:33:06Z] it's on the other side of the contenent [2021-08-07T04:33:26Z] Bruh [2021-08-07T04:33:35Z] What are you building ? [2021-08-07T04:33:44Z] just trying things :P [2021-08-07T04:33:47Z] For smaller stuff i guess it would be slower than compiling locally [2021-08-07T04:35:18Z] building the kernel with -j192 (number of cores combined * 2), the text doesn't feel like it's scrolling faster [2021-08-07T04:35:59Z] anyways, just trying stiff :P [2021-08-07T04:46:22Z] i imagine you'll probably start to get throttled by stdout [2021-08-07T04:47:33Z] the make output is nowhere near throttling speed (if that's the stdout you're talking about), that's why I say it feels slower :P [2021-08-07T07:02:13Z] when building something static, and it complains about undefined symbol, in a static lib [2021-08-07T07:02:19Z] do I have to merge symbols? [2021-08-07T07:03:07Z] depends on where those symbols belong to [2021-08-07T07:03:31Z] what does it complain about [2021-08-07T07:03:44Z] im trying to build st statically, and itll firstly complain about missing libX11 and libXft, both exist, but did not have static libs. so I included those [2021-08-07T07:03:47Z] ill give you the log [2021-08-07T07:04:35Z] wdym "included those" [2021-08-07T07:04:42Z] built them [2021-08-07T07:05:16Z] http://0x0.st/-4D5.bin [2021-08-07T07:05:59Z] do you have static libs for the dependencies of the dependencies of the dependencies [2021-08-07T07:06:25Z] libxcb static exists ? [2021-08-07T07:06:49Z] and libXrender static [2021-08-07T07:08:13Z] no, I dont belive I do. tbh, I havent checked them all, but that something I can do :p [2021-08-07T07:41:24Z] hm, I do belive I got all of them now. but seems to still produce the same error [2021-08-07T07:41:40Z] add lxcb manually to ldflags [2021-08-07T07:41:44Z] -lxcb [2021-08-07T07:42:00Z] /usr/lib/libxcb.a exists ? [2021-08-07T07:42:27Z] yep [2021-08-07T07:43:09Z] hold on, now it complains about libXft.a missing, ill add that aswell [2021-08-07T07:44:48Z] hm, that did not fix it. [2021-08-07T07:44:57Z] lo [2021-08-07T07:44:58Z] g [2021-08-07T07:46:27Z] http://0x0.st/-4DC.bin [2021-08-07T07:46:37Z] seems I need to specify alot of them. [2021-08-07T07:46:56Z] adding freetype aswell, and freetype-harfbuzz has alot of libs in its dep list [2021-08-07T07:46:57Z] yeah [2021-08-07T07:47:35Z] `pkg-config --libs fontconfig` [2021-08-07T07:47:37Z] thats why [2021-08-07T07:47:49Z] add --static [2021-08-07T07:47:57Z] to pkgconf calls in makefile [2021-08-07T07:48:01Z] --libs --static [2021-08-07T07:48:41Z] aah. ill sed that into the makefile then [2021-08-07T07:55:32Z] still complains. i added -lfontconfig aswell into the buildscript [2021-08-07T07:55:33Z] http://0x0.st/-4kr.bin [2021-08-07T07:56:39Z] umm its supposed to be --libs --static now --static .. [2021-08-07T07:56:41Z] not [2021-08-07T07:56:59Z] oh [2021-08-07T07:57:17Z] it will add everything -lfontconfig -lfreetype -lbz2 -lz -lpng16 -lm -lm -lz -lexpat [2021-08-07T07:57:28Z] nice [2021-08-07T08:01:29Z] worked ? [2021-08-07T08:02:15Z] it failed, but I dont belive all the libs for freetype is also static. so just gotta go through them and check, and rebuild those that dont [2021-08-07T08:47:27Z] strange. I cant seem to get freetype to have to appropriate symbols.. [2021-08-07T08:47:50Z] libpng static exists ? [2021-08-07T08:48:30Z] yes, /usr/lib/libpng.a is there [2021-08-07T08:49:12Z] I belive Ive rebuilt everything after building the static libs aswell. I could always doublecheck aswell, to be sure [2021-08-07T08:49:16Z] then whats it missing [2021-08-07T08:49:32Z] i have no clue. heres the log anyway http://0x0.st/-4kZ.bin [2021-08-07T08:51:09Z] Lol [2021-08-07T08:51:12Z] its missing its own symbols [2021-08-07T08:52:04Z] lol what? [2021-08-07T08:52:18Z] see the freetype-harfbuzz package build script [2021-08-07T08:52:21Z] its bad [2021-08-07T08:52:51Z] try enabling static libs in both build_freetpye and build_harfbuzz [2021-08-07T08:53:07Z] force remove freetype-harfbuzz before building [2021-08-07T08:54:42Z] libfreetyoe.a and libharfbuzz.a exist, but sure, ill remove it, and rebuild it agian [2021-08-07T08:56:10Z] https://github.com/dilyn-corner/KISS-static/blob/main/extra/freetype/build i guess dilyn had some issues, harfbuzz is just gone lol [2021-08-07T08:58:36Z] lol. rebuilding it from fresh sources didnt really change anything. but perhaps Ill try to get rid of harfbuzz aswell [2021-08-07T08:58:56Z] Getting rid of harfbuzz wont work if something needs it [2021-08-07T08:59:02Z] true [2021-08-07T09:40:31Z] would it make any differnce if one used a different buildsystem though? seeing as freetype supports both cmake, and meson. + the configure script obviously [2021-08-07T09:40:48Z] I noticed dilyn switched between them. [2021-08-07T10:07:48Z] aw, wtf, now freetype-harfbuzz suddenly has a circular dependency on itself. ffs... [2021-08-07T10:10:20Z] thats why i said force remove [2021-08-07T10:10:52Z] well, I could easily remove it earlier, but now I suddenly cant.. in any case, just remove the files, then I suppose? [2021-08-07T10:11:22Z] KISS_FORCE=1 kiss r [2021-08-07T10:11:24Z] ? [2021-08-07T10:11:42Z] its on, but didnt work [2021-08-07T10:12:11Z] oh so kiss just bails out saying there s a circular dep [2021-08-07T10:12:24Z] just rm /var/db/kiss/installed/freetype-harfbuzz/depends [2021-08-07T10:13:21Z] yes [2021-08-07T10:13:54Z] now its gone again [2021-08-07T11:29:25Z] alright, finally moving forward. dilyn had it right in his buildscript. no longer nags about libfreetype.a [2021-08-07T11:29:46Z] instead its erroring out on libxcb again :') [2021-08-07T13:26:20Z] should KISS_FORCE ignore circular deps? [2021-08-07T13:28:44Z] ^no, I dont think it should. the whole point is to force remove packages [2021-08-07T13:30:56Z] it could perhaps warn about it though. like fyi, its a circular dep [2021-08-07T13:32:04Z] it should skip all but necessary checks to prevent the system from exploding, since it's name is KISS_FORCE :p [2021-08-07T13:32:48Z] or that :p [2021-08-07T14:37:15Z] Hi guys, I'm having some trouble after moving to wayland [2021-08-07T14:37:43Z] When trying to launch sway i get [wlr] [libseat] [libseat/backend/seatd.c:78] Could not connect to socket /run/seatd.sock: No such file or directory [2021-08-07T14:37:58Z] Has anyone else had this? [2021-08-07T14:38:33Z] ln -s /etc/sv/seatd /var/service/ [2021-08-07T14:38:35Z] enable the service [2021-08-07T14:38:43Z] durrr [2021-08-07T15:35:33Z] While I'm here, I was also having trouble with the wyverkiss install. `tar xvf "$OLDPWD/$file"` would fail at ./etc/ssl/misc/tsget.pl [2021-08-07T15:35:58Z] error message: tar: Exiting with failure status due to previous errors [2021-08-07T15:36:00Z] tar xvf "$OLDPWD/$file" 9.23s user 2.00s system 118% cpu 9.514 total [2021-08-07T17:11:07Z] Hello someone can help?My pc(BIOS) dont boot grub, its make a reboot loop [2021-08-07T17:12:55Z] Does it try to load the kernel or what [2021-08-07T17:13:01Z] When does it start rebooting [2021-08-07T17:14:04Z] Only the BIOS appears and reboots [2021-08-07T23:09:25Z] hi I'm fairly new to the kiss pm. I'm trying to make a package that's just a bash script that needs to be able to be moved to /bin. when setting up the build file do I need to extract the archive? should I just cp it to /bin or is there a better way? also how to I handle uninstalls? [2021-08-07T23:26:33Z] duplex: kiss will handle the unpacking, and you can use cp in the build file, kiss itself handles uninstalls as well. [2021-08-07T23:31:00Z] soliwilos: will it remove the file from /bin automatically? [2021-08-07T23:31:37Z] also is there a way to gen checksums without kiss (i.e. who checksum algo does kiss use) [2021-08-07T23:31:41Z] *what [2021-08-07T23:34:04Z] duplex: Yes, if you run "kiss r myscript-package" the script from /bin will be removed. [2021-08-07T23:36:01Z] It uses sha256 checksums. [2021-08-07T23:37:18Z] dublex: "kiss c" generates checksums [2021-08-07T23:37:55Z] As far as I know, kiss just uses whatever sha256 utility it finds to be available. [2021-08-07T23:43:06Z] I think some here have changed it to use blake3.