#archlinux32 | Logs for 2019-07-03

Back
[00:29:18] -!- brett-soric has parted #archlinux32
[01:05:27] <elibrokeit> abaumann: SAMUFLAGS is looking good now, eh?
[01:11:50] -!- davor has joined #archlinux32
[01:30:19] -!- thePiGrepper has quit [Ping timeout: 246 seconds]
[02:24:42] -!- samantaz has quit [Read error: Connection reset by peer]
[02:40:40] -!- ofara_ has quit [Ping timeout: 246 seconds]
[02:42:22] -!- ofara has quit [Ping timeout: 272 seconds]
[02:53:32] -!- ofara has joined #archlinux32
[02:55:41] -!- ofara_ has joined #archlinux32
[04:07:47] -!- isacdaavid has quit [Read error: Connection reset by peer]
[05:26:42] -!- ofara_ has quit [Ping timeout: 245 seconds]
[05:28:59] -!- ofara_ has joined #archlinux32
[08:25:47] -!- Alina-malina has quit [Remote host closed the connection]
[08:26:10] -!- Alina-malina has joined #archlinux32
[08:37:54] -!- deep42thought has joined #archlinux32
[08:37:55] <buildmaster> Hi deep42thought!
[08:37:55] <buildmaster> !rq deep42thought
[08:37:56] <phrik> buildmaster: <deep42thought> otoh I have the feeling, archlinux32 dies anyway if I get overrun by a bus
[08:38:27] * deep42thought should not have said that - abaumann is also doing a great deal of work ...
[09:01:00] <buildmaster> pentium4/java8-openjdk is broken (says eurobuild6-1).
[09:56:22] <buildmaster> pentium4/libraw is broken (says rechenknecht).
[09:57:14] <buildmaster> i686/libraw is broken (says buildknecht2).
[09:57:18] <deep42thought> 19:02 minutes - it's still slow, but it's an improvement :-)
[09:57:46] <deep42thought> (time for executing the blacklisting query)
[10:31:20] <buildmaster> pentium4/java8-openjdk is broken (says eurobuild6-1).
[11:02:32] -!- finsternis has quit [Excess Flood]
[11:05:46] -!- finsternis has joined #archlinux32
[12:09:40] -!- bill-auger has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
[12:17:08] -!- bill-auger has joined #archlinux32
[12:17:08] -!- bill-auger has quit [Client Quit]
[12:59:49] -!- Cthulu201 has quit [Quit: Nowhere special. I always wanted to go there.]
[13:12:01] -!- Cthulu201 has joined #archlinux32
[13:50:54] -!- quequotion has joined #archlinux32
[14:08:06] -!- DepositePirate has quit [Remote host closed the connection]
[14:09:29] -!- DepositePirate has joined #archlinux32
[14:26:56] -!- finsternis has quit [Excess Flood]
[14:27:41] -!- finsternis has joined #archlinux32
[14:31:13] <buildmaster> pentium4/java7-openjdk is broken (says eurobuild6-5).
[14:36:22] <buildmaster> i686/java7-openjdk is broken (says eurobuild6-5).
[14:39:13] <buildmaster> pentium4/java8-openjdk is broken (says rechenknecht).
[15:04:22] -!- quequotion has quit [Quit: quequotion]
[15:26:26] -!- quequotion has joined #archlinux32
[15:31:11] <buildmaster> pentium4/python-jsonrpc-server is broken (says nlopc43).
[15:32:10] <deep42thought> "execv(pacman) failed: No such file or directory" ... err wtf???
[15:35:09] <buildmaster> i686/java11-openjdk is broken (says eurobuild6-5).
[15:39:59] -!- MannerMan has quit [Quit: MannerMan]
[16:01:54] -!- bill-auger has joined #archlinux32
[16:02:00] -!- deep42thought has quit [Quit: Leaving.]
[16:08:47] <buildmaster> pentium4/java-openjdk is broken (says eurobuild6-1).
[16:57:18] <buildmaster> pentium4/java11-openjdk is broken (says buildknecht).
[17:04:02] <buildmaster> pentium4/java10-openjdk is broken (says buildknecht2).
[17:33:09] -!- ofara_ has quit [Ping timeout: 244 seconds]
[17:37:05] -!- abaumann has joined #archlinux32
[17:37:05] <buildmaster> Hi abaumann!
[17:37:05] <buildmaster> !rq abaumann
[17:37:06] <phrik> buildmaster: <abaumann> still.. I'm close to declare pacman-static the official pacman :->
[17:37:46] <abaumann> elibrokeit: we reach a perfect solution asymprotically.. ;-)
[17:37:57] <abaumann> *asymptotically
[17:38:26] <elibrokeit> So is the changes he pushed, good with you?
[17:38:37] <elibrokeit> So that it can be merged now?
[17:47:06] <abaumann> That's up to him to decide. But he is very helpful to make the feature works, so I think, he will integrate it soon.
[17:47:14] <abaumann> *work
[17:47:30] <abaumann> in the end, he has to live with the code. :-)
[17:48:10] <elibrokeit> what is the motive for fatal errors with "too many arguments"?
[17:48:27] <abaumann> not to fall through silently and just ignore the 64th argument
[17:48:51] <elibrokeit> is it not parsing all 64 arguments?
[17:49:19] <abaumann> yeah. but it's nice to know you hit an internal hard-coded limitation of the software
[17:49:39] <abaumann> I could have used a malloc/realloc combo on the argument pointers, but..
[17:49:55] <abaumann> .. the some jokster comes along and creates an out-of-memory with that.. ;-)
[17:50:48] <abaumann> let's see.. I like this kind of coding on github, with back and forth of ideas and alternative implementations.
[17:51:22] <elibrokeit> oh so argvbuf is declared as the number of times parseenvargs will try to parse a new token
[17:52:01] <abaumann> char *arg, *argvbuf[64], **argv = argvbuf;
[17:52:04] <abaumann> while (arg && (size_t)argc < LEN(argvbuf) - 1) {
[17:52:12] <elibrokeit> rather than attempting to allocate as much space as the envvar actually contains...
[17:52:33] <abaumann> it's only an array of constant pointer in a const buffer of chars :-)
[17:52:39] <elibrokeit> well, I suspect >64 is already quite weird.
[17:52:39] <abaumann> or actually.. no.
[17:52:55] <abaumann> it's copied, as you are not allowed to write '\0' into your process environment :-)
[17:53:01] <abaumann> true that.
[17:53:29] <abaumann> more than SAMUFLAGS='-j 5 -v' doens't make sense anyway
[17:55:22] <buildmaster> pentium4/linux-pae is broken (says nlopc43).
[18:02:09] <buildmaster> pentium4/perl-alien-build is broken (says buildknecht2).
[18:07:26] <buildmaster> i686/parity-ethereum is broken (says eurobuild6-1).
[18:37:51] -!- thePiGrepper has joined #archlinux32
[18:40:23] -!- deep42thought has joined #archlinux32
[18:40:24] <buildmaster> Hi deep42thought!
[18:40:24] <buildmaster> !rq deep42thought
[18:40:25] <phrik> buildmaster: <deep42thought> *mimimi* tyzoid *mimimimi*
[18:52:51] <deep42thought> abaumann: do you have any idea what the failing test in systemd on i486 means?
[18:53:21] <abaumann> hi deep42thought
[18:53:24] <abaumann> mmh..
[18:54:31] <abaumann> 343/518 test-user-util FAIL 0.47 s (killed by signal 6 SIGABRT)
[18:54:34] <abaumann> that one
[18:54:59] <abaumann> but it's a programmed abort()
[18:55:50] <abaumann> mmh. without starting a debug session, hard to tell..
[18:55:58] <abaumann> *abaumann kicks a libvirt i485 image
[18:56:01] <abaumann> *i486
[18:57:27] <buildmaster> pentium4/perl-alien-base-modulebuild is broken (says eurobuild6-1).
[19:03:00] <buildmaster> i686/perl-xml-libxml is broken (says eurobuild6-1).
[19:22:10] <buildmaster> pentium4/biber is broken (says eurobuild6-1).
[19:23:09] -!- abaumann has quit [Quit: leaving]
[19:33:38] -!- abaumann has joined #archlinux32
[19:33:38] <buildmaster> Hi abaumann!
[19:33:39] <buildmaster> !rq abaumann
[19:33:39] <phrik> buildmaster: <abaumann> still.. I'm close to declare pacman-static the official pacman :->
[19:35:09] <deep42thought> 4/85 is the precessor of 4/86?
[19:35:54] <deep42thought> btw: hi abaumann
[19:39:08] <elibrokeit> abaumann: so would you say your PR is ready to be merged now?
[19:39:28] <elibrokeit> if so, maybe mention that :)
[20:10:14] <abaumann> deep42thought: just checked, the i
[20:10:23] <deep42thought> ?
[20:10:25] <abaumann> systemd issue is a i486-only issue
[20:10:31] <deep42thought> hmm :-(
[20:10:35] <abaumann> *abaumann has heavy fingers
[20:14:31] -!- samantaz has joined #archlinux32
[20:19:22] <abaumann> Assertion 'streq_ptr(t, name)' failed at ../systemd-stable/src/test/test-user-util.c:34, function test_gid_to_name_one(). Aborting.
[20:19:39] <abaumann> coredumpctl list
[20:19:39] <abaumann> coredumpctl: error while loading shared libraries: libip4tc.so.0: cannot open shared object file: No such file or directory
[20:19:42] <abaumann> *grmpf*
[20:20:10] <abaumann> lately systemd doesn't even give me the right permissions to see my own coredumps I'm dumping..
[20:22:25] -!- ofara has quit [Ping timeout: 248 seconds]
[20:22:57] <abaumann> uid=65534(nobody) gid=65534(nobody) groups=65534(nobody)
[20:23:00] <abaumann> test_gid_to_name_one(0xFFFF, "65535");
[20:23:03] <abaumann> this is weird
[20:23:18] <abaumann> and totally I can blame systemd's "predictable" uids.. :->
[20:23:46] -!- ofara has joined #archlinux32
[20:25:02] <buildmaster> i686/perl-xml-libxslt is broken (says eurobuild6-1).
[20:25:35] <abaumann> so: nobody is nobody with one less than nobody.. ;-)
[20:29:06] <abaumann> this sounds like Hilbert's hotel. ;-)
[20:41:03] <deep42thought> It would be hilberts hotel if all users were moved one further to make room for another one - which systemd actually does when it does sandboxing of containers :-D
[20:49:56] <abaumann> :-)
[20:53:08] <abaumann> systemd-create-hilbert-hotel
[20:53:54] <deep42thought> systemd-move-all-hilbert-hotel-guests-one-room-further
[20:54:37] <deep42thought> where "one" = 2^32 or something
[21:14:00] <abaumann> ah, it's tty
[21:14:32] <deep42thought> the failing test?
[21:14:37] <abaumann> yes, tty is not 5
[21:14:56] <abaumann> it's not set at all most likely
[21:15:25] <abaumann> I saw some failing linked libraries when installing the i486 chroot, so most likely systemd-users doesn't create the tty group
[21:15:52] <abaumann> "in ancient times, there was a text file /etc/group, which contained a simple line with tty"
[21:15:59] <abaumann> this was not failing so fast. :-)
[21:16:12] <deep42thought> ah, the group "tty"
[21:16:18] <abaumann> getent group | grep tty
[21:16:20] <abaumann> yes.
[21:16:25] <abaumann> it's missing in the chroot
[21:16:54] <abaumann> [root@eurox ~]# systemd-sysusers --cat-config | grep tty
[21:16:54] <abaumann> g tty 5 - -
[21:16:56] <abaumann> mmh
[21:17:49] <abaumann> [root@buildmaster-new build]# systemd-sysusers --cat-config | grep tty
[21:17:49] <abaumann> systemd-sysusers: error while loading shared libraries: libip4tc.so.0: cannot open shared object file: No such file or directory
[21:17:52] <abaumann> aha.
[21:17:58] <abaumann> this is the problem. a missing shared library.
[21:18:41] <abaumann> /usr/lib/libip4tc.so.2.0.0 is owned by iptables 1:1.8.3-1
[21:18:47] <abaumann> yeah libip4tc.so.0
[21:18:53] <abaumann> again silly so-versioning.
[21:18:59] <abaumann> didn't we see that before?
[21:19:49] <abaumann> and systemd cannot be rebuilt, because the tests fail
[21:20:07] <abaumann> but it has to be rebuild in order to (hopefully) pick up the right library
[21:20:35] <abaumann> so, one build ignoring the tests, then one with the checks again
[21:20:47] <abaumann> I'll trigger that :-)
[21:22:21] * elibrokeit is super excited and wants to see samuflags NOW
[21:22:32] <abaumann> :-)
[21:50:55] -!- abaumann has quit [Remote host closed the connection]
[21:55:52] -!- samantaz has quit [Ping timeout: 245 seconds]
[21:57:55] -!- samantaz has joined #archlinux32
[23:11:28] <buildmaster> pentium4/mpd is broken (says nlopc43).