💾 Archived View for gemini.ctrl-c.club › ~phoebos › logs › freenode-kisslinux-2020-07-01.txt captured on 2021-12-17 at 13:26:06.

View Raw

More Information

-=-=-=-=-=-=-

2020-07-01T01:53:52 #kisslinux <dilynm> I kind of want to start using kde on the reg
2020-07-01T02:32:00 #kisslinux <xzcvczx> is reg your way of saying "not even if the sky was falling and i was on fire"?
2020-07-01T04:04:54 #kisslinux <dilynm> Or have a little more often than that
2020-07-01T04:05:05 #kisslinux <dilynm> s/have/maybe
2020-07-01T08:55:58 #kisslinux <xzcvczx> jedavies: btw have you tried running x86 executables through qemu on your pbp?
2020-07-01T09:20:18 #kisslinux <jedavies> xzcvczx: yes, I am testing using proot with a x86_64 kiss chroot on aarch64
2020-07-01T09:20:47 #kisslinux <jedavies> Some simple executables run OK, others fail with the message "Bus error", so not sure what I'm doing wrong there
2020-07-01T09:24:38 #kisslinux <xzcvczx> #define simple?
2020-07-01T09:24:53 #kisslinux <xzcvczx> as in hello world, or actual useful executables?
2020-07-01T09:32:30 #kisslinux <jedavies> Some things e.g. busybox "ls" run OK.  Running gcc fails with that error though.
2020-07-01T09:34:48 #kisslinux <jedavies> May try without proot also, just specifying the binfmt_misc signatures and then using qemu/chroot. But proot supposedly makes things simpler.
2020-07-01T09:47:20 #kisslinux <jedavies> Did anyone else try eudaldgr's java repo? Still getting a segfault here on openjdk7-bootstrap.
2020-07-01T11:23:22 #kisslinux <abbbi> had some time to rebuild the qemu image with latest release/kernel: https://github.com/abbbi/kiss-bootstrap/releases/tag/1.11.1-1
2020-07-01T12:25:18 #kisslinux <ominous_anonymou> @dylanaraps badwolf screenshot on KISS: https/0x0.st/iJni.jpg
2020-07-01T12:25:42 #kisslinux <ominous_anonymou> whoops lol https://0x0.st/iJni.jpg
2020-07-01T12:28:49 #kisslinux <ominous_anonymou> kinda neat, one-click JS enable/disable.  haven't played with it too much
2020-07-01T12:31:07 #kisslinux <claudia2000> ominous: does the whole browser close for you when you closen one tab?
2020-07-01T12:31:50 #kisslinux <claudia2000> We need icons! Netsurf suffers from the same destroyed asthetics.
2020-07-01T12:35:57 #kisslinux <ominous_anonymou> yes the whole browser closes, I haven't found a way to close just one tab.  might be something in its config.h to adjust though
2020-07-01T12:36:37 #kisslinux <ominous_anonymou> the icons might just be my setup, maybe i'm missing an icon pack or something?
2020-07-01T12:47:36 #kisslinux <claudia2000> I think we dont have gtk-icon packs in KISS because its to much of a mess to build them
2020-07-01T12:47:45 #kisslinux <claudia2000> https://www.archlinux.org/packages/extra/any/adwaita-icon-theme/ especial librsvg
2020-07-01T12:54:30 #kisslinux <claudia2000> Oh my bad. This fontpack from here works for me. https://github.com/Himmalerin/kiss-himmalerin/tree/master/extra/adwaita-icon-theme
2020-07-01T12:56:04 #kisslinux <claudia2000> fontpack= iconpack :P
2020-07-01T12:56:33 #kisslinux <ominous_anonymou> ah ok, i'll try it out :)
2020-07-01T13:07:16 #kisslinux <ominous_anonymou> yeah that worked https://0x0.st/iJnP.jpg
2020-07-01T14:38:05 #kisslinux <eudaldgr> it's there a way to avoid use: kiss b pkg && kiss i pkg => kiss bi pkg
2020-07-01T14:58:32 #kisslinux <claudia002> eudaldgr: I have this in my .profile: kissin() { kiss b $1 && kiss i $1 ; }
2020-07-01T14:59:27 #kisslinux <claudia002> same with aditional kiss c
2020-07-01T17:12:18 #kisslinux <admicos> I started with trying to package hexchat and ended up rebasing a patch to run mako without elogind/sd-dbus
2020-07-01T17:12:33 #kisslinux <admicos> I still havent packaged hexchat yet btw
2020-07-01T17:15:30 #kisslinux <admicos> re icon themes: I packaged papirus on my repo, but its esentially just a binary
2020-07-01T17:28:04 #kisslinux <ominous_anonymou> @claudia, I was able to install librsvg-2.0 but you're right, it is messy
2020-07-01T17:42:22 #kisslinux <xzcvczx> jedavies: btw i forgot to ask, was that running system qemu or also trying usermode qemu?
2020-07-01T18:01:57 #kisslinux <admicos> update: hexchat works yay!
2020-07-01T18:20:18 #kisslinux <budRich> hello good people of KISS. i have made a little program thing in bash, and im trying to make a make .. file, for easy install, because it needs to install a bunch of wordlist files (its a touch typing tutor).
2020-07-01T18:21:17 #kisslinux <budRich> im on arch, and we install stuff like this to /usr/share/APPNAME..  . but others do it different. problem is i need to know where the user installed the stuff.
2020-07-01T18:21:53 #kisslinux <budRich> right now i have it setup like this, in the script i have a function called installdir() { echo "$_dir" ;}
2020-07-01T18:22:11 #kisslinux <budRich> where $_dir contains the path to the script itself.
2020-07-01T18:22:59 #kisslinux <budRich> then from makefile, i pass the destination directory to another script, that does a sed substitution on the script and replaces $_dir with the actual installation path.
2020-07-01T18:23:43 #kisslinux <budRich> i thought maybe you guys, doing a lot of bashing and installing and stuff, knew if there is a better way, or if this is ok..
2020-07-01T18:24:11 #kisslinux <budRich> https://0x0.st/iJ7N.txt <- its a makefile
2020-07-01T18:24:32 #kisslinux <budRich> https://0x0.st/iJ7c.txt <- installprep.sh
2020-07-01T19:27:43 #kisslinux <jedavies> xzcvczx: that was with proot / user mode qemu.
2020-07-01T19:30:22 #kisslinux <xzcvczx> ah ok
2020-07-01T19:30:56 #kisslinux <xzcvczx> when i run usermod i just use qemu's env and ld flags
2020-07-01T19:31:04 #kisslinux <xzcvczx> well ld-loader flags
2020-07-01T19:40:23 #kisslinux <jedavies> Could you post your settings?
2020-07-01T19:44:58 #kisslinux <xzcvczx> qemu-arm -L ~/xtool/new/usr/local/opt/crosstool/arm-linux/gcc-3.3.4-glibc-2.3.2/arm-linux/ -E LD_LIBRARY_PATH=~/xtool/new/usr/local/opt/crosstool/arm-linux/gcc-3.3.4-glibc-2.3.2/arm-linux/lib:.
2020-07-01T19:45:45 #kisslinux <xzcvczx> thats me running arm where there is an oabi toolchain in that hideously long dir and i am reversing a library so hence the . for current path
2020-07-01T19:46:19 #kisslinux <xzcvczx> running arm on x86
2020-07-01T21:24:32 #kisslinux <xzcvczx> what slicers do people use?
2020-07-01T21:34:43 #kisslinux <admicos> slicers?
2020-07-01T21:35:36 #kisslinux <xzcvczx> for 3d printer
2020-07-01T21:36:41 #kisslinux <EmptyMessage> Have you had any trouble with getting a 3d printer to work on KISS?
2020-07-01T21:37:31 #kisslinux <xzcvczx> well its an external thing
2020-07-01T21:37:43 #kisslinux <xzcvczx> you just dump the file on sd card and then shove it in printer
2020-07-01T21:37:48 #kisslinux <xzcvczx> with the one i have anwyay
2020-07-01T21:39:56 #kisslinux <EmptyMessage> Ah that makes sense
2020-07-01T21:40:16 #kisslinux <EmptyMessage> The ones I have used at the library need to have the file sent over from a hooked up computer
2020-07-01T21:40:31 #kisslinux <xzcvczx> but you need a slicer to turn your model into something a 3d printer understands
2020-07-01T22:45:17 #kisslinux <himmalerin> Is kiss-outdated behaving oddly for anyone else? It outputs a bunch of packages that don't have a newer version after the '->'
2020-07-01T22:45:19 #kisslinux <himmalerin> http://ix.io/2qFQ
2020-07-01T23:17:49 #kisslinux <admicos> i'm getting an error trying to build firefox, can anyone help? https://files.ecmelberk.com/ff.txt (custom build configuration: https://files.ecmelberk.com/ff.diff.txt)
2020-07-01T23:18:18 #kisslinux <admicos> from my searches, i think it's related to the c++ stdlib, but i'd assume that would be installed as a dependency
2020-07-01T23:23:16 #kisslinux <admicos> yeah, have the 'new' header at /usr/include/c++/10.1.0/, why isn't clang finding it though?
2020-07-01T23:24:59 #kisslinux <admicos> i guess i could hack around by adding -I/usr/include/c++/10.1.0/ into my cflags maybe, but why would that be needed?
2020-07-01T23:31:11 #kisslinux <jedavies> admicos: had the same issue here, line 46: https://github.com/jedavies-dev/kiss-ppc64le/blob/master/repo/firefox/build
2020-07-01T23:32:10 #kisslinux <admicos> CPLUS_INCLUDE_PATH is a thing? neat
2020-07-01T23:32:12 #kisslinux <admicos> thanks!