[2022-11-06T03:22:36Z] Hi [2022-11-06T04:22:22Z] Hi [2022-11-06T05:31:46Z] testuser[m]: i'm against meta packages [2022-11-06T05:32:19Z] if you want to avoid hardcoding a list i have a better idea [2022-11-06T05:33:40Z] we could make /var/db/kiss/installed repo-aware [2022-11-06T05:33:58Z] i.e install/copy packages to /var/db/kiss/installed// instead of /var/db/kiss/installed/ [2022-11-06T05:34:12Z] this way we could fetch core packages at runtime [2022-11-06T05:34:17Z] and exclude them [2022-11-06T05:35:15Z] Hmm seems too intrusive, and now it requires hardcoding the repo "core" instead of the name of a meta pkg. someone could have gnugrep set as their *grep but it's in extra/ repo so [2022-11-06T05:44:20Z] metapackages install dependencies that i don't want. without provides system they are even more distructive [2022-11-06T05:45:03Z] i have had a bad time with them on other distros. i would prefer to not have them at all [2022-11-06T05:45:40Z] let's keep things simple and just document when needed [2022-11-06T05:46:25Z] I mean it would work like by default kiss would have a meta core package installed which includes baselayout, busybox, openssl, musl, gcc and whatever else. If someone switches their coreutils for example, they'll override the meta pkg with deps as toybox, gnugrep etc instead of busybox [2022-11-06T05:46:31Z] But it's clunky without provides [2022-11-06T05:48:07Z] For sandbox alone it could be solved by testing owners of a hardcoded list of posix specified utils but meh [2022-11-06T05:51:01Z] what us a use case for a meta package, just to have many packages bundled together at installation time? [2022-11-06T05:51:11Z] provides system can only get so useful [2022-11-06T05:52:57Z] What [2022-11-06T05:53:05Z] It's for grouping pkgs [2022-11-06T05:53:39Z] Here it's group of pkgs that all pkg assumed are installed at build time [2022-11-06T05:53:42Z] assume* [2022-11-06T05:54:01Z] gcc, openssl, make etc. assumed [2022-11-06T05:54:12Z] Now for a sandbox you only want to allow access to what the pkg explicitly requires [2022-11-06T05:54:26Z] It can't explicitly request gcc or openssl cuz someone could be using clang or libressl [2022-11-06T05:54:42Z] Ignore openssl part, that's mentioned in depfile [2022-11-06T05:54:46Z] say busybox vs toybox [2022-11-06T05:57:47Z] wait perhaps just having provides system solve this problem? [2022-11-06T05:58:32Z] one would have to hardcode provides names tho: e.g ssl, cc, make etc [2022-11-06T05:58:48Z] Yeah [2022-11-06T05:58:51Z] but it still better [2022-11-06T05:59:22Z] But why not have one pkg to provide all those instead of individual [2022-11-06T05:59:41Z] They can be made a bit more general ig, like toolchain, coreutils [2022-11-06T05:59:50Z] But every pkg needs them so i don't see a point [2022-11-06T05:59:53Z] in splitting [2022-11-06T06:00:31Z] Like there's no pkg that needs gcc but doesn't need cp/mv [2022-11-06T06:03:16Z] because individual is more explicit than opaque meta package? [2022-11-06T06:05:33Z] look, the fact that we hardcode core packages is a temporary [2022-11-06T06:05:33Z] There should be a limit to explicitness else it'll become a mess [2022-11-06T06:06:01Z] when we get provides system core packages are no longer explicit [2022-11-06T06:06:06Z] implicit* [2022-11-06T06:06:31Z] Like if you wanted to go super explicit you could have a provider for every single command [2022-11-06T06:07:13Z] say for the cc package, does that include ld, strip etc [2022-11-06T06:07:35Z] If so then it should be called toolchain [2022-11-06T06:07:42Z] Which introduces some opaquenes [2022-11-06T06:10:20Z] can't tell now [2022-11-06T06:10:25Z] we need to have a clear picture which packages should be converted to provides [2022-11-06T06:12:30Z] then i can tell whether metapackage is viable or not [2022-11-06T06:13:51Z] maybe there's some way to abuse provides system to implement groups [2022-11-06T06:14:16Z] if such exists i would prefer it [2022-11-06T06:16:27Z] btw [2022-11-06T06:16:47Z] there's already a request to make gmake explicit [2022-11-06T06:17:52Z] how with your toolchain approach it would look? [2022-11-06T06:18:43Z] fuck my net [2022-11-06T06:18:49Z] slow as shit [2022-11-06T06:21:39Z] I wouldn't fuck a router [2022-11-06T06:21:55Z] User would override (or provide) the toolchain meta pkg with deps set to bmake instead of `gmake`, and pkgs that explicitly need gnu features would depend on `gmake` instead of not having any mention of make at all [2022-11-06T06:22:10Z] like base and base-devel? [2022-11-06T06:26:24Z] if package need posix make, would it still depend on toolchain? assuming that toolchain depends on gmake [2022-11-06T06:26:46Z] maybe a check at build time? [2022-11-06T06:27:19Z] idk anyone who uses posix make [2022-11-06T06:27:28Z] I doubt it would work with most packages a system needs [2022-11-06T06:27:59Z] i use and strive to write Makefiles compatible with it [2022-11-06T06:31:36Z] hm wait toolchain could depend on provided make instead of gmake [2022-11-06T06:31:57Z] and package could explicitly depend on gmake [2022-11-06T06:32:44Z] sounds like a big headache to implement it properly in dependency resolver [2022-11-06T06:37:05Z] yeah these nested levels of provides would drive me mad [2022-11-06T06:39:56Z] does our make depend on make? lol [2022-11-06T06:40:13Z] https://codeberg.org/kiss-community/repo/src/branch/master/core/make/build#L9 [2022-11-06T06:40:16Z] lol it does [2022-11-06T06:43:32Z] bruh [2022-11-06T06:54:58Z] aha there's build.sh available [2022-11-06T06:55:32Z] even gcc depends on itself so [2022-11-06T06:56:26Z] yeah i mean [2022-11-06T06:56:40Z] it uses host gcc if available [2022-11-06T06:56:57Z] if not, it uses bundled one [2022-11-06T06:57:02Z] so it's fine [2022-11-06T06:59:36Z] * illiliti still think that weak dependencies is a nice addition for kiss [2022-11-06T07:10:43Z] testuser[m]: have you applied cherry pick script? does it work for you? [2022-11-06T07:11:50Z] no rush, just curious [2022-11-06T07:11:58Z] I'll check it now when i get on pc [2022-11-06T07:12:21Z] There's no bundled gcc tho [2022-11-06T07:12:24Z] Wdym by that [2022-11-06T07:12:28Z] U always need a compiler [2022-11-06T07:14:15Z] what does --disable-bootstrap do then? [2022-11-06T07:14:41Z] Prevents multi stage build [2022-11-06T07:15:31Z] It's to test for miscompilations [2022-11-06T07:21:10Z] ah right [2022-11-06T07:27:58Z] Beep boop [2022-11-06T08:08:07Z] hi [2022-11-06T08:09:19Z] hi [2022-11-06T09:15:19Z] illiliti: works fine [2022-11-06T09:15:32Z] thanks [2022-11-06T09:23:25Z] nice [2022-11-06T10:43:04Z] 🐱 [2022-11-06T11:49:59Z] The machine is 1000x faster - so a 60 second boot time in 1985 should be 60 ms in 2014 [2022-11-06T12:49:09Z] USB-C actually sucks. Government should not decide about things they have no clue. [2022-11-06T13:11:03Z] Isn't apple just planning on supporting the port and not the protocol? [2022-11-06T14:37:03Z] can mesa provide GL libraries without libglvnd on AMD/Intel systems? [2022-11-06T14:37:35Z] or am i mistaken [2022-11-06T14:39:17Z] mesa doesnt seem to build libGL tho [2022-11-06T14:39:46Z] yeah i think it might be a X thing not a wayland thing [2022-11-06T14:43:43Z] wayland uses egl [2022-11-06T14:43:59Z] yeah [2022-11-06T15:02:25Z] how do i make kiss force overwrite etc files [2022-11-06T15:02:51Z] and delete if possible since some files remained [2022-11-06T15:05:26Z] not possible atm [2022-11-06T15:10:54Z] t [2022-11-06T15:10:55Z] far [2022-11-06T15:49:30Z] degstop lives :DDD [2022-11-06T15:49:50Z] whats a degstop [2022-11-06T15:50:05Z] degstop is degstop [2022-11-06T15:52:11Z] but what is a degstop in a degstop is a degstop [2022-11-06T15:52:17Z] - w- [2022-11-06T15:52:30Z] i'll tell you when you're older [2022-11-06T15:54:05Z] im old [2022-11-06T15:54:12Z] im so so old [2022-11-06T15:54:21Z] not old enough kiddo [2022-11-06T15:54:55Z] frick [2022-11-06T15:56:51Z] degstop isnt in any dictionary [2022-11-06T15:57:06Z] is just literally just locked by reality itself until im older [2022-11-06T15:59:03Z] Desktop [2022-11-06T16:00:04Z] DESKTOP [2022-11-06T16:00:32Z] ok thank you old person [2022-11-06T16:44:02Z] hello everyone [2022-11-06T16:44:07Z] i am having a VERY odd problem [2022-11-06T16:44:21Z] i’m using 500mb of ram without any user processes running [2022-11-06T16:44:32Z] i’ve tried different kernel configurations [2022-11-06T16:44:39Z] three, to be exact, and nothing changes [2022-11-06T17:00:25Z] 500mb without sway [2022-11-06T17:01:23Z] yep [2022-11-06T17:01:54Z] without anything at all [2022-11-06T17:02:41Z] no running process takes this much memory it could be a kernel process [2022-11-06T17:02:51Z] Check kworkers [2022-11-06T17:02:56Z] ps sort? [2022-11-06T17:04:10Z] yeah sorting by %mem doesnt show the process [2022-11-06T17:04:10Z] top [2022-11-06T17:04:17Z] top [2022-11-06T17:04:56Z] yeah neither does top show a process with much VSZ other than user processes like services which dont take that puch [2022-11-06T17:06:35Z] something in dmesg i did notice (which is the only starting point available) is 'used greatest stack depth: XXXXX bytes left' [2022-11-06T17:06:49Z] the dmesg is a bit interesting [2022-11-06T17:07:40Z] https://termbin.com/fvg8 [2022-11-06T17:11:53Z] amdgpu [2022-11-06T17:11:58Z] btrfs [2022-11-06T17:12:03Z] microcode [2022-11-06T17:12:07Z] firmware [2022-11-06T17:12:15Z] it could be anything [2022-11-06T17:12:34Z] i removed firmware for this specific purpose [2022-11-06T17:12:46Z] microcode doesnt exist [2022-11-06T17:12:57Z] me and others use btrfs and memory usage would never get this high [2022-11-06T17:13:09Z] did you build kernel with builtin modules? [2022-11-06T17:13:22Z] amdgpu is a module [2022-11-06T17:13:31Z] so that firmwrae stuff doesnt get built into the kernel ig [2022-11-06T17:14:01Z] as for btrfs the 'nocal' option is on [2022-11-06T17:14:07Z] noacl [2022-11-06T17:14:46Z] My server is at 400mb with synapse and postgres running l [2022-11-06T17:15:04Z] i don't know man [2022-11-06T17:15:21Z] it is either btrfs or amdgpu or other modules [2022-11-06T17:15:27Z] yeah me neither this is confusing [2022-11-06T17:15:27Z] testuser: atlesat you have a clear idea of what takes memory [2022-11-06T17:15:43Z] dont know how to test that [2022-11-06T17:16:57Z] try to switch to more basic fs like ext4 or f2fs [2022-11-06T17:17:19Z] or disable amdgpu if it's possible [2022-11-06T17:17:26Z] and check [2022-11-06T17:17:59Z] can i get your lsmod output just in case? [2022-11-06T17:18:48Z] ~~lsmod | xargs rmmod~~ [2022-11-06T17:22:23Z] btw is this problem reproducible on previous kernels? [2022-11-06T17:22:54Z] might be worth to check if you didn't already [2022-11-06T17:25:10Z] what do you mean on previous [2022-11-06T17:35:15Z] before 6.0 [2022-11-06T17:48:17Z] illiliti: just an offtopic question: what does illiliti mean and where did it come from [2022-11-06T17:54:06Z] just a dumb nick, nothing more [2022-11-06T17:57:08Z] what noo [2022-11-06T17:57:14Z] it sounds cool that cant be the backstory [2022-11-06T17:57:24Z] you are hiding the cool backstory aren't you [2022-11-06T17:58:31Z] maybe [2022-11-06T18:02:13Z] give cool backstory [2022-11-06T18:06:26Z] illiliti: you were right its firmware [2022-11-06T18:06:31Z] its now a healthy(?) 136m [2022-11-06T18:08:13Z] i was playing some online game and came up with this nick [2022-11-06T18:08:31Z] i don't remember how my brain even managed to come up with it, but here it is [2022-11-06T18:09:24Z] GAME [2022-11-06T18:09:25Z] gamemA GMAE [2022-11-06T18:09:25Z] but what name did you have at the time you were playing the 'some online gmae' [2022-11-06T18:10:24Z] i had many names [2022-11-06T18:11:05Z] those were less "original" than this one [2022-11-06T18:12:27Z] What game [2022-11-06T18:12:39Z] yes what game [2022-11-06T18:13:36Z] browser game [2022-11-06T18:14:50Z] but that game died already [2022-11-06T18:15:29Z] it doesn't have same spirit like it was before [2022-11-06T18:19:23Z] what about you testuser [2022-11-06T18:27:16Z] I just stole it from some guy on frogging family server [2022-11-06T18:27:36Z] That tkg kernel and proton server thingy [2022-11-06T18:27:47Z] before it was abcdefgh...z [2022-11-06T18:33:53Z] what about paratham [2022-11-06T18:33:59Z] that's a kick cool name [2022-11-06T18:36:01Z] Lol [2022-11-06T18:36:14Z] Why do u always butcher it [2022-11-06T19:05:47Z] I'm not [2022-11-06T19:05:53Z] Its just a cool interesting [2022-11-06T19:05:57Z] Also um [2022-11-06T19:06:15Z] elinks https://termbin.com/ihxj no workie [2022-11-06T19:11:22Z] ld: no input files [2022-11-06T19:12:12Z] make changes ig [2022-11-06T19:12:19Z] 4.4 [2022-11-06T19:14:38Z] maybe ld broke because rust failed with ld rated error too [2022-11-06T19:14:50Z] termbin.com/9frlu [2022-11-06T19:15:31Z] should I try mold [2022-11-06T19:16:40Z] nvm that won't help [2022-11-06T19:22:10Z] bruh ld has nothing to do with make [2022-11-06T19:24:46Z] ok still my rust and elink broken [2022-11-06T19:24:52Z] hmmmm [2022-11-06T19:29:22Z] https://git.savannah.gnu.org/cgit/make.git/tree/NEWS [2022-11-06T19:30:49Z] o [2022-11-06T19:30:56Z] so rust need new updtae toom? [2022-11-06T19:31:22Z] Also ehrr where ostree gpgme GPGME_PTHREAD becaus ostree explode compile with no GPGME_PTHREAD [2022-11-06T19:33:08Z] ^ https://termbin.com/olat [2022-11-06T21:24:05Z] https://xed.sourceforge.net/ [2022-11-06T21:24:21Z] ^the only proper choice of editor [2022-11-06T21:24:41Z] > The most minimalist editor, written in the most bloated language! [2022-11-06T21:24:43Z] Lol [2022-11-06T21:25:19Z] the *only* problem I have with it is being a Tcl/Tk program [2022-11-06T21:25:38Z] otherwise, phenomenally comfy [2022-11-06T21:28:37Z] I remember when I 1st programmed in Tcl and discovered its function identifiers could have spaces, and I was like: "WTF" [2022-11-06T21:31:40Z] i've never programmed in tcl myself, although i've heard it's a fairly capable language [2022-11-06T21:33:00Z] Indeed, it is. [2022-11-06T21:56:58Z] anyone think they can help me out with compiling `ostree`? i keep getting an error about GPGME_PTHREAD [2022-11-06T21:57:32Z] https://termbin.com/m6qa8 [2022-11-06T23:31:32Z] https://ssnf.xyz/blog/net-unixs-unofficial-default-network-manager.html [2022-11-06T23:31:42Z] ^you guys might find this neat [2022-11-06T23:31:54Z] seems very KISS, conceptually [2022-11-06T23:36:32Z] Nice [2022-11-06T23:36:50Z] I remember that guy's Git server implementation. [2022-11-06T23:37:25Z] Even simpler than Cgit. [2022-11-06T23:37:56Z] Tiny and pretty. gemini://gemini.ctrl-c.club/~phoebos/logs/kisslinux-2022-11-06.txt

-- Leo's gemini proxy

-- Connecting to gemini.ctrl-c.club:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/plain; charset=utf-8

-- Response ended

-- Page fetched on Sun Jun 2 11:42:27 2024