New comment by newbluemoon on void-packages repository https://github.com/void-linux/void-packages/pull/34029#issuecomment-973267880 Comment: The errors on x86_64-musl like e.g. ``` # FAILED command: PODIFF -I#: cfg/multiple-nopotpo/_multiple.de.po tmp/cfg/multiple-nopotpo-src/multiple.de.po 2>&1 > tmp/cfg/multiple-nopotpo-src/_cmd_output # Command output: # | --- cfg/multiple-nopotpo/_multiple.de.po 2021-11-14 12:08:53.000000000 +0000 # | +++ tmp/cfg/multiple-nopotpo-src/multiple.de.po 2021-11-18 19:04:08.059796074 +0000 # | @@ -1,7 +1,8 @@ # | # German translations for po package # | -# Copyright (C) 2020 Free Software Foundation, Inc. # | +# German translation for po # | +# Copyright (C) 2021 Free Software Foundation, Inc. # | # This file is distributed under the same license as the po package. # | -# Automatically generated, 2020. # | +# Automatically generated, 2021. # | # # | msgid "" # | msgstr "" # (end of output) ``` are caused because musl’s gettext seems to add a translation for the package description while gettext on glibc does not. So that there is an additional line `# | +# German translation for po` in the example above which doesn’t exist in the original .po file with which the newly generated one is compared. It comes from `/usr/share/locale/*/LC_MESSAGES/gettext-tools.mo`. The other differences are excluded via `diff -I` and don’t matter. No idea how to fix this right now, if it is worth fixing? @ericonr maybe you know something about the differences of gettext on musl and glibc? :) All other CI errors are like ``` Broken test cfg/split-multimaster: cfg/split-multimaster/_second.man.fr should be the expected content of produced file second.man.fr ``` and I cannot reproduce them locally.