[2026-08-03T09:53:51Z] gm kissers [2026-08-03T09:53:57Z] hyd [2026-08-03T10:07:15Z] hi [2026-08-03T10:07:23Z] i'm doing good [2026-08-03T10:07:53Z] just realized how terrible it is to have the kiss pkg manager handle rust crates fetching [2026-08-03T10:08:19Z] now it makes me want to implement network blocking [2026-08-03T10:10:10Z] after spending an entire day trying to figure out how to make cargo look at the vendored git repos along with a kinda ugly script to look through the json metadata and generate a sources file or a .cargo/config.toml file that maps the git cargo sources to the vendored ones [2026-08-03T10:11:07Z] a whole madness, and the reason why i want to let cargo fetch the crates and git repos itself instead of scripting it by hand in each pkg template [2026-08-03T10:11:24Z] just like every other package maintainer does overall [2026-08-03T11:52:24Z] actually, stilic, you could've asked ;) [2026-08-03T11:52:27Z] I have a script just for that [2026-08-03T11:53:15Z] dery: uhm? [2026-08-03T11:53:53Z] for the cargo thing [2026-08-03T11:54:05Z] I have a script that with cargo and jq generates a source file [2026-08-03T11:54:16Z] there are surely edge cases but I'm using it for my custom rust packages [2026-08-03T11:54:30Z] dery: does it work with git sources [2026-08-03T11:54:35Z] wym [2026-08-03T11:54:49Z] you just go into the source dir and run the script [2026-08-03T11:55:20Z] I guess that could be automated but never felt the need to as I have to clone the software to test and whatnot anyways [2026-08-03T11:55:54Z] dery: https://codeberg.org/leanix/repo/src/commit/3ac75e55b9855616d7b6516dfa4da53f40f698e9/repo/gram/build#L111 [2026-08-03T11:57:00Z] uhhh... no idea [2026-08-03T11:57:05Z] I have never seen this thing in my life [2026-08-03T11:57:25Z] I usually handle submodules by just pasting them in `sources` if this is that [2026-08-03T11:58:08Z] dery: it's about fetching crates as git repos [2026-08-03T11:58:44Z] the code i have only works for the official registry [2026-08-03T11:59:06Z] really sorry, why would you want to fetch crates as git repos? [2026-08-03T11:59:23Z] I am not an active rust user so I'm definitely missing something [2026-08-03T12:00:41Z] dery: because the rust project i'm trying to package depends on crates that are dowloaded through git [2026-08-03T12:00:58Z] see this gentoo ebuild for example: https://codeberg.org/GramEditor/gram-gentoo/src/branch/main/app-editors/gram/gram-3.2.0.ebuild [2026-08-03T12:02:38Z] uh, well I guess that might need special handling indeed [2026-08-03T12:02:45Z] that could be done, i'm pretty sure [2026-08-03T12:03:00Z] wait I'll put my custom extensions in a repo or something [2026-08-03T12:03:07Z] so that you can see what I mean [2026-08-03T12:05:33Z] dery: i think it might be easier to just fetch the crates in a separate step and then sandbox the build to disallow network access [2026-08-03T12:05:50Z] all using cargo cli [2026-08-03T12:06:11Z] without messing up with the matadata manually and whatnot [2026-08-03T12:06:23Z] that solution has been discussed multiple times and for one reason or another it hasn't been done [2026-08-03T12:06:34Z] sandboxing is a good thing tho and I also have a (way more raw) script for that [2026-08-03T12:06:41Z] that said [2026-08-03T12:06:50Z] https://codeberg.org/dery/kiss-exts/src/branch/main/kiss-gencargo [2026-08-03T12:07:23Z] Those are random scripts I built, I hope they don't have like, weird comments lol xD [2026-08-03T12:07:58Z] yea I think I could change the script to check for a git source pretty easily [2026-08-03T12:08:07Z] I'm cloning that project of yours to account for that [2026-08-03T12:10:46Z] dery: gram? [2026-08-03T12:10:56Z] i didn't make gram [2026-08-03T12:11:05Z] only the leanix repo [2026-08-03T12:11:11Z] yea sorry not yours as in you made [2026-08-03T12:13:07Z] fair [2026-08-03T12:13:22Z] i got a lot of stuff packaged there [2026-08-03T12:13:26Z] including xfce4 [2026-08-03T12:14:19Z] btw thanks for the help! [2026-08-03T12:14:42Z] it's my first time actually looking into kiss and it's been pretty cool so far [2026-08-03T12:15:12Z] yw, happy to see that :D [2026-08-03T12:16:16Z] BTW, I too had various ideas like yours and most are valid. Lately I'm switching to the idea of scripting as much as possible and making the package manager the "source of truth" instead of downloading everything through a different binary [2026-08-03T12:16:48Z] it seems like a decent solution given that basically everything accounts for this usecase and I think a few package managers do only "direct" downloads like us [2026-08-03T12:18:34Z] tbh it's not bad [2026-08-03T12:18:46Z] even portage from gentoo actually does that [2026-08-03T12:23:19Z] dery: if you could figure out how to add vendored git crates to rust packages, that would be cool [2026-08-03T12:23:46Z] i struggled a lot and i don't have enough knowledge of how cargo works sadly [2026-08-03T12:37:03Z] I'll try! [2026-08-03T12:37:13Z] sorry for the delay between the answers, got interrupted [2026-08-03T12:52:19Z] alr [2026-08-03T12:52:23Z] i havent figured out how i want to solve that myself either [2026-08-03T12:52:36Z] bpm just has an allow_network toggle for templates for now [2026-08-03T12:52:47Z] ill probably do vendoring later [2026-08-03T12:54:38Z] nothing ive packaged so far needs cargo or anything similar so i figure ill deal with it when the time comes [2026-08-03T13:42:48Z] kris_: i think it's easier to add a "download" and let cargo handle it itself [2026-08-03T13:56:54Z] stilic: probably [2026-08-03T13:57:03Z] but if i wanted easy i wouldn't be making a package manager :p [2026-08-03T16:58:53Z] stilic: I think I got it! [2026-08-03T16:59:05Z] oh do I love JQ [2026-08-03T16:59:39Z] dery: did you got it to build? [2026-08-03T16:59:54Z] oh no I didn't try building it [2026-08-03T16:59:57Z] I made the source thing [2026-08-03T17:00:00Z] with git support [2026-08-03T17:00:02Z] wait lemme push it [2026-08-03T17:01:07Z] aight check that file again it should have the new jq script [2026-08-03T17:01:12Z] it now generates git stuff that actually downloads [2026-08-03T17:01:26Z] (I made a dummy package for that and it populates the vendor directory correctly afaict) [2026-08-03T17:01:59Z] for example: [2026-08-03T17:02:00Z] git+https://codeberg.org/GramEditor/rust-protobuf-native#a70e2d9986e931f2b883b661bf8f4471c5398b7e vendor [2026-08-03T17:02:15Z] all thanks to the power of JQ and RegExes!!!! [2026-08-03T17:02:22Z] again, I really like JQ [2026-08-03T17:03:49Z] cool [2026-08-03T17:03:51Z] thanks [2026-08-03T17:03:57Z] yw! [2026-08-03T17:04:26Z] don't hesitate to ask for more help if you need it [2026-08-03T17:04:50Z] alr [2026-08-03T17:04:53Z] lemme try it [2026-08-03T17:10:34Z] oh right, protip if you don't know this as you're new stilic [2026-08-03T17:10:57Z] if you put any tool starting with `kiss-` into your path, it becomes an "extension" [2026-08-03T17:11:18Z] that is, you can run them with `kiss whatever` and they show up under `kiss H` [2026-08-03T17:11:31Z] by path I mean any directory in the PATH environment variable [2026-08-03T17:13:56Z] the kiss extension thing is super cool [2026-08-03T17:14:06Z] i might add something like that to bpm idk yet [2026-08-03T17:14:19Z] dery: did you see i more or less finished my package manager after like 3 years [2026-08-03T17:14:33Z] oh awesome [2026-08-03T17:14:47Z] kristro when [2026-08-03T17:14:57Z] https://github.com/kkrruumm/bpm [2026-08-03T17:15:06Z] its called basix, bpm is basix package manager [2026-08-03T17:15:22Z] I've already rolled tarballs and it's more than usable its just missing daily driver packages for me [2026-08-03T17:15:41Z] is it (vaguely) based on kiss or is it completely handrolled? The help screen looks familiar :P [2026-08-03T17:16:04Z] i wouldn't say based on kiss but parts of it are inspired by it yes [2026-08-03T17:16:10Z] nice [2026-08-03T17:16:11Z] such as that [2026-08-03T17:16:22Z] kris you must make KRIS Linux [2026-08-03T17:16:31Z] https://github.com/kkrruumm/basix-packages/ [2026-08-03T17:16:35Z] here's the package repo [2026-08-03T17:16:44Z] Keep it Really Icredibly Simple [2026-08-03T17:16:52Z] incredibly, even [2026-08-03T17:16:53Z] the templates are just straight up cloned from xbps-src [2026-08-03T17:16:56Z] but with use flags [2026-08-03T17:17:07Z] the builds are properly fully isolated via unshare [2026-08-03T17:17:25Z] uh, nice [2026-08-03T17:17:29Z] the base build chroot is bootstrapped once and from that point on anything you build is in an overlayfs on top of that [2026-08-03T17:17:35Z] this is tackling some nice neurons [2026-08-03T17:17:48Z] its also only like 1450sloc atm [2026-08-03T17:17:50Z] that, btw, is the correct approach, IMO [2026-08-03T17:17:53Z] the package manager i mean [2026-08-03T17:17:55Z] I do something vaguely similar with my scripts [2026-08-03T17:17:59Z] but use bwrap because yes [2026-08-03T17:18:05Z] meh [2026-08-03T17:18:14Z] busybox and util-linux both have unshare [2026-08-03T17:18:32Z] how does the overlayfs thing work [2026-08-03T17:18:41Z] I kinda assumed that you had to have /some/ priviledge to do that [2026-08-03T17:18:46Z] hence the suid bwrap thing [2026-08-03T17:19:18Z] https://github.com/kkrruumm/bpm/blob/main/lib/sandbox.sh [2026-08-03T17:19:24Z] everything's in here and commented [2026-08-03T17:19:32Z] i need to document this at some point but im too lazy [2026-08-03T17:19:43Z] oh, I assume that it's thanks to the private mount namespace [2026-08-03T17:19:52Z] nice, thank you' [2026-08-03T17:20:04Z] just for reference, is bsd-3 compatible with mit? [2026-08-03T17:20:14Z] if I ever snatch something for my kiss sandboxing stuff :P [2026-08-03T17:20:54Z] i don't know but i don't really give a shit dery take what you want [2026-08-03T17:21:00Z] i think it is compatible [2026-08-03T17:21:04Z] that will do [2026-08-03T17:21:31Z] (I will still probably use bwrap because comfier but great to know) [2026-08-03T17:21:57Z] also interesting, everything is in a single template file? [2026-08-03T17:22:06Z] I guess you made dirs for the name and extra files like patches [2026-08-03T17:22:52Z] also kudos for adding structured project metadata, I oh so miss that with kiss [2026-08-03T17:31:50Z] dery: yeah, having things in like 5 different files is one of the things i really didnt like about kiss [2026-08-03T17:31:58Z] i basically just outright cloned xbps-src templates [2026-08-03T17:32:08Z] i kinda figured why change something i already thing is perfect [2026-08-03T17:32:12Z] think* [2026-08-03T17:32:49Z] a lot of this was pretty much just stolen from xbps-src and kiss and most of the 3 years was just trying to clean it up [2026-08-03T17:32:59Z] dery: i tried to run your script and use the file it generated but all the git repos were cloned on top of each othrr in `vendor` [2026-08-03T17:32:59Z] it's kind of not extensible at all [2026-08-03T17:33:09Z] like bpm is really just ingrained with itself ig [2026-08-03T17:33:10Z] heylo [2026-08-03T17:33:14Z] hi [2026-08-03T17:33:52Z] also, *most* of the packages that exist right now were basically 1:1 ported from kiss [2026-08-03T17:34:10Z] a few of my friends were supposed to be helping me package things but they aren't as of right now so im moving kinda slow on that front [2026-08-03T17:35:10Z] i need a *lot* more stuff than what i have right now to consider using it as a daliy driver [2026-08-03T17:35:36Z] but bpm itself seems good, a few of my friends have tried it out via a basix tarball and have liked it [2026-08-03T17:35:50Z] naturally i give it to one of my friends and the first thing she does is start packaging systemd in her overlay repo [2026-08-03T17:36:37Z] kris_: bruh [2026-08-03T17:36:48Z] nah i respect it [2026-08-03T17:36:59Z] one of the points of basix is to be super modifiable even if i disagree with said modifications [2026-08-03T17:37:09Z] none of my business what people do with their computers [2026-08-03T17:37:27Z] fair [2026-08-03T17:38:19Z] altrough i wonder what in the hell is the urge to package systemd [2026-08-03T17:38:31Z] she likes it, shrug [2026-08-03T17:38:45Z] she also packaged chimera-utils to replace busybox so [2026-08-03T17:39:12Z] almost like the first thing she wants to do is make a sub distro of a technically niche distro [2026-08-03T17:39:14Z] lmao [2026-08-03T17:39:26Z] atp this sounds like gentoo [2026-08-03T17:39:34Z] especially with use flags [2026-08-03T17:39:35Z] i mean, i basically reimplemented portage in posix shell [2026-08-03T17:39:44Z] just with saner package templates [2026-08-03T17:39:59Z] kinda sorta reimplemented portage anyway [2026-08-03T17:40:30Z] btw, is it compatible with xbps-src templates as-is? [2026-08-03T17:40:33Z] it's kinda wild to me that someone is actually using this now, i have a recording of it installing its first package literally 3 years ago almost to the day [2026-08-03T17:40:36Z] no absolutely not [2026-08-03T17:40:49Z] the variables are named differently, outside of that it's very close though [2026-08-03T17:40:59Z] if you ignore the use flags feature some things will probably port 1:1 [2026-08-03T17:41:13Z] the wrapper functions are also arbitrarily different [2026-08-03T17:41:14Z] alr [2026-08-03T17:41:18Z] e.g. binstall (mine) vs vinstall (void) [2026-08-03T17:41:25Z] where is that systemd package too [2026-08-03T17:41:33Z] idk if she's uploaded it yet, hang on [2026-08-03T17:41:54Z] yeah she has [2026-08-03T17:41:54Z] lol [2026-08-03T17:41:55Z] https://github.com/anoraktrend/frankenbasix [2026-08-03T17:43:13Z] impressive [2026-08-03T17:43:16Z] i respect it and i appreciate that one of my friends is actually helping out with packaging [2026-08-03T17:43:29Z] even if it's shit i don't care about [2026-08-03T17:43:41Z] tell her about gardenhouse [2026-08-03T17:44:01Z] it's pretty close to replace e.g. udev soon [2026-08-03T17:44:44Z] oh? i haven't heard anything about gardenhouse [2026-08-03T17:44:51Z] i was about to package eudev because that's something i kinda need myself [2026-08-03T17:44:59Z] https://gardenhouse.pinkro.se/ [2026-08-03T17:45:09Z] or potentially i'll just use mdevd, idk, i've admittedly never configured it [2026-08-03T17:45:16Z] kris_: i did a systemd-udevd package [2026-08-03T17:45:28Z] for kiss linux [2026-08-03T17:47:23Z] for my part i want to modernize kiss linux a bit [2026-08-03T17:48:08Z] by packaging what won't always fit the philosophy but is an usual requirement for anything pratical [2026-08-03T17:48:22Z] and also adding sandboxing [2026-08-03T17:48:48Z] yeah the lack of sandboxing hurts [2026-08-03T17:49:00Z] porting a lot of packages to basix directly from kiss i noticed a lot of shit that's just like, borked on kiss [2026-08-03T17:49:07Z] not *on* kiss but dependencies that are missing largely [2026-08-03T17:49:16Z] i figure maintainers just have them installed on their systems and it pulls them silently [2026-08-03T17:50:05Z] can you link me your udevd package? [2026-08-03T17:50:13Z] i never got it working on kiss years ago when i tried to daily drive it [2026-08-03T17:50:20Z] would be cool to have a reference for basix [2026-08-03T17:50:27Z] given basix is practically just kiss with a different package manager atm [2026-08-03T17:54:20Z] https://codeberg.org/leanix/repo/src/branch/main/repo/libudev-zero/sources [2026-08-03T17:54:33Z] https://codeberg.org/leanix/repo/src/commit/3ac75e55b9855616d7b6516dfa4da53f40f698e9/repo/libudev-zero/sources [2026-08-03T17:54:36Z] thankies [2026-08-03T17:55:45Z] yw [2026-08-03T18:00:14Z] actually you have a fair bit of stuff here i need [2026-08-03T18:01:18Z] god i miss being able to swap fn/ctrl on my t480 [2026-08-03T18:01:23Z] that's like the only drawback to libreboot [2026-08-03T18:01:28Z] my keyboard is stuck being incorrect >:( [2026-08-03T18:34:55Z] stilic: oops [2026-08-03T18:35:29Z] dery: dw it was quick to fix [2026-08-03T18:35:50Z] oh wait it works correctly though with my copy of kiss [2026-08-03T18:35:54Z] is it because of the git patch I made [2026-08-03T18:35:59Z] (it's probably that) [2026-08-03T18:36:32Z] now i'm struggling to make cargo recognize the vendored git crates [2026-08-03T18:36:46Z] no wait it's not supposed to change that [2026-08-03T18:36:48Z] a mystery [2026-08-03T18:37:25Z] uh shouldn't it work the same as other vendored crates? [2026-08-03T18:38:27Z] you could look at what 'cargo vendor' does [2026-08-03T20:18:54Z] dery: tbh it's easier to just fetch the stuff using cargo rather than trying to pile all the rust stuff in a kiss package sources file and scripting the exact same process by hand [2026-08-03T20:19:18Z] especially considering how complex the crates system is actually [2026-08-03T20:51:44Z] and also the fact that i have to maintain the same complex build script to manage the vendor dir, ensure the checksums are there, and such [2026-08-03T20:51:57Z] for EVERY rust package [2026-08-03T20:52:05Z] whatever works [2026-08-03T20:52:32Z] dery: except it won't [2026-08-03T20:52:44Z] I was referring about using cargo? [2026-08-03T20:52:58Z] dery: sorry [2026-08-03T20:53:03Z] no worries [2026-08-03T20:53:04Z] i didn't know [2026-08-03T20:53:09Z] yea it's fine [2026-08-03T20:53:13Z] language barrier and all [2026-08-03T20:53:18Z] I am not native either xD [2026-08-03T20:53:24Z] same [2026-08-03T20:53:27Z] anyway [2026-08-03T20:53:48Z] (yea if you wondered I didn't assume, I [2026-08-03T20:54:03Z] 've seen your account on codeberg [2026-08-03T20:54:06Z] sorry new keyboard [2026-08-03T20:54:28Z] but like yea it's fine if a package is too complex and requires internet. A lot of stuff unfortunately works this way [2026-08-03T20:54:32Z] i'm tired of trying to figure this out with manual scripting when big distros like arch and alpine straight up let cargo download everything itself [2026-08-03T20:54:36Z] I doubt that will be upstreamed into the package manager tho [2026-08-03T20:54:55Z] ftr useflags were explicitly refused IIRC [2026-08-03T20:55:54Z] been a long while though [2026-08-03T20:56:07Z] https://gitlab.archlinux.org/archlinux/packaging/packages/gram/-/blob/main/PKGBUILD?ref_type=heads#L65 [2026-08-03T20:56:17Z] dery: i don't want to do that [2026-08-03T20:56:53Z] i just want kiss to support a separate step in order to disallow network access [2026-08-03T20:57:03Z] again, that might be an issue [2026-08-03T20:57:08Z] ? [2026-08-03T20:57:12Z] as in [2026-08-03T20:57:22Z] features such as these have been discussed already [2026-08-03T20:57:31Z] it's been a long while note that [2026-08-03T20:57:57Z] but yea from experience I have a feeling that this feature proposal might not be agreed with by many people [2026-08-03T20:58:16Z] there exist(ed) a bunch of kiss forks already for diverging feature sets [2026-08-03T20:59:00Z] the thing is that without this feature, it won't Keep It Simple to package rust projects [2026-08-03T20:59:20Z] at best i would say that goes against the philosophy of kiss as a whole [2026-08-03T20:59:33Z] i'm really sorry to be this blunt: you know that this distro has literally refused to add software if "too complex"? [2026-08-03T20:59:48Z] heck we don't even have dbus [2026-08-03T20:59:52Z] and it can be made optional too [2026-08-03T20:59:57Z] trust me [2026-08-03T21:00:03Z] we tried that with version templates [2026-08-03T21:00:11Z] a literal VERSION placeholder inside the source file [2026-08-03T21:00:12Z] dery: is bubblewrap "too complex"? [2026-08-03T21:00:13Z] got reverted [2026-08-03T21:00:33Z] it isn't no [2026-08-03T21:00:36Z] IMO [2026-08-03T21:00:44Z] but I use flatpak and dbus so :P [2026-08-03T21:02:26Z] can i be blamed for spending the last day or so trying to do all the rust crate resolution code within a bare shell script that would have ended up duplicating functionnality cargo already had? [2026-08-03T21:02:31Z] no [2026-08-03T21:02:41Z] as in, you're right, it's pain [2026-08-03T21:02:45Z] that sounds backward to me [2026-08-03T21:02:57Z] java never got packaged for a reason [2026-08-03T21:03:05Z] ik i can fork kiss and all [2026-08-03T21:03:07Z] but [2026-08-03T21:03:13Z] one single feature [2026-08-03T21:03:15Z] that's it [2026-08-03T21:03:19Z] just heh, the original point of kiss was to have the minimum for a browser and media player [2026-08-03T21:03:31Z] again, we had lots of "one single feature"s that got reverted [2026-08-03T21:03:41Z] I'd recommend you to read the old dylan blogs [2026-08-03T21:03:50Z] if you really wanna talk philosophy [2026-08-03T21:04:02Z] https://kisslinux.github.io/ [2026-08-03T21:04:14Z] wait [2026-08-03T21:04:17Z] it's not that [2026-08-03T21:04:40Z] https://kisscommunity.org/archive/ [2026-08-03T21:04:55Z] dery: why is it still in the latest version of the original kiss repo then? [2026-08-03T21:05:05Z] (the VERSION marker) [2026-08-03T21:05:19Z] because, it was dylan's idea, back to much backlash [2026-08-03T21:05:23Z] it even got the repo out of repology [2026-08-03T21:05:37Z] just to be clear, I genuinely appreciate your enthusiasm [2026-08-03T21:05:45Z] woa it dery [2026-08-03T21:05:55Z] hi ery [2026-08-03T21:05:55Z] dery [2026-08-03T21:05:58Z] just... please, trust a minimum people who've been here long before you [2026-08-03T21:06:00Z] :33333333 [2026-08-03T21:06:05Z] (FUCK do I sound old)\ [2026-08-03T21:06:05Z] also what's goin on [2026-08-03T21:06:07Z] hi midd [2026-08-03T21:06:10Z] you ARE old [2026-08-03T21:06:16Z] new user proposing pre-fetching step [2026-08-03T21:06:26Z] once you turn eighteen you're officially an oldhead and certified unced [2026-08-03T21:06:29Z] which is cool and all but it's been discussed to death already [2026-08-03T21:07:01Z] dery: did the backslash came from the version marker's existance? [2026-08-03T21:07:04Z] yes [2026-08-03T21:07:27Z] are we talking about prefetching source or binaries or like what [2026-08-03T21:07:32Z] i should probably read the log but i'm not gonna [2026-08-03T21:07:33Z] source [2026-08-03T21:07:38Z] like with cargo [2026-08-03T21:07:44Z] * midfavila stares at [2026-08-03T21:07:50Z] i've never used cargo [2026-08-03T21:08:30Z] apparently the approach used by cbindgen doesn't account for git crates [2026-08-03T21:08:42Z] or something, I genuinely don't know as I don't use cargo either. Always just repackaged other stuff [2026-08-03T21:09:34Z] I have a fancy-schmancy sources generator that I have updated to include git support but now making the descriptions is apparently too annoying [2026-08-03T21:09:56Z] and well, I feel that, just that I genuinely doubt that in the year of our lord 2026 we're ever going to see a major feature added in without issues [2026-08-03T21:10:07Z] heck we'll have to see if we ever get sandboxing in at some point [2026-08-03T21:23:36Z] dery: which descriptions are you referring to [2026-08-03T21:25:33Z] sorry don't know the term [2026-08-03T21:25:39Z] the uh... support files [2026-08-03T21:25:47Z] the things cargo reads like checksums and such [2026-08-03T21:30:55Z] the only feature i need (especially since sandboxing is planned: https://codeberg.org/kiss-community/repo/issues/108) is something like a "prepare" file that gets executed before network limitations are put in place [2026-08-03T21:31:49Z] to be realistic, enforcing the use of kiss linux sources for everything won't always work, especially for rust projects [2026-08-03T21:32:19Z] where i had to duplicate the same core logic multiple times for various packages [2026-08-03T21:32:36Z] it clearly doesn't keep the process simple anymore