• globus-net-manager FTBFS during python 3.10 transition

    From Mattias Ellert@21:1/5 to All on Thu Apr 21 09:40:01 2022
    XPost: linux.debian.ports.superh

    Hi!

    The globus-net-manager package failed to build from source on m64k and
    sh4 during the python 3.10 transition. I tried giving the package back,
    but the second attempt failed in the same way.

    I did build the package successfully on the m68k porterbox
    mitchy.debian.net, so I can not reproduce the failure there.

    The build fails, for both m68k and sh4, because doxygen fails to
    produce any output files. The package uses a perl script as a filter
    during the doxygen run. The failures are consistent with what would
    happen if the filter failed to produce any output.

    Doxygen uses popen to run filters. Is there an issue with using popen
    to run perl scripts on the buildds for m68k and sh4?

    The reason I ask is that I found this report in BTS: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=974004
    which seems to be a similar issue.
    Popen will fork and exec the perl script as:

    /bin/sh -c "./perlscript.pl arg"

    where ./perlscript.pl is a text file with a #!/usr/bin/perl shebang.

    Or maybe the issue is something completely different.

    Did something change between 2021-08-18 and 2022-03-28 that would cause
    a package that succeeded to build on the first date, to fail a binNMU
    (i.e. no changes to the source package) on the second date. The binNMU
    was successful for all other architectures.

    Mattias


    -----BEGIN PGP SIGNATURE-----

    iQJRBAABCAA7FiEE6hgwr99NQxrZ4RRS6K7C/zvhqUsFAmJhBuUdHG1hdHRpYXMu ZWxsZXJ0QHBoeXNpY3MudXUuc2UACgkQ6K7C/zvhqUvzAQ//aB4fX5j5KwDSHGYn X70qa478ivL5CQtojNfPzzXoHR0MlmQUJRslgcqb7ussXoQZDpNPIjnwgm8o5P2P sOb4k7TMjWM5GPZLV33eos/tEhivgkJ8LL1U5mEGRPSgUJxgln+WkLO0AE3RbrX9 Bv2jOAegF40Onsh+N2WwPanlgefgkOBMfKno2I7CKm4OhQ5/bbtjzmvqLQ7PsMxh xcmhEzomVrPut4tCxJ+wbTLTuO/SO8ppIoHwhyPU+eIJBnaCdC1xdCs47FEGeXRX t0h+afnXkn7cr+JG0VdvEX1cvcS/21K8TTi91c79mbUYROhAvH7fjs+rpC5mUTap vaoLDH/yZ1tSaZw81q4ENLk434UmDeXYBDedZzncMi2SP2rvy5+ZgUWAJ/UT//cJ LrtM4jNPlKMcvJZBVNraShhBYvwXxcJ9UMcyOUEN5mNcSH9Se7AzsioTnn9ykXYN UoSmYGj6jNsOMpF27dGEQjj3VXy9SZFq7dU3EDZuOc7jrYgqZj/D2TMvLC2CmtKD l0IU3Q5LzkDO0RDTfmRsKWeXzLNa8WYuw5+LXnWNCxlrDC/7hpkEjf3detDsxDqn ANIGk3t0diC8yX1A5l94kB9umKTScagVtW2iGsISBaACO8FO6TOUqg4M8O1z4JsF nSVeJBKzMTS568SCu65uI2P1F+Y=
    =1I0U
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Paul Adrian Glaubitz@21:1/5 to Mattias Ellert on Tue Apr 26 21:30:01 2022
    XPost: linux.debian.ports.superh

    Hi!

    On 4/21/22 09:25, Mattias Ellert wrote:
    Doxygen uses popen to run filters. Is there an issue with using popen
    to run perl scripts on the buildds for m68k and sh4?

    The reason I ask is that I found this report in BTS: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=974004
    which seems to be a similar issue.
    Popen will fork and exec the perl script as:

    /bin/sh -c "./perlscript.pl arg"

    where ./perlscript.pl is a text file with a #!/usr/bin/perl shebang.

    It's most likely related to emulation issues with qmeu-user. Either because of the related glibc bug [1] or because of the bug you mentioned #974004 [2].

    I will rebuild the glibc package with the preliminary fix for [1] that has not been merged upstream yet, unfortunately.

    Adrian

    [1] https://sourceware.org/bugzilla/show_bug.cgi?id=23960
    [2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=974004

    --
    .''`. John Paul Adrian Glaubitz
    : :' : Debian Developer
    `. `' Physicist
    `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Laurent Vivier@21:1/5 to All on Wed Apr 27 11:10:02 2022
    XPost: linux.debian.ports.superh

    Le 26/04/2022 à 21:24, John Paul Adrian Glaubitz a écrit :
    Hi!

    ...
    [2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=974004

    Normally, since qemu v6.0.0 you can preserve argv[0]:

    commit 6e1c0d7b951e19c53b8467e8bc4b71ee73a394ea
    Author: Laurent Vivier <laurent@vivier.eu>
    Date: Mon Feb 22 11:50:04 2021 +0100

    linux-user: manage binfmt-misc preserve-arg[0] flag

    Add --preserve-argv0 in qemu-binfmt-conf.sh to configure the preserve-argv0
    flag.

    This patch allows to use new flag in AT_FLAGS to detect if
    preserve-argv0 is configured for this interpreter:
    argv[0] (the full pathname provided by binfmt-misc) is removed and
    replaced by argv[1] (the original argv[0] provided by binfmt-misc when
    'P'/preserve-arg[0] is set)

    For instance with this patch and kernel support for AT_FLAGS:

    $ sudo chroot m68k-chroot sh -c 'echo $0'
    sh

    without this patch:

    $ sudo chroot m68k-chroot sh -c 'echo $0'
    /usr/bin/sh

    The new flag is available in kernel (v5.12) since:
    2347961b11d4 ("binfmt_misc: pass binfmt_misc flags to the interpreter")

    This can be tested with something like:

    # cp ..../qemu-ppc /chroot/powerpc/jessie

    # qemu-binfmt-conf.sh --qemu-path / --systemd ppc --credential yes \
    --persistent no --preserve-argv0 yes
    # systemctl restart systemd-binfmt.service
    # cat /proc/sys/fs/binfmt_misc/qemu-ppc
    enabled
    interpreter //qemu-ppc
    flags: POC
    offset 0
    magic 7f454c4601020100000000000000000000020014
    mask ffffffffffffff00fffffffffffffffffffeffff
    # chroot /chroot/powerpc/jessie sh -c 'echo $0'
    sh

    # qemu-binfmt-conf.sh --qemu-path / --systemd ppc --credential yes \
    --persistent no --preserve-argv0 no
    # systemctl restart systemd-binfmt.service
    # cat /proc/sys/fs/binfmt_misc/qemu-ppc
    enabled
    interpreter //qemu-ppc
    flags: OC
    offset 0
    magic 7f454c4601020100000000000000000000020014
    mask ffffffffffffff00fffffffffffffffffffeffff
    # chroot /chroot/powerpc/jessie sh -c 'echo $0'
    /bin/sh

    Signed-off-by: Laurent Vivier <laurent@vivier.eu>
    Message-Id: <20210222105004.1642234-1-laurent@vivier.eu>

    You need also kernel v5.12:

    commit 2347961b11d4079deace3c81dceed460c08a8fc1
    Author: Laurent Vivier <laurent@vivier.eu>
    Date: Tue Jan 28 14:25:39 2020 +0100

    binfmt_misc: pass binfmt_misc flags to the interpreter

    It can be useful to the interpreter to know which flags are in use.

    For instance, knowing if the preserve-argv[0] is in use would
    allow to skip the pathname argument.

    This patch uses an unused auxiliary vector, AT_FLAGS, to add a
    flag to inform interpreter if the preserve-argv[0] is enabled.

    Note by Helge Deller:
    The real-world user of this patch is qemu-user, which needs to know
    if it has to preserve the argv[0]. See Debian bug #970460.

    Signed-off-by: Laurent Vivier <laurent@vivier.eu>
    Reviewed-by: YunQiang Su <ysu@wavecomp.com>
    URL: http://bugs.debian.org/970460
    Signed-off-by: Helge Deller <deller@gmx.de>

    Thanks,
    Laurent

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Paul Adrian Glaubitz@21:1/5 to Laurent Vivier on Wed Apr 27 11:20:01 2022
    XPost: linux.debian.ports.superh

    Hi Laurent!

    On 4/27/22 11:04, Laurent Vivier wrote:
    Normally, since qemu v6.0.0 you can preserve argv[0]:
    (...)
    You need also kernel v5.12:

    OK, I'm installing QEMU 6.2 and kernel 5.16 from backports on all QEMU
    buildds now. Let's see if that helps.

    Adrian

    --
    .''`. John Paul Adrian Glaubitz
    : :' : Debian Developer
    `. `' Physicist
    `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Paul Adrian Glaubitz@21:1/5 to John Paul Adrian Glaubitz on Tue May 10 21:30:01 2022
    XPost: linux.debian.ports.superh

    Hi!

    On 4/27/22 11:19, John Paul Adrian Glaubitz wrote:
    On 4/27/22 11:04, Laurent Vivier wrote:
    Normally, since qemu v6.0.0 you can preserve argv[0]:
    (...)
    You need also kernel v5.12:

    OK, I'm installing QEMU 6.2 and kernel 5.16 from backports on all QEMU buildds now. Let's see if that helps.

    Tested with QEMU 7.0 and glibc patches from [1], still fails.

    Need to keep digging.

    Adrian

    [1] https://github.com/zatrazz/glibc/tree/azanella/redir-refactor

    --
    .''`. John Paul Adrian Glaubitz
    : :' : Debian Developer
    `. `' Physicist
    `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Laurent Vivier@21:1/5 to All on Tue May 10 23:50:01 2022
    XPost: linux.debian.ports.superh

    Le 10/05/2022 à 21:23, John Paul Adrian Glaubitz a écrit :
    Hi!

    On 4/27/22 11:19, John Paul Adrian Glaubitz wrote:
    On 4/27/22 11:04, Laurent Vivier wrote:
    Normally, since qemu v6.0.0 you can preserve argv[0]:
    (...)
    You need also kernel v5.12:

    OK, I'm installing QEMU 6.2 and kernel 5.16 from backports on all QEMU
    buildds now. Let's see if that helps.

    Tested with QEMU 7.0 and glibc patches from [1], still fails.

    Need to keep digging.

    Did you configure binfmt_misc to preserve argv0 [2] ?

    $ cat /proc/sys/fs/binfmt_misc/qemu-m68k
    enabled
    interpreter //qemu-m68k
    flags: POC
    offset 0
    magic 7f454c4601020100000000000000000000020004
    mask fffffffffffffe00fffffffffffffffffffeffff


    Thanks,
    Laurent


    Adrian

    [1] https://github.com/zatrazz/glibc/tree/azanella/redir-refactor


    [2] ``P`` - preserve-argv[0]
    Legacy behavior of binfmt_misc is to overwrite
    the original argv[0] with the full path to the binary. When this
    flag is included, binfmt_misc will add an argument to the argument
    vector for this purpose, thus preserving the original ``argv[0]``.
    e.g. If your interp is set to ``/bin/foo`` and you run ``blah``

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Paul Adrian Glaubitz@21:1/5 to Laurent Vivier on Wed May 11 00:00:01 2022
    XPost: linux.debian.ports.superh

    Hi Laurent!

    On 5/10/22 23:48, Laurent Vivier wrote:
    Did you configure binfmt_misc to preserve argv0 [2] ?

    $ cat /proc/sys/fs/binfmt_misc/qemu-m68k
    enabled
    interpreter //qemu-m68k
    flags: POC
    offset 0
    magic 7f454c4601020100000000000000000000020004
    mask fffffffffffffe00fffffffffffffffffffeffff

    Looks like this for me:

    root@nofan:~> cat /proc/sys/fs/binfmt_misc/qemu-m68k
    enabled
    interpreter /usr/libexec/qemu-binfmt/m68k-binfmt-P
    flags: POCF
    offset 0
    magic 7f454c4601020100000000000000000000020004
    mask ffffffffffffff00fffffffffffffffffffeffff
    root@nofan:~>

    Adrian

    --
    .''`. John Paul Adrian Glaubitz
    : :' : Debian Developer
    `. `' Physicist
    `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Paul Adrian Glaubitz@21:1/5 to Laurent Vivier on Thu May 12 18:00:01 2022
    XPost: linux.debian.ports.superh

    On 5/12/22 17:45, Laurent Vivier wrote:
    No, the 'F' means 'fix-binary':

    The interpreter is loaded in memory once when the binfmt_misc is configured (when
    the configuration is written to /proc/sys/fs/binfmt_misc/register) from the host
    filesystem. So you don't need to put it in the chroot.

    So, the flags are correct then? Is there any way to properly test the argument issue?

    Adrian

    --
    .''`. John Paul Adrian Glaubitz
    : :' : Debian Developer
    `. `' Physicist
    `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Paul Adrian Glaubitz@21:1/5 to All on Thu May 12 17:50:01 2022
    XPost: linux.debian.ports.superh

    Hi Laurent!

    The issue can be reproduced on a freshly installed Debian system.

    Is the problem the additional "F" flag?

    glaubitz@z6:/tmp/test> cat /proc/sys/fs/binfmt_misc/qemu-m68k
    enabled
    interpreter /usr/libexec/qemu-binfmt/m68k-binfmt-P
    flags: POCF
    offset 0
    magic 7f454c4601020100000000000000000000020004
    mask ffffffffffffff00fffffffffffffffffffeffff
    glaubitz@z6:/tmp/test>

    Adrian

    --
    .''`. John Paul Adrian Glaubitz
    : :' : Debian Developer
    `. `' Physicist
    `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Laurent Vivier@21:1/5 to All on Thu May 12 17:50:01 2022
    XPost: linux.debian.ports.superh

    Le 12/05/2022 à 17:41, John Paul Adrian Glaubitz a écrit :
    Hi Laurent!

    The issue can be reproduced on a freshly installed Debian system.

    Is the problem the additional "F" flag?

    glaubitz@z6:/tmp/test> cat /proc/sys/fs/binfmt_misc/qemu-m68k
    enabled
    interpreter /usr/libexec/qemu-binfmt/m68k-binfmt-P
    flags: POCF
    offset 0
    magic 7f454c4601020100000000000000000000020004
    mask ffffffffffffff00fffffffffffffffffffeffff
    glaubitz@z6:/tmp/test>

    Adrian


    No, the 'F' means 'fix-binary':

    The interpreter is loaded in memory once when the binfmt_misc is configured (when the configuration
    is written to /proc/sys/fs/binfmt_misc/register) from the host filesystem. So you don't need to put
    it in the chroot.

    Thanks,
    Laurent

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Laurent Vivier@21:1/5 to All on Thu May 12 18:30:01 2022
    XPost: linux.debian.ports.superh

    Le 12/05/2022 à 18:16, John Paul Adrian Glaubitz a écrit :
    Hi!

    Hi :)

    On 5/12/22 18:10, Laurent Vivier wrote:
    The flags are correct.

    This can be tested with:

    $ sudo chroot m68k-chroot sh -c 'echo $0'
    sh

    if the argument is not properly managed, you would have "/usr/bin/sh".

    OK, this is working properly:

    root@z6:/srv/chroot> chroot unstable-m68k-sbuild/ sh -c 'echo $0'
    sh
    root@z6:/srv/chroot>

    I guess it's related to the glibc issue then [1].

    You can try by mounting your chroot on a non ext4 partition. It works well with btrfs.

    Ext4 stores a hash in a field that is normally an index, so a 64bit (host kernel long) hash cannot
    be passed to the 32bit guest.

    btrfs uses it as a real index, so it will overflow only with 2³² entries.

    Thanks,
    Laurent


    Adrian

    [1] https://sourceware.org/bugzilla/show_bug.cgi?id=23960


    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Laurent Vivier@21:1/5 to All on Thu May 12 18:20:01 2022
    XPost: linux.debian.ports.superh

    Le 12/05/2022 à 17:51, John Paul Adrian Glaubitz a écrit :
    On 5/12/22 17:45, Laurent Vivier wrote:
    No, the 'F' means 'fix-binary':

    The interpreter is loaded in memory once when the binfmt_misc is configured (when
    the configuration is written to /proc/sys/fs/binfmt_misc/register) from the host
    filesystem. So you don't need to put it in the chroot.

    So, the flags are correct then? Is there any way to properly test the argument issue?

    Adrian


    The flags are correct.

    This can be tested with:

    $ sudo chroot m68k-chroot sh -c 'echo $0'
    sh

    if the argument is not properly managed, you would have "/usr/bin/sh".

    Thanks,
    Laurent

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Paul Adrian Glaubitz@21:1/5 to Laurent Vivier on Thu May 12 18:20:01 2022
    XPost: linux.debian.ports.superh

    Hi!

    On 5/12/22 18:10, Laurent Vivier wrote:
    The flags are correct.

    This can be tested with:

    $ sudo chroot m68k-chroot sh -c 'echo $0'
    sh

    if the argument is not properly managed, you would have "/usr/bin/sh".

    OK, this is working properly:

    root@z6:/srv/chroot> chroot unstable-m68k-sbuild/ sh -c 'echo $0'
    sh
    root@z6:/srv/chroot>

    I guess it's related to the glibc issue then [1].

    Adrian

    [1] https://sourceware.org/bugzilla/show_bug.cgi?id=23960

    --
    .''`. John Paul Adrian Glaubitz
    : :' : Debian Developer
    `. `' Physicist
    `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Paul Adrian Glaubitz@21:1/5 to Laurent Vivier on Thu May 12 20:00:01 2022
    XPost: linux.debian.ports.superh

    Hi Laurent!

    On 5/12/22 18:22, Laurent Vivier wrote:
    I guess it's related to the glibc issue then [1].

    You can try by mounting your chroot on a non ext4 partition. It works well with btrfs.

    Ext4 stores a hash in a field that is normally an index, so a 64bit (host kernel long) hash cannot be passed to the 32bit guest.

    btrfs uses it as a real index, so it will overflow only with 2³² entries.

    Yes, you are absolutely right. Using btrfs for the chroot fixes the problem.

    Adrian

    --
    .''`. John Paul Adrian Glaubitz
    : :' : Debian Developer
    `. `' Physicist
    `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mattias Ellert@21:1/5 to All on Mon May 16 10:30:02 2022
    XPost: linux.debian.ports.superh

    Hi!

    Now the openssl3 transition is underway, and many more of the globus
    packages fail in the same way.

    My original idea that it was failing due to doxygen using an input
    filter, seems to be incorrect. Only 4 of the globus packages uses an
    input filter, an many more of them are failing than those ones.

    I did not try all the failed builds on mitchy.debian.net (the m68k
    porterbox), but I did try 3 of them and the builds succeeded there.

    I have noticed that in addition to m68k and sh4, the builds also fail
    in the same way on the hppa host known as pasta, but when given back
    and run on a different hppa host they succeed.

    E.g.
    https://buildd.debian.org/status/logs.php?pkg=globus-common&arch=hppa
    One failure on pasta - give back succeded on pacific

    https://buildd.debian.org/status/logs.php?pkg=globus-gass-transfer&arch=hppa Two failures on pasta - third attempt on physik succeeded

    Is this related?

    The logs look OK, the configure scripts find /usr/bin/doxygen, and
    there in a call to /usr/bin/doxygen in the log. There are no errors
    reported in the log from the doxygen call, but the files that the call
    is supposed ro produce are not there later during the install phase.

    rm -rf doc
    /usr/bin/doxygen
    touch doc-stamp

    Mattias

    tor 2022-05-12 klockan 18:10 +0200 skrev Laurent Vivier:
    Le 12/05/2022 à 17:51, John Paul Adrian Glaubitz a écrit :
    On 5/12/22 17:45, Laurent Vivier wrote:
    No, the 'F' means 'fix-binary':

    The interpreter is loaded in memory once when the binfmt_misc is configured (when
    the configuration is written to
    /proc/sys/fs/binfmt_misc/register) from the host
    filesystem. So you don't need to put it in the chroot.

    So, the flags are correct then? Is there any way to properly test
    the argument issue?

    Adrian


    The flags are correct.

    This can be tested with:

           $ sudo chroot m68k-chroot sh -c 'echo $0'
           sh

    if the argument is not properly managed, you would have
    "/usr/bin/sh".

    Thanks,
    Laurent


    MIAGCSqGSIb3DQEHAqCAMIACAQExDzANBglghkgBZQMEAgIFADCABgkqhkiG9w0BBwEAAKCCDlUw ggbwMIIE2KADAgECAhEAqjJy7tobGaY39vJWKvTu8TANBgkqhkiG9w0BAQwFADCBiDELMAkGA1UE BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh dGlvbiBBdXRob3JpdHkwHhcNMjAwMjE4MDAwMDAwWhcNMzMwNTAxMjM1OTU5WjBPMQswCQYDVQQG EwJOTDEZMBcGA1UEChMQR0VBTlQgVmVyZW5pZ2luZzElMCMGA1UEAxMcR0VBTlQgZVNjaWVuY2Ug UGVyc29uYWwgQ0EgNDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAJWiST25HVQAlFw2 DU1Nq2y7ETDJrsWlNGbnBxtImpIt5R3mCMjbMfPCNp68fAKM3vXpuWmLK8RWv3pobDbL4WtWj/TK vT79egrxZ2QHriPcqY51S21NNcRFjVPW9fG+RmFyEeUm8P9VUMi39X/GDaIOkBrY3dJbRI1LK4Aa q1VoJMzh44SBVPU3KDlW1AlUu6Myu+9xbr7VbWstHY7TkXFC0g1WetuVMpai0CK0S/zIx72pCvUX Pix3JWPZwHAST/NAuiQlEJLD3zUeiHmTC3gBUxLGN95JGPHRa3QLqKhEnxYB9JYY0NnCdRZnicmt bZRa10lnn23ZUHIFHd7wyVVNUTimKuDdHmUIIjM+E0tCbblFqn9ribf570D4meOB+LdfNIF936Bw yHXEFcr5g459udlbgfxPVPL0j8cqxSn+KwtXxMmwU4tkLK5XXipV+LyOZFTTBggri9BGPYztXELI fgw+fqWCfJ5wiJ4vRviAU1aETbBofaB+KC+lBYfptC5JYiGXQ9pENYVq+jVI1MUp0BVAMrvDcjDd fM6FCeMeBT+J2+p3l5qprYbhU3W9XWk2KsItclxworj3MNJLUgUxf2JALhgXFz8FtZGd0jeyaDTl 1xifsOLvcHQTMUU7p3KDRYOvY30b/x+CO/z1uJIBEw3OO2DZdHZwvF1Pw8BjAgMBAAGjggGLMIIB hzAfBgNVHSMEGDAWgBRTeb9aqitKz1SA4dibwJ3ysgNmyzAdBgNVHQ4EFgQUti9VWrDJYBnvzwla 0fETnWyMyQQwDgYDVR0PAQH/BAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0lBBYwFAYI KwYBBQUHAwIGCCsGAQUFBwMEMDgGA1UdIAQxMC8wLQYEVR0gADAlMCMGCCsGAQUFBwIBFhdodHRw czovL3NlY3RpZ28uY29tL0NQUzBQBgNVHR8ESTBHMEWgQ6BBhj9odHRwOi8vY3JsLnVzZXJ0cnVz dC5jb20vVVNFUlRydXN0UlNBQ2VydGlmaWNhdGlvbkF1dGhvcml0eS5jcmwwdgYIKwYBBQUHAQEE ajBoMD8GCCsGAQUFBzAChjNodHRwOi8vY3J0LnVzZXJ0cnVzdC5jb20vVVNFUlRydXN0UlNBQWRk VHJ1c3RDQS5jcnQwJQYIKwYBBQUHMAGGGWh0dHA6Ly9vY3NwLnVzZXJ0cnVzdC5jb20wDQYJKoZI hvcNAQEMBQADggIBAHsgZeTW8Yzgnvd3xQPd/vVSovGibjYhy78g/RWeshHNsCbP4L77sGKviaqQ pa3z1131mUgrwTPlj3u0MQR3Z4gKjp1O/Lkk7GJixYqK5unKqZb8rTGNSq60A0zHEZdA4mfXdGcj 04dLE1eeDk6gzro7kSrTy9d1xBtcXeKo9/3mD3g4lWjIXCWZiIgy5Xpw4JU1KFsYq8U+k0Hin7u+ vYUntl4cSaJkoxc7x7HdSrmPWuJVP/i0J6YXPt1KloKQcnTGPkDKSePXj63+XAXshw50/3/Xm4On weSA2H3FeQWoXfC0uSJ1W+aZu8OY5CIskvoePozHATAjsJ/hk39QfR4itru0SAw/6aR021Ere0Hi VA0uq5YGvbk9vMyIrkt9c8Yv6h0MBv/uYTUKVC2DbyCiF/4yz2FDjLatlIaxhSCH5T75if4eVgoj bq2XuoHqUVxBvo+tzVIQsAQWhvzIwWRndSddctFSQt4znQpZX2znC7hGfpHOnvbbB1NCgF5pLFnl uOZPdB6sZXYZpGa5iMvF1gZnkKjTsMj6oQlOPiZukfH86KoPu1H2Lesek/JOOkPoyEndTgSNl93p QxYYzPdlzDS28l7Vwuk1FfzKNN1LEXX8fueLv8geQri2sgG5znxg9tlcB9hNw+6A/BATo3tFx9Ac DgxwVf3VJloOyRdSMIIHXTCCBUWgAwIBAgIRAK1d2Cr0N0+OGAVx3QzvljMwDQYJKoZIhvcNAQEM BQAwTzELMAkGA1UEBhMCTkwxGTAXBgNVBAoTEEdFQU5UIFZlcmVuaWdpbmcxJTAjBgNVBAMTHEdF QU5UIGVTY2llbmNlIFBlcnNvbmFsIENBIDQwHhcNMjEwODE4MDAwMDAwWhcNMjIwOTE3MjM1OTU5 WjCBmjETMBEGCgmSJomT8ixkARkWA29yZzEWMBQGCgmSJomT8ixkARkWBnRlcmVuYTETMBEGCgmS JomT8ixkARkWA3RjczELMAkGA1UEBhMCU0UxHDAaBgNVBAoTE1VwcHNhbGEgdW5pdmVyc2l0ZXQx KzApBgNVBAMMIk1hdHRpYXMgRWxsZXJ0IG1lbDAzMDA5QHVzZXIudXUuc2UwggIiMA0GCSqGSIb3 DQEBAQUAA4ICDwAwggIKAoICAQCZSzCA4DGk7prV2LsCbtzzYQOyfYaaZG0pCMhLRTB3gYeRLdHN R81WmhmhSfToRy3so+3/Ep191RlFgcHWGQwQ6WXLDmIlXHrJMlwAh/NjPwj/zxplOnHVKkUlfk/H cWlosjFjmDgTot4EgFc3h5TGDHIrDle08J+VF1PFCrDch0cSIUuoVb8ASXT1R+18uw1Ux7HNnUDQ kxqb0/mFWQ2OMZVHWqWl28DkbpCnS73WZYgBRne1yBeSF/0chdy10mHLX6vxBeQdMczkPnxZimI7 Olt/wMhJHkAktdt+lffEcLap/4QBdS6gtA7Coq7vBa0Ptbp8vjbeeo/JXNDRoWltTw0gqwJkL1GS tDcaLxrgY5fVg1HlZ731urjub6QKJxhHKm/Nzc1eLk9tn1kXXFiAbIUIsq07s1Slrx8e5gcv85Zs gSdlwIi7i/6LziFjgH1Fbor5g3fFx74XWaSx/3g5Q9wPDC2O899I2hdicGAcaJPYe/32wzz1BJ/S E0KXk3HYtIK4A8BczCTH5uYpzt6PZWGy4nTDx8QYut2bDP8s2HN/Cem6XSKtLQyCQlWFxTEqYKKn mQj8L+pZnqJTpRCsi8p19ptvdujSwn4RdGcd/mXsZdFwHieonyUX8bfDeD5zPkBBb+GV2/C3c0Ci XEWh7jjLHFvds+5hDN26/QhFEQIDAQABo4IB5jCCAeIwHwYDVR0jBBgwFoAUti9VWrDJYBnvzwla 0fETnWyMyQQwHQYDVR0OBBYEFGWNGmLJOF44uTYjboroUpIVkAqfMA4GA1UdDwEB/wQEAwIFoDAM BgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMEBggrBgEFBQcDAjBrBgNVHSAEZDBiMAwG CiqGSIb3TAUCAgUwDQYLKoZIhvdMBQIDAwMwDQYLKoZIhvdMBQIDAQIwNAYLKwYBBAGyMQECAk8w JTAjBggrBgEFBQcCARYXaHR0cHM6Ly9zZWN0aWdvLmNvbS9DUFMwSgYDVR0fBEMwQTA/oD2gO4Y5 aHR0cDovL0dFQU5ULmNybC5zZWN0aWdvLmNvbS9HRUFOVGVTY2llbmNlUGVyc29uYWxDQTQuY3Js MIGABggrBgEFBQcBAQR0MHIwRQYIKwYBBQUHMAKGOWh0dHA6Ly9HRUFOVC5jcnQuc2VjdGlnby5j b20vR0VBTlRlU2NpZW5jZVBlcnNvbmFsQ0E0LmNydDApBggrBgEFBQcwAYYdaHR0cDovL0dFQU5U Lm9jc3Auc2VjdGlnby5jb20wJwYDVR0RBCAwHoEcbWF0dGlhcy5lbGxlcnRAcGh5c2ljcy51dS5z ZTANBgkqhkiG9w0BAQwFAAOCAgEAdrUn3T1JoA6bKRSGABBCI7+QhItxISt2hZo/crXWLlkZUkwV t639MwEdwNCkk7zxe9SnNxq3CY+torRhjDXRSivxuLj6/cRq2Nx5sDsNKjIHn+1MjkvkI7Se06oH fH/Vna9Nw3fLbhXA3vOSi162VOH7tZkYWzolWzcsWGDcRWnEWpCaj47fHRlL3JTcN/QfRTIIUEEc qjJvIlfuGmflWkBWWTfOWXmcPV3FFzkmo1iX6lD19fAAQAu4i2/a4FD/955rJO4fKrLCI6mlSoPV 333YtjWkiy0M3LmqgadNSI3ie9ZxOTJLucF45M1kx1LK10rldgq4CpfS1b7cwo30jt8ObY2nvc4t L9RAdimGSr2JiRL1k9WqRltMIzucVwv7D2E9JeHlpFhUgURAmHsh+ufhnSXNVYryC+UYxkp76JkF E7IcHnhNxGhnqcG+hF2ec0oGxNkgdUoKpxZcJyunjRuI2wlSGXUeNfIA61dqy1u+Y8MUcKBVXhI3 MqUP26hQL3ydk6M9occLNfyjvB8IW816943Qy6yRjLbYoyTLCxuQGS5nZX7Xwp47NXBJP8iHAw8u zNZMHoJqrkrjd0WwKKHOfa5JyS+Ha467lmuflbVYAz1LLjAQq4xKggra2P9Ou9Dgsll6WT1iOpl1 iMl/zz5ssYMcmchTCQQfXv+yHi8xggMKMIIDBgIBATBkME8xCzAJBgNVBAYTAk5MMRkwFwYDVQQK ExBHRUFOVCBWZXJlbmlnaW5nMSUwIwYDVQQDExxHRUFOVCBlU2NpZW5jZSBQZXJzb25hbCBDQSA0 AhEArV3YKvQ3T44YBXHdDO+WMzANBglghkgBZQMEAgIFAKB5MBgGCSqGSIb3DQEJAzELBgkqhkiG 9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTIyMDUxNjA4MjQ1OFowPwYJKoZIhvcNAQkEMTIEMGBLcymR SAvNfTN/Smj5AjfKxqlG8JkPE5cz3yxrEftPrMZUR0/khVpIAVVut8t/hTANBgkqhkiG9w0BAQEF AASCAgBH8JRxVqVSFr2fSJj3oaE5HSRv87LPQoGx0KBSE2iDltgnWhhF/rLuzR+Uv0AMHfElcgnO 0va8mMXc46iNIHpYK/T86SkjZg/AiyVpAE8rBJFc0l1Tj2xnq/yn7fqDHt8l2gzE/l5g+6xystS6 nf47SK4chwyZJJA13SbhID/AP2zaq/vMENbRKMvB4SngfIE1CmjSPV5zqVrop4aF/K3lgPXk1UNU 2e3xYPdpbAQaEp3Y898UFAYW5sm8+6pPCLFMOLEmR76if/8qI4b6z00GrjTVr+mMUk6f8YDpePxc iewojFb6eXslWsD7YqWgSqkjx5PDKvzCWXC1BBTsSlXPoixaviDE98Qfw/NT9WzcnBoTiIjVQAMk TM5/8fJEUQgcJhLsceQ+1aRZs0idban3nLopfHl8RwpU7EG4uiKSm3StaBpDHTJvqdCNRC1VK1ms 7Cakq368/X7kZNUMSkZ7lLX5bIgoS7X4zbk5DZpI85BTvJOVq+aRSxgVhBtNadVeyxX37yj4L03k 2MR+YRlY+gyeLmx2BFSouEaCcmBxkjmdcpvg8zYme6gFnnaggjXPqz08ZZ9zD+1k4rFaPC9CbW8C qVA2EOZfaFoUbxbhktZxaK4uG/1gSFoyrARmPSUgPUovrKsIjW2wMA38ALLNmjzGrNrKP9nT6SNn cYaU7wAAAAAAAA==

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Paul Adrian Glaubitz@21:1/5 to Mattias Ellert on Mon May 16 10:30:02 2022
    XPost: linux.debian.ports.superh

    Hi Matthias!

    On 5/16/22 10:24, Mattias Ellert wrote:
    I have noticed that in addition to m68k and sh4, the builds also fail
    in the same way on the hppa host known as pasta, but when given back
    and run on a different hppa host they succeed.

    E.g.
    https://buildd.debian.org/status/logs.php?pkg=globus-common&arch=hppa
    One failure on pasta - give back succeded on pacific

    https://buildd.debian.org/status/logs.php?pkg=globus-gass-transfer&arch=hppa Two failures on pasta - third attempt on physik succeeded

    Is this related?

    pasta is using a similar setup like m68k and sh4.

    The underlying bug is an issue with glibc and ext4 [1] and can be resolved
    by switching the buildroot to btrfs. I have verified that this fixes the
    issue.

    I will do that later this week when I find the time.

    Adrian

    [1] https://sourceware.org/bugzilla/show_bug.cgi?id=23960

    --
    .''`. John Paul Adrian Glaubitz
    : :' : Debian Developer
    `. `' Physicist
    `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Rob Landley@21:1/5 to John Paul Adrian Glaubitz on Mon May 16 15:00:01 2022
    XPost: linux.debian.ports.superh

    On 5/16/22 03:28, John Paul Adrian Glaubitz wrote:
    Hi Matthias!

    On 5/16/22 10:24, Mattias Ellert wrote:
    I have noticed that in addition to m68k and sh4, the builds also fail
    in the same way on the hppa host known as pasta, but when given back
    and run on a different hppa host they succeed.

    E.g.
    https://buildd.debian.org/status/logs.php?pkg=globus-common&arch=hppa
    One failure on pasta - give back succeded on pacific

    https://buildd.debian.org/status/logs.php?pkg=globus-gass-transfer&arch=hppa >> Two failures on pasta - third attempt on physik succeeded

    Is this related?

    pasta is using a similar setup like m68k and sh4.

    The underlying bug is an issue with glibc and ext4 [1] and can be resolved
    by switching the buildroot to btrfs. I have verified that this fixes the issue.

    I've generally found qemu's application emulation to be MUCH more brittle than its system emulation, so I usually create little system emulation versions to native compile under instead. (Currently https://landley.net/toybox/downloads/binaries/mkroot/latest/ ala https://landley.net/toybox/faq.html#mkroot previously https://landley.net/aboriginal/downloads/binaries/ ala https://landley.net/aboriginal/about.html .)

    QEMU's sh4 system emulation only has 64 megs ram, but you can add as much swap space as you like and the compiler's been happy with it so far. (Even when it gets a little thrashy, it stays in the host's page cache so it's all memory-to-memory copying. I have a todo item to map some more memory into the virtual board and kernel, but both sides involve a lot of digging.) The m68k board I'm using has 256 megs ram, that's generally enough for a -j1 build. (Or even -j3 with distcc calling out to the cross compiler running on the host's loopback instead of running in the emulator.) I haven't tried to get an hppa system working yet because musl doesn't support it.

    That said, I've never figured out how to do a fully from-source debootstrap. (I.E. build a Debian root filesystem from source under a Linux From Scratch system and use that to populate a binary package repository.) Everything always assumes "fetch binary packages from an existing repository to populate a chroot", which means the architecture and libc combination has to already exist.

    I'd really like to try doing a musl version of debian, but every documented process I can find starts with "have this script wget a bunch of glibc binaries off a server". Is there documentation on actually doing it entirely from source somewhere?

    Rob

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Geert Uytterhoeven@21:1/5 to rob@landley.net on Mon May 16 15:30:02 2022
    XPost: linux.debian.ports.superh

    Hi Rob,

    On Mon, May 16, 2022 at 2:51 PM Rob Landley <rob@landley.net> wrote:
    QEMU's sh4 system emulation only has 64 megs ram, but you can add as much swap
    space as you like and the compiler's been happy with it so far. (Even when it gets a little thrashy, it stays in the host's page cache so it's all memory-to-memory copying. I have a todo item to map some more memory into the virtual board and kernel, but both sides involve a lot of digging.) The m68k board I'm using has 256 megs ram, that's generally enough for a -j1 build. (Or
    even -j3 with distcc calling out to the cross compiler running on the host's loopback instead of running in the emulator.) I haven't tried to get an hppa system working yet because musl doesn't support it.

    With Linux v5.19, you will be able to use the new virtual m68k machine
    with 3.2 GiB of RAM.

    https://lore.kernel.org/all/20220406201523.243733-1-laurent@vivier.eu

    Gr{oetje,eeting}s,

    Geert

    --
    Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

    In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that.
    -- Linus Torvalds

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mattias Ellert@21:1/5 to All on Mon May 23 09:50:01 2022
    XPost: linux.debian.ports.superh

    mån 2022-05-16 klockan 10:28 +0200 skrev John Paul Adrian Glaubitz:
    Hi Matthias!

    On 5/16/22 10:24, Mattias Ellert wrote:
    I have noticed that in addition to m68k and sh4, the builds also
    fail
    in the same way on the hppa host known as pasta, but when given
    back
    and run on a different hppa host they succeed.

    E.g.
    https://buildd.debian.org/status/logs.php?pkg=globus-common&arch=hppa
    One failure on pasta - give back succeded on pacific

    https://buildd.debian.org/status/logs.php?pkg=globus-gass-transfer&arch=hppa
    Two failures on pasta - third attempt on physik succeeded

    Is this related?

    pasta is using a similar setup like m68k and sh4.

    The underlying bug is an issue with glibc and ext4 [1] and can be
    resolved
    by switching the buildroot to btrfs. I have verified that this fixes
    the
    issue.

    I will do that later this week when I find the time.

    Adrian

    [1] https://sourceware.org/bugzilla/show_bug.cgi?id=23960


    Was this implemented?
    Mainly I'm asking if there is any point in clicking the give-back link
    on the builds that failed with the old set-up.

    Mattias


    -----BEGIN PGP SIGNATURE-----

    iQJRBAABCAA7FiEE6hgwr99NQxrZ4RRS6K7C/zvhqUsFAmKLOsQdHG1hdHRpYXMu ZWxsZXJ0QHBoeXNpY3MudXUuc2UACgkQ6K7C/zvhqUtHuRAAi9O1alVUA12LyGi0 a9zkXbxhHROgXgaMDupzeMeGlisTbKJ/Jtw+3tEQSbv4cikRpBLza+D/JC9EbYD5 aL5mP/neDBsYRaYYL+CscON1IoD11mz+LB/DeAptSYOWrJZqEBQMrT28hrN5MWwH ZKjmxT1/yF7o+sYi0e3tXMccd9hOBfgfUsP/pwStfTu3Cr1OoOk6Bc+/e2UqYD1r yMmwMb8enPKbR4Sjaebjn4xzjdicZMQHqI2Brdv52oTHk0CYJMAtd2Tyndo2fPz9 uAA1u3lyAngHEb1MT/l5K0WiVgVk31oNsZV6pvmzCssnCYGsiFlYUPsN3+XnfVJo Uhx7216d7g+q+oe7xilzVFsrtEyqEBI15rtcsNF9OOOdqB1qVu6slX4kdr10FB3h 6zEqfSgm3xYZopvtUhMz+d5FKAL4rg5MLVtNyI1h1MoqkcyC1GoEQMW55jvBb81t qyvy6w8yqhppvK6AYSG8jCj2jY/J3vv6Vp0tlpm7JL3SfV/3/TpyZdXF59SycJVf HT8ws8HRb4aVLGMb2zR+LkqEeZt4jRxKpegwSV/Gh60Qxif6KAcCAEmnvqTEIXL4 51CvCVVZYvIOt8c3hLuehWAHYPqMIOm/oSf6efsUogN7LYrT5fVhz6xaV1nwuVbS v5LR+kl3Y2WPOC89EKg6EaSSivg=
    =h2Gp
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Paul Adrian Glaubitz@21:1/5 to All on Mon May 23 10:00:01 2022
    XPost: linux.debian.ports.superh

    Hi Matthias!

    On May 23, 2022, at 9:43 AM, Mattias Ellert <mattias.ellert@physics.uu.se> wrote:

    mån 2022-05-16 klockan 10:28 +0200 skrev John Paul Adrian Glaubitz:
    Hi Matthias!

    On 5/16/22 10:24, Mattias Ellert wrote:
    I have noticed that in addition to m68k and sh4, the builds also
    fail
    in the same way on the hppa host known as pasta, but when given
    back
    and run on a different hppa host they succeed.

    E.g.
    https://buildd.debian.org/status/logs.php?pkg=globus-common&arch=hppa
    One failure on pasta - give back succeded on pacific

    https://buildd.debian.org/status/logs.php?pkg=globus-gass-transfer&arch=hppa
    Two failures on pasta - third attempt on physik succeeded

    Is this related?

    pasta is using a similar setup like m68k and sh4.

    The underlying bug is an issue with glibc and ext4 [1] and can be
    resolved
    by switching the buildroot to btrfs. I have verified that this fixes
    the
    issue.

    I will do that later this week when I find the time.

    Adrian

    [1] https://sourceware.org/bugzilla/show_bug.cgi?id=23960


    Was this implemented?
    Mainly I'm asking if there is any point in clicking the give-back link
    on the builds that failed with the old set-up.

    Sorry, not yet, I had a busy week.

    I’ll try to get it done this week and will let you know.

    Adrian

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mattias Ellert@21:1/5 to All on Thu Jun 9 11:10:01 2022
    XPost: linux.debian.ports.superh

    mån 2022-05-23 klockan 09:56 +0200 skrev John Paul Adrian Glaubitz:
    Hi Matthias!

    On May 23, 2022, at 9:43 AM, Mattias Ellert
    <mattias.ellert@physics.uu.se> wrote:

    mån 2022-05-16 klockan 10:28 +0200 skrev John Paul Adrian
    Glaubitz:
    Hi Matthias!

    On 5/16/22 10:24, Mattias Ellert wrote:
    I have noticed that in addition to m68k and sh4, the builds
    also
    fail
    in the same way on the hppa host known as pasta, but when given
    back
    and run on a different hppa host they succeed.

    E.g. https://buildd.debian.org/status/logs.php?pkg=globus-common&arch=hppa One failure on pasta - give back succeded on pacific

    https://buildd.debian.org/status/logs.php?pkg=globus-gass-transfer&arch=hppa
    Two failures on pasta - third attempt on physik succeeded

    Is this related?

    pasta is using a similar setup like m68k and sh4.

    The underlying bug is an issue with glibc and ext4 [1] and can be resolved
    by switching the buildroot to btrfs. I have verified that this
    fixes
    the
    issue.

    I will do that later this week when I find the time.

    Adrian

    [1] https://sourceware.org/bugzilla/show_bug.cgi?id=23960


    Was this implemented?
    Mainly I'm asking if there is any point in clicking the give-back
    link
    on the builds that failed with the old set-up.

    Sorry, not yet, I had a busy week.

    I’ll try to get it done this week and will let you know.

    Adrian

    Hi.

    Any news?

    Mattias


    -----BEGIN PGP SIGNATURE-----

    iQJRBAABCAA7FiEE6hgwr99NQxrZ4RRS6K7C/zvhqUsFAmKht7QdHG1hdHRpYXMu ZWxsZXJ0QHBoeXNpY3MudXUuc2UACgkQ6K7C/zvhqUtDFg/7B5nSVGX61+YGgI49 Jod5gYe4PgFbcQT47SpRr7CT4tbsedkjqrWiQ2CrLFkJJpe2Pw4Ev01A0ftQaatX lRYzTT7+PPXBgcDfw6FN80gCrxLTfncmDtV3hpy2nstgh/E1LHRrhrhbxK+DKyiS NW7qlsldI8cIgvkE6JxGGpqXagBDM+Zdgok8/qu77tQDjmyirSnp5YmtQa5juncL rlTklEFNJ2wPhdlTEasv+NxpOAx/sFuV+K9e/87MCcHgOToEjRvbF5L8GVimr3NT 98hZstAhzE9P2rISYV4AAhJrAtM9+EVVvcuS2/tAykUjzgV+JiVZzd5N/mTsb/WY obUa0mapVULpDLx5YZ4MMZ7QO2Pz0kdOjZICvCcb68ygeghU1uAS11Vi35/k9wXK 9e9y5h4pIxkxd9++ZxybNQb9MwoLTbhd7TeS02NE9ySLYxqHnDfwOgLCd6PnYOd7 bNqkNF7XbjgG9OeZApEBtuUOZiJLojqAodbb+vUwvbCPkwtNzgJ6X72EtOcGwdSO SaZzRPN4Nb18/FWVUYo6iGwWxH9b6exnx+Pd+Gf8ZvuCYwHXqVOtQU43BjQmrtpC HlSOWaCnPJXfxSa2CsZ2u64oWFuNRBSKK7P5Vici9I0J4M0gvOZS4HI3t8PePO3u EgwJGvlbgmxxQMhWX+sXD3wuC3U=
    =Q5HL
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Paul Adrian Glaubitz@21:1/5 to Mattias Ellert on Sat Jun 18 11:50:01 2022
    XPost: linux.debian.ports.superh

    On 6/9/22 11:04, Mattias Ellert wrote:
    Was this implemented?
    Mainly I'm asking if there is any point in clicking the give-back
    link
    on the builds that failed with the old set-up.

    Sorry, not yet, I had a busy week.

    I’ll try to get it done this week and will let you know.

    Any news?

    Not yet, sorry. It takes quite some time to get the filesystems converted
    and I haven't found the time for that yet. It's frustrating.

    Adrian

    --
    .''`. John Paul Adrian Glaubitz
    : :' : Debian Developer
    `. `' Physicist
    `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)