2021-12-01 00:19:47 algitbot: retry master 2021-12-01 14:45:07 algitbot: retry 3.15-stable 2021-12-02 01:07:12 algitbot: retry master 2021-12-02 21:00:32 :* 2021-12-02 21:00:34 :( 2021-12-04 02:24:56 algitbot: kick master 2021-12-04 02:25:10 algitbot: retry master 2021-12-04 02:40:33 algitbot: retry master 2021-12-04 12:31:24 andypost[m]: i was working on rust 1.57 2021-12-04 12:31:53 andypost[m]: i plan to move rust maintenance to the same approach used for gcc, which will allow us to maintain it a lot more easily (since we produce our own source tarballs) 2021-12-04 12:57:30 Ariadne: sounds promising, should I revert upgrade? 2021-12-04 12:57:35 no 2021-12-05 01:12:52 algitbot: kick master 2021-12-05 01:13:18 algitbot: retry master 2021-12-05 12:04:44 nmeum: "cp: can't stat '/home/buildozer/aports/community/gcc-cross-embedded/pkg/gcc-riscv-none-elf-nano/usr/riscv-none-elf/lib/./libstdc++.a': No such file or directory" 2021-12-05 12:16:27 ikke: hmhm, interesting didn't run into that one locally… 2021-12-05 12:17:16 does this only happen on arm? 2021-12-05 12:17:49 other arches are still building 2021-12-05 12:18:29 buildlog is also gigantic :S 2021-12-05 12:18:33 yes 2021-12-05 12:18:39 yikes 2021-12-05 12:19:02 I just ran curl | tail to just get the last part 2021-12-05 12:21:01 also seems to be a package() not a build failure 2021-12-05 12:21:43 yeah, unless it is expected that thhat file would've been built 2021-12-05 12:23:57 that could be the case, there probably isn't a different libstdc++.a for each multilib variant 2021-12-05 12:24:34 strange that I didn't run into this locally then though 2021-12-05 12:32:31 https://tpaste.us/bVlW this should fix it 2021-12-05 12:34:05 Will you push that? 2021-12-05 12:34:25 ikke: do the builders keep pkgdir? if so: would it be possible for you to add that line to package() and re-run `abuild package` so we can see if it works without waiting 8 hours again for the build to get to package()? 2021-12-05 12:34:38 yes, pkgdir is kept after failure 2021-12-05 12:35:44 actually, they need to keep srcdir in order for us to be able to test this 2021-12-05 12:36:17 yes, both are kept 2021-12-05 12:36:46 hmhm 2021-12-05 12:36:52 I am actually not 100% sure if this is the correct fix 2021-12-05 12:37:05 could you give me a tarball with the srcdir from the builders? 2021-12-05 12:37:25 running rootpkg now 2021-12-05 12:38:04 I can imagine why the build log is so large 2021-12-05 12:38:56 yes, this is a cross compiler for ~4 architectures + different multilib variants of these architectures 2021-12-05 12:41:25 cp: can't stat '/home/buildozer/aports/community/gcc-cross-embedded/pkg/gcc-riscv-none-elf-nano/usr/riscv-none-elf/lib/./libstdc++.a': No such file or directory 2021-12-05 12:41:55 hmhm 2021-12-05 12:42:29 the version I build locally also has libstdc++.a for all of these different riscv multilib variants https://tpaste.us/7V69 2021-12-05 12:42:42 maybe this does only affect arm, otherwise I am a bit puzzled 2021-12-05 12:42:43 https://tpaste.us/1E69 2021-12-05 12:44:46 https://tpaste.us/plXj 2021-12-05 12:45:47 seems like there are different libraries per variant 2021-12-05 12:46:04 yes yes, that is intended 2021-12-05 12:47:13 hm the usr/riscv-none-elf/lib/libstdc++.a seems to be missing in the output you linked 2021-12-05 12:47:55 i.e. ./gcc-riscv-none-elf/usr/riscv-none-elf/lib/libstdc++.a 2021-12-05 12:48:19 they are all in subdirectories 2021-12-05 12:48:35 but not directly under /lib/ 2021-12-05 12:49:00 how did you generate your output? 2021-12-05 12:49:26 find . -name libstdc++.a 2021-12-05 12:49:29 in the pkg dir 2021-12-05 12:49:38 nope, not just arm* 2021-12-05 12:50:05 https://tpaste.us/WE9Y 2021-12-05 12:50:10 ^ this is the find output on my x86_64 builder 2021-12-05 12:50:13 > ./gcc-riscv-none-elf-nano/usr/riscv-none-elf/lib/libstdc++.a 2021-12-05 12:50:22 this file is missing on the other builders it seems 2021-12-05 12:53:32 > ./gcc-riscv-none-elf/usr/riscv-none-elf/lib/libstdc++.a 2021-12-05 12:53:33 this one too 2021-12-05 13:05:37 ikke: can you run `find . -name libstdc++.a` in $srcdir as well? 2021-12-05 13:09:56 nmeum: https://tpaste.us/eVba 2021-12-05 13:21:35 hm, that looks ok 2021-12-05 13:23:17 interesting 2021-12-05 13:23:20 yea 2021-12-05 13:24:35 I suppose the install target must, for some reason, behave differently on the builders and locally because the srcdir looks similar regarding libstdc++ but the pkgdir is lacking two files on the builders 2021-12-05 13:27:02 The challenge is finding out why 2021-12-05 13:29:53 I will have one more look at the makefile but given the gigantic build log and the fact that I can't reproduce this locally I would otherwise just suggesting reverting my commit for now 2021-12-05 13:30:35 yeah, it being so large does not help 2021-12-05 13:34:22 it's unideal for sure :( 2021-12-05 13:34:41 maybe we should consider splitting the embedded cross compilers for the different architectures to different packages to make stuff like this easier to debug in the future 2021-12-05 13:35:00 and reduce build time 2021-12-05 13:36:21 yeah, doesn't sound like a bad idea to me 2021-12-05 13:41:14 do I need to bump pkgrel on revert, no, right? 2021-12-05 13:46:23 no 2021-12-05 13:46:44 as the packages were never built 2021-12-05 13:46:48 so the old packages are still available 2021-12-05 13:47:04 right 2021-12-05 13:47:29 done, I hope I get around to investigating this further soonish 2021-12-05 13:47:33 thanks for your help ikke 2021-12-05 14:00:54 nmeum: np 2021-12-05 21:38:17 algitbot: retry 3.14-stable 2021-12-06 10:29:36 blackboxsw: following on from the IPv6 chat last Friday, eni.py always adds an entry for "lo" with ipv4, wondering how to "signal" in the network metadata whether (a) an IPv4 loopback, or (b) an IPv6 one, or (c) both entries should be setup 2021-12-06 10:30:48 oops, wrong channel, doh! 2021-12-06 11:18:22 heh 2021-12-06 22:20:45 algitbot: retry 3.12-stable 2021-12-08 05:47:41 algitbot: retry master 2021-12-08 09:20:24 algitbot: retry 3.15-stable 2021-12-08 12:30:13 algitbot: retry master 2021-12-09 15:13:52 algitbot: kick master 2021-12-09 15:14:00 algitbot: retry master 2021-12-09 22:24:44 algitbot: retry master 2021-12-10 02:57:18 algitbot: retry master 2021-12-10 03:16:46 algitbot: retry master 2021-12-10 04:15:55 algitbot: retry master 2021-12-10 05:36:56 oof 2021-12-10 05:38:29 https://bugs.gentoo.org/811840 2021-12-10 05:38:44 but that's firefox 91 2021-12-10 06:57:38 it’s because wayland was upgraded without wayland-protocols 2021-12-10 06:57:48 both have to be upgraded/rebuilt 2021-12-10 11:46:10 algitbot: retry master 2021-12-10 12:45:10 Ariadne: just rebuilding wayland-protocols does not seem to help 2021-12-11 10:59:22 algitbot: retry master 2021-12-11 15:07:59 algitbot: kick master 2021-12-11 15:08:08 algitbot: retry master 2021-12-11 15:23:06 algitbot: retry master 2021-12-11 15:30:33 algitbot: retry master 2021-12-12 14:29:30 algitbot: retry master 2021-12-12 17:12:07 algitbot: retry master 2021-12-13 15:29:02 algitbot: retry master 2021-12-14 16:35:44 algitbot: kick master 2021-12-14 16:41:26 algitbot: kick master 2021-12-14 16:44:17 algitbot: retry master 2021-12-14 17:14:21 algitbot: retry master 2021-12-14 19:31:17 algitbot: retry master 2021-12-14 20:09:54 oh 2021-12-14 20:10:02 i used wrong upstream :/ 2021-12-15 12:25:48 algitbot: retry master 2021-12-15 12:30:21 algitbot: retry master 2021-12-15 13:14:47 algitbot: kick master 2021-12-15 13:14:56 algitbot: retry master 2021-12-15 18:21:37 Ariadne: ^ 2021-12-15 18:21:43 meson.build:1:0: ERROR: D compiler gdc can not compile programs. 2021-12-15 18:21:49 algitbot: :D 2021-12-15 18:23:17 ikke: just disable it. the D people need to fix their shit again 2021-12-15 19:31:01 algitbot: retry master 2021-12-15 19:53:44 algitbot: retry master 2021-12-15 20:59:16 algitbot: retry master 2021-12-15 22:06:17 algitbot: retry master 2021-12-16 05:47:35 algitbot: retry master 2021-12-16 05:52:53 algitbot: retry master 2021-12-16 08:11:58 algitbot: retry master 2021-12-17 16:53:44 algitbot: retry master 2021-12-17 20:49:28 algitbot: retry master 2021-12-18 10:05:29 algitbot: retry master 2021-12-18 22:22:46 algitbot: kick master 2021-12-18 22:22:58 algitbot: retry master 2021-12-19 15:28:15 algitbot: retry master 2021-12-19 17:27:16 algitbot: retry master 2021-12-19 17:40:50 algitbot: retry master 2021-12-19 17:51:10 algitbot: retry master 2021-12-20 23:15:01 well, lets see what the builders say 2021-12-23 16:44:19 PureTryOut: nice 2021-12-23 16:44:29 😄 2021-12-23 16:44:48 my daughter will be happy 2021-12-23 16:45:37 hope upgrade will be smooth 2021-12-23 16:48:08 Same haha 2021-12-24 19:11:18 algitbot: retry master 2021-12-25 10:35:10 algitbot: retry master 2021-12-25 10:36:49 Ariadne: restool is missing some header files 2021-12-25 10:38:42 looks like it's missing a dependency on linux-headers 2021-12-25 13:17:37 algitbot: retry master 2021-12-25 14:24:23 algitbot: retry master 2021-12-25 15:49:33 algitbot: retry master 2021-12-25 16:22:42 algitbot: retry master 2021-12-26 15:11:50 algitbot: kick master 2021-12-26 15:12:03 algitbot: retry master 2021-12-27 21:51:21 ACTION tilts head 2021-12-27 21:51:36 i feel like those david a. hannasch commits could have been flattened :) 2021-12-27 22:05:12 hmm, 'make up your mind' what a strange commit msg 2021-12-27 22:05:38 who merged these 2021-12-27 22:06:58 me 😶 2021-12-27 22:07:53 Ariadne: they certainly should've 2021-12-27 22:09:00 ikke: remove MR rights for yourself :p 2021-12-28 15:02:06 algitbot: retry 3.14-stable 2021-12-28 21:47:01 lesigh 2021-12-29 08:01:30 woo 2021-12-29 17:06:08 algitbot: retry master 2021-12-29 22:54:10 algitbot: retry master 2021-12-29 22:55:09 algitbot: retry master 2021-12-30 06:57:46 algitbot: retry master 2021-12-30 07:10:32 algitbot: retry master 2021-12-30 12:38:00 algitbot: retry master 2021-12-30 12:43:44 algitbot: retry master 2021-12-30 13:48:10 0 2021-12-31 17:13:58 algitbot: retry master 2021-12-31 17:14:05 algitbot: retry 3.15-stable 2021-12-31 17:14:08 algitbot: retry 3.14-stable 2021-12-31 17:14:11 algitbot: retry 3.13-stable 2021-12-31 17:14:14 algitbot: retry 3.12-stable