Bug#891773: Related bug #871229 (but it didn't break my system))

2018-03-02 Thread John Paul Adrian Glaubitz
u test these updated packages? > https://people.debian.org/~glaubitz/grub-891773/ @Colin, could you update the sparc64-support.patch to include the two changes above? I have also attached an updated patch. Thanks to everyone for helping to catch this regression! Adrian -- .''`. John Pa

Bug#891773: [PATCH v3] ieee1275: Fix crash in of_path_of_nvme when of_path is empty

2018-03-01 Thread John Paul Adrian Glaubitz
Hi! As suggested by James Clarke earlier on this mailing list today, I have modified of_path_of_nvme such that it behaves the same way as of_path_of_scsi and just returns NULL when the call to find_obppath returns NULL. This makes much more sense than what my previous patch did as we don't want

Bug#891773: [PATCH] ieee1275: Fix crash in of_path_of_nvme when of_path is empty

2018-03-01 Thread John Paul Adrian Glaubitz
will result in a crash. The proper behavior of of_path_of_nvme is, however, to just return NULL in such cases, like other users of find_obppath, such as of_path_of_scsi. Signed-off-by: John Paul Adrian Glaubitz <glaub...@physik.fu-berlin.de> --- grub-core/osdep/linux/ofpath.c | 5 - 1 file chan

Bug#891773: [PATCH] ieee1275: Fix crash in of_path_of_nvme when of_path is empty

2018-03-01 Thread John Paul Adrian Glaubitz
, as grub_util_devname_to_ofpath would have previously returned NULL due to the unknown type? Right. I'll wait for some comments from Daniel and Eric first though. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu

Bug#891773: Related bug #871229 (but it didn't break my system))

2018-03-01 Thread John Paul Adrian Glaubitz
On 03/01/2018 05:15 PM, Diederik de Haas wrote: No more segfaults :-) Alright. Attaching an updated patch for sparc64 support for Colin. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de

Bug#891773: Related bug #871229 (but it didn't break my system))

2018-03-01 Thread John Paul Adrian Glaubitz
. I have updated the packages with the patch I just came up with: https://people.debian.org/~glaubitz/grub-891773/ Can you retry? Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de

Bug#891773: [PATCH v2] ieee1275: Fix crash in of_path_of_nvme when of_path is empty

2018-03-01 Thread John Paul Adrian Glaubitz
Hi! We have recently backported the upstream changes to Debian's grub2 package to support modern SPARC hardware for Debian's sparc64 port. One of the changes introduced a regression on systems with NVME devices which are not based on Open Firmware. On these systems, find_obppath returns an empty

Bug#891773: [PATCH] ieee1275: Fix crash in of_path_of_nvme when of_path is empty

2018-03-01 Thread John Paul Adrian Glaubitz
will therefore result in a crash. Thus, when of_path is empty, just return the disk name in of_path_of_nvme. Signed-off-by: John Paul Adrian Glaubitz <glaub...@physik.fu-berlin.de> --- grub-core/osdep/linux/ofpath.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/grub-core

Bug#891773: [PATCH] ieee1275: Fix crash in of_path_of_nvme when of_path is empty

2018-03-01 Thread John Paul Adrian Glaubitz
-by: John Paul Adrian Glaubitz <glaub...@physik.fu-berlin.de> --- grub-core/osdep/linux/ofpath.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/grub-core/osdep/linux/ofpath.c b/grub-core/osdep/linux/ofpath.c index 1c30e7233..daf0f 100644 --- a/grub-core/osdep

Bug#891773: [PATCH] ieee1275: Fix crash in of_path_of_nvme when of_path is empty

2018-03-01 Thread John Paul Adrian Glaubitz
We have recently backported the upstream changes to Debian's grub2 package to support modern SPARC hardware for Debian's sparc64 port. One of the changes introduced a regression on systems with NVME devices but not The of_path_of_nvme function (commit 2391d57, ieee1275: add nvme support

Bug#891773: [PATCH] ieee1275: Fix crash in of_path_of_nvme when of_path is empty

2018-03-01 Thread John Paul Adrian Glaubitz
On 03/01/2018 04:47 PM, John Paul Adrian Glaubitz wrote: We have recently backported the upstream changes to Debian's grub2 package to support modern SPARC hardware for Debian's sparc64 port. One of the changes introduced a regression on systems with NVME devices but not Sorry, that message

Bug#891773: Related bug #871229 (but it didn't break my system))

2018-03-01 Thread John Paul Adrian Glaubitz
On 03/01/2018 04:06 PM, John Paul Adrian Glaubitz wrote: Let me test a patch. The problem is that of_path is empty here and the strcat tries to append "disk" to an empty buffer which fails. This fixes it for me: diff --git a/grub-core/osdep/linux/ofpath.c b/grub-core/osdep/linu

Bug#891773: Related bug #871229 (but it didn't break my system))

2018-03-01 Thread John Paul Adrian Glaubitz
Looking at the code in grub-core/osdep/linux/ofpath.c, the issue is most likely that the buffer that of_path is pointing to of_path_of_nvme() is not large enough to hold both the contents of *of_path and disk[MAX_DISK_CAT]. Let me test a patch. Adrian -- .''`. John Paul Adrian Glaubitz

Bug#891773: Related bug #871229 (but it didn't break my system))

2018-03-01 Thread John Paul Adrian Glaubitz
On 03/01/2018 03:30 PM, John Paul Adrian Glaubitz wrote: On 03/01/2018 03:22 PM, Diederik de Haas wrote: #2  of_path_of_nvme (sys_devname=0x55973f55efd0 "/dev/nvme0n1", devnode=0x55973f55d950 "/dev/nvme0n", devicenode=0x55973f55df10 "nvme0n", device=)

Bug#891773: Related bug #871229 (but it didn't break my system))

2018-03-01 Thread John Paul Adrian Glaubitz
inux/ofpath.c:388 It crashes in of_path_of_nvme() which Eric added in [1]. I need to find a machine with NVME here so I can debug it myself. Sending GDB commands over mail will be a bit slow ... Adrian [1] http://git.savannah.gnu.org/cgit/grub.git/commit/?id=2391d579094cfab65a0fd89a3c617cb3a33fb715 -- .'

Bug#891773: Related bug #871229 (but it didn't break my system))

2018-03-01 Thread John Paul Adrian Glaubitz
On 03/01/2018 03:10 PM, John Paul Adrian Glaubitz wrote: If you have a .deb package, then yes. I just uploaded a patched version of grub2 to my Debian webspace [1]. PS: grub-probe is located in the grub-common package, so it should hopefully be enough to just install grub-common_2.02

Bug#891773: Related bug #871229 (but it didn't break my system))

2018-03-01 Thread John Paul Adrian Glaubitz
On 03/01/2018 03:07 PM, Diederik de Haas wrote: On donderdag 1 maart 2018 14:25:25 CET John Paul Adrian Glaubitz wrote: It might be that this patch fixes it [1]. I can build a grub package with the patch and provide it for testing purpose. Anyone who is affected by the bug would be willing

Bug#891773: Related bug #871229 (but it didn't break my system))

2018-03-01 Thread John Paul Adrian Glaubitz
-- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

Bug#854568: grub2: Add support for modern sparc64 hardware

2018-02-28 Thread John Paul Adrian Glaubitz
; http://git.savannah.gnu.org/cgit/grub.git/commit/?id=f8679cedff703b437171f4708d46adbfcff80a65 -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B3

Bug#891746: golang-defaults: Please disable golang-go, golang-src and golang for ppc64

2018-02-28 Thread John Paul Adrian Glaubitz
building golang-go, golang-src and golang for ppc64. Thanks, Adrian > [1] https://github.com/golang/go/issues/19074 -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2

Bug#882563: golang-go: Please build for s390x

2018-02-28 Thread John Paul Adrian Glaubitz
takes care of. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

Bug#610490: grub-ieee1275: runs out of memory on UltraSPARC 10

2018-02-28 Thread John Paul Adrian Glaubitz
need to build grub2 with TARGET_CCASFLAGS := -fno-PIE on sparc and sparc64 [3]. That's in 2.02+dfsg1-2 as well. Great, thank you. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de

Bug#610490: grub-ieee1275: runs out of memory on UltraSPARC 10

2018-02-28 Thread John Paul Adrian Glaubitz
and sparc64 [3]. Adrian > [1] https://cdimage.debian.org/cdimage/ports/debian-9.0-sparc64-NETINST-1.iso > [2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=854568 > [3] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=891733 -- .''`. John Paul Adrian Glaubitz : :' : Debian Develope

Bug#891733: grub2: Please pass TARGET_CCASFLAGS := -fno-PIE on sparc and sparc64

2018-02-28 Thread John Paul Adrian Glaubitz
))) +export TARGET_CCASFLAGS := -fno-PIE +endif + ifeq (,$(shell which qemu-system-i386 2>/dev/null)) with_check := no else Attaching a patch. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik

Bug#891605: kconfig: please version doxygen B-D per upstream

2018-02-27 Thread John Paul Adrian Glaubitz
t LLVM versions also didn't build in the past on powerpcspe. But that should be fixed now with LLDB being disabled for powerpcspe. But this bug should be fixed either way. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Univers

Bug#891542: rustc: Please backport upstream patch to support powerpcspe target

2018-02-26 Thread John Paul Adrian Glaubitz
allowing rustc to be bootstrapped for this architectures. We still need to fix LLVM on powerpcspe, but that should be a matter of disabling LLDB for powerpcspe in debian/rules. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie

Bug#887530: cen64-qt FTBFS with libquazip5-headers 0.7.3-3

2018-02-23 Thread John Paul Adrian Glaubitz
, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

Bug#891070: grub2: Please add missing build dependency on libparted-dev for powerpc and ppc64

2018-02-21 Thread John Paul Adrian Glaubitz
Thanks, Adrian > [1] > https://buildd.debian.org/status/fetch.php?pkg=grub2=ppc64=2.02%2Bdfsg1-1=1519058864=0 > [2] https://salsa.debian.org/grub-team/grub/blob/master/debian/control#L34 -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universit

Bug#851150: [Pkg-rust-maintainers] Bug#851150: Bug#851150: src:rustc: FTBFS on s390x due to Illegal instruction

2018-02-21 Thread John Paul Adrian Glaubitz
On 02/21/2018 09:55 AM, Emilio Pozuelo Monfort wrote: The s390x baseline has been raised: https://lists.debian.org/debian-s390/2018/02/msg8.html So I guess it's time to try to bootstrap rust on s390x once again. I can do that if no-one objects. Adrian -- .''`. John Paul Adrian

Bug#854568: grub2: Add support for modern sparc64 hardware

2018-02-19 Thread John Paul Adrian Glaubitz
Hi Colin! On 09/29/2017 03:04 AM, John Paul Adrian Glaubitz wrote: Slightly updated to fix an FTBFS because of -Wmaybe-uninitalized. This version of the patch still applies cleanly. Would you mind including it for the next 2.02 upload? It will be part of GRUB upstream once version 2.04

Bug#888757: rustc: Please backport upstream patch to fix sparc64 CABI

2018-02-19 Thread John Paul Adrian Glaubitz
but later removed with 1.24. Adrian [1] https://github.com/rust-lang/rust/pull/47541/commits/1203b3d892b6f8424f6540173e31af1cda304e36 -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de

Bug#890763: ghc: Please include upstream patch to reduce optimization level for unregistered builds

2018-02-18 Thread John Paul Adrian Glaubitz
ian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913 Description: mk/config.mk.in: lower -O2 optimization down to -O1 on UNREG Author: Ser

Bug#890466: Please giveback rrdtool + questions on vs92

2018-02-15 Thread John Paul Adrian Glaubitz
Hi Jean-Michel! Yes, I’ll give the package back and, yes, all m68k buildds are currently emulators. This is very unlikely to be a bug in rrdtool, but rather qemu or the toolchain. I will have to compare earlier build log timestamps with the history of the qemu updates I made as well as the

Bug#890401: llvm-toolchain-4.0: Please include patch to fix code generation on sparc64

2018-02-14 Thread John Paul Adrian Glaubitz
On 02/14/2018 01:16 PM, Sylvestre Ledru wrote: Could you please commit directly this change in the repo? Which repository? Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG

Bug#890401: llvm-toolchain-4.0: Please include patch to fix code generation on sparc64

2018-02-14 Thread John Paul Adrian Glaubitz
On 02/14/2018 01:22 PM, Sylvestre Ledru wrote: Which repository? https://anonscm.debian.org/viewvc/pkg-llvm/llvm-toolchain/branches/ I didn't know I have commit access to this repository, do I? Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org

Bug#890401: llvm-toolchain-4.0: Please include patch to fix code generation on sparc64

2018-02-14 Thread John Paul Adrian Glaubitz
gzilla/show_bug.cgi?id=22832 -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913 Description: [Sparc] Include __tls_get_addr in symbol table f

Bug#890359: binutils: Fix GOT relocation overflow on SPARC

2018-02-13 Thread John Paul Adrian Glaubitz
is necessary to further unbreak the rust compiler on sparc64, with one other fix necessary to completely fix rustc on sparc64. Since this particular bug causes the generated binaries to be corrupted, it's rather important to have this patch soonish. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz

Bug#890285: doxygen: Please drop LLVM build-dependency on powerpcspe

2018-02-12 Thread John Paul Adrian Glaubitz
s390x sparc64], + libclang-5.0-dev [alpha amd64 armel armhf arm64 i386 mips mipsel mips64el powerpc ppc64 ppc64el s390x sparc64] Build-Depends-Indep: texlive-fonts-recommended, texlive-generic-recommended, texlive-latex-extra, Thanks, Adrian -- .''`. John Paul Adrian Glaubitz

Bug#889829: ghc: error while loading shared libraries: libHShaskeline-0.7.3.0-ghc8.0.2.so

2018-02-12 Thread John Paul Adrian Glaubitz
t; or some such.) The Rust compiler has the same issue. Without /proc, it won't be able to find it's shared libraries. I'm not 100% sure, but I guess it's an issue when using dlopen() to load the libraries afterwards, but I never bothered to look into the details. Adrian -- .''`. John Paul Adria

Bug#889829: ghc: error while loading shared libraries: libHShaskeline-0.7.3.0-ghc8.0.2.so

2018-02-12 Thread John Paul Adrian Glaubitz
Hi Holger! Has the chroot in which you are trying to install /proc mounted? Without /proc mounted, GHC is unable to find it's shared libraries and this particular issue shows up. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie

Bug#890185: seqan2: FTBFS on ia64

2018-02-11 Thread John Paul Adrian Glaubitz
.''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

Bug#889896: firefox: 59.0~b4-1

2018-02-08 Thread John Paul Adrian Glaubitz
-insns endif The issue occurs right at the beginning when the build process is trying to build ICU. For some reason, the configure script of ICU prefers clang over gcc which results in this error as clang doesn't understand -fno-lifetime-dse. Adrian -- .''`. John Paul Adrian Glaubitz

Bug#889848: Acknowledgement (ruby2.5: Please include upstream patch to fix FTBFS on ia64)

2018-02-07 Thread John Paul Adrian Glaubitz
Oops, the previous patch contains some unnecessary cruft. Attaching a cleaned-up version of the patch. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956

Bug#889848: ruby2.5: Please include upstream patch to fix FTBFS on ia64

2018-02-07 Thread John Paul Adrian Glaubitz
le:375: recipe for target 'cont.o' failed This has already been fixed upstream [1]. I am attaching the backported patch for ruby2.5. It would be nice if it could be included in the next upload. Thanks, Adrian > [1] > https://github.com/ruby/ruby/commit/5af43b1ec2674e9f86090790bc61ab

Bug#889750: apr-util: Runs testuite during building even when "nocheck" is set

2018-02-06 Thread John Paul Adrian Glaubitz
ork. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

Bug#877735: busybox: m68k build broken due to "-Os" in CFLAGS

2018-02-05 Thread John Paul Adrian Glaubitz
am bug report and add the URL with the "forwarded" keyword to this bug report. It would then be highly appreciated if you could add the workaround with the gcc bug report referenced to the debian/rules file for the time being until the gcc bug has been fixed. Thanks, Adrian -- .

Bug#711135: compiling a bootable kernel for ia64 (itanium2, mckinley, rx2620)

2018-02-05 Thread John Paul Adrian Glaubitz
allation images for buster/sid or use some of the workarounds suggested by other people in this thread. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

Bug#889028: minissdpd: Fails to install on Debian unstable

2018-02-01 Thread John Paul Adrian Glaubitz
n for minissdpd installed as I never intentionally installed the package. It was installed as a recommended package by transmission-gtk. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG:

Bug#888965: mysql-5.7: Please add patch to fix protobuf on sparc64

2018-01-31 Thread John Paul Adrian Glaubitz
which fixes this. Please include it in the next upload. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913 Description: Fix

Bug#888898: firefox: Please add patch for big-endian support

2018-01-31 Thread John Paul Adrian Glaubitz
On 01/31/2018 12:21 AM, John Paul Adrian Glaubitz wrote: src:firefox currently FTBFS on big-endian powerpc/ppc64 because skia needs to be patched to support big-endian systems [1]: n file included from /<>/gfx/skia/skia/src/core/SkRasterPipeline.h:11:0, from /<>/g

Bug#888901: thunderbird: Please include build fixes for sparc64

2018-01-30 Thread John Paul Adrian Glaubitz
build Thunderbird. I expect to have a rustc package for sparc64 once Rust 1.24 is out. All patches need to applied in the "mozilla" subdirectory with "patch -p1 < $PATCHNAME". Adrian > [1] https://koji.fedoraproject.org/koji/buildinfo?buildID=1020385 -- .''`. John P

Bug#888900: thunderbird: Please add patch to fix build on ia64

2018-01-30 Thread John Paul Adrian Glaubitz
Source: icedove Version: 1:52.6.0-1 Severity: normal Tags: patch User: debian-i...@lists.debian.org Usertags: ia64 Hello! The attached patch should fix the build of Thunderbird on ia64. Please consider including it in the next upload. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz

Bug#888898: firefox: Please add patch for big-endian support

2018-01-30 Thread John Paul Adrian Glaubitz
firefox=ppc64=59.0%7Eb4-1=1517354143=0 > [2] https://koji.fedoraproject.org/koji/buildinfo?buildID=1020385 -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 954

Bug#880221: llvm-toolchain-4.0: Please add patch to fix stack alignment on sparc64

2018-01-29 Thread John Paul Adrian Glaubitz
Hi Sylvestre! On 01/24/2018 02:22 PM, John Paul Adrian Glaubitz wrote: On 01/24/2018 01:44 PM, Sylvestre Ledru wrote: I would prefer rust to move to llvm 5.0 instead. I would like to get ride of < 5.0 asap. I fully agree. But is the bump upstream to 5.0 happening any time soon? The pa

Bug#888757: rustc: Please backport upstream patch to fix sparc64 CABI

2018-01-29 Thread John Paul Adrian Glaubitz
and attached it to this bug report. Could you include the patch in the next upload of rustc 1.23? Thanks, Adrian > [1] > https://github.com/rust-lang/rust/commit/f4bcfc5317258c77e25ab5c0f3eec5599287fdbd -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debi

Bug#888543: webkit2gtk: Please reduce optimization level to -O1 on sh3 and sh4

2018-01-28 Thread John Paul Adrian Glaubitz
On 01/29/2018 12:04 AM, John Paul Adrian Glaubitz wrote: > On 01/27/2018 05:24 PM, Alberto Garcia wrote: >> Is sh3 being built by Debian at all? :-? > > No, it is not at the moment. But we are keeping it bootstrappable in > Debian rebootstrap as sh-3 is what will event

Bug#888543: webkit2gtk: Please reduce optimization level to -O1 on sh3 and sh4

2018-01-28 Thread John Paul Adrian Glaubitz
he upstream source. So, please apply the patch as-is. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

Bug#876592: gconf FTBFS with gtk-doc-tools 1.26: gtkdoc-mktmpl is no longer available

2018-01-26 Thread John Paul Adrian Glaubitz
a suggested patch. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913 diff -Nru old/gconf-3.2.6/debian/control.in new/gconf-3.2.6

Bug#888543: webkit2gtk: Please reduce optimization level to -O1 on sh3 and sh4

2018-01-26 Thread John Paul Adrian Glaubitz
c.gnu.org/bugzilla/show_bug.cgi?id=81426 > [2] > https://buildd.debian.org/status/fetch.php?pkg=webkit2gtk=sh4=2.18.6-1=1516855725=0 -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG

Bug#888536: binutils: TLS breakage in PIC/PIE mode on SPARC (PR ld/22727)

2018-01-26 Thread John Paul Adrian Glaubitz
=binutils-gdb.git;a=commit;h=bb363086e7743506d78bc6b1e56face0fb1fc93f -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

Bug#886175: cross-toolchain-base-ports: Please add support for ia64

2018-01-25 Thread John Paul Adrian Glaubitz
On 01/25/2018 05:05 PM, Jason Duerstock wrote: Maybe it needs a stage1 with --disable-libunwind-exceptions? No, I would have remembered that, too. I am checking now whether any part of the ia64 patches for cross-gcc are missing. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian

Bug#886175: cross-toolchain-base-ports: Please add support for ia64

2018-01-25 Thread John Paul Adrian Glaubitz
to build it itself, I assume, if the target is ia64. No, I most certainly didn't do it that way. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426

Bug#886175: cross-toolchain-base-ports: Please add support for ia64

2018-01-25 Thread John Paul Adrian Glaubitz
*think* this is because libunwind-dev has to be [ia64] as well in debian/control.source.in, but I am not 100% sure yet. Testing now. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de

Bug#888399: r-base-core: [m68k] bogus "missing value where TRUE/FALSE needed" errors

2018-01-25 Thread John Paul Adrian Glaubitz
ddons themselves [4][5], but am increasingly > convinced they're in fact manifestations of a bug in R itself. Please note that build failures on the emulated hosts vs90 through vs93 may also be attributed to bugs in the emulator and not the R package itself. Adrian -- .''`. John Paul Adria

Bug#887530: cen64-qt FTBFS with libquazip5-headers 0.7.3-3

2018-01-24 Thread John Paul Adrian Glaubitz
carry the patch in the Debian package. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

Bug#880221: llvm-toolchain-4.0: Please add patch to fix stack alignment on sparc64

2018-01-24 Thread John Paul Adrian Glaubitz
ing for this port and to be able to work on Firefox 53+ and Thunderbird 58+. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

Bug#888253: mpfr4: Please reduce optimization level on powerpcspe

2018-01-24 Thread John Paul Adrian Glaubitz
will file an upstream gcc bug and also check whether we still need -O0 on m68k. Adrian > [1] > https://buildd.debian.org/status/fetch.php?pkg=mpfr4=powerpcspe=4.0.0-5=1516751176=0 -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitae

Bug#880221: llvm-toolchain-4.0: Please add patch to fix stack alignment on sparc64

2018-01-24 Thread John Paul Adrian Glaubitz
Hello! On 10/30/2017 07:42 PM, Sylvestre Ledru wrote: On 30/10/2017 19:16, John Paul Adrian Glaubitz wrote: I am attaching the patch to this bug report. Could you please include it in the next upload of the llvm-toolchain-4.0 package? Sure, I merged it in the VCS Any chance the patched

Bug#887496: mozjs52: FTBFS on ia64: assumes libc is libc.so.6

2018-01-17 Thread John Paul Adrian Glaubitz
this the mozjs52 package [2]. Adrian [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1326496 [2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=879589 -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de

Bug#887494: mozjs52: FTBFS on sparc64: interpreter segfaults

2018-01-17 Thread John Paul Adrian Glaubitz
[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=824449#73 [2] https://bugzilla.mozilla.org/show_bug.cgi?id=1275204 [3] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=880693 [4] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=880692 -- .''`. John Paul Adrian Glaubitz : :' : Debian

Bug#887463: qtwebkit-opensource-src: Please update symbols file for sh4

2018-01-17 Thread John Paul Adrian Glaubitz
://people.debian.org/~glaubitz/qtwebkit-opensource-src_5.212.0~alpha2-6_sh4.build.gz -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

Bug#887463: qtwebkit-opensource-src: Please update symbols file for sh4

2018-01-16 Thread John Paul Adrian Glaubitz
failed as the symbols file was outdated. I have use the symbols helper from pkg-kde-tools to update the symbols file from the build log. Please apply the attached patch to update the symbols file. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org

Bug#887462: qtwebkit-opensource-src: Please reduce optimization level on sh3/sh4 to -O1

2018-01-16 Thread John Paul Adrian Glaubitz
ange into qtwebkit-opensource-src for the next upload? Thanks, Adrian > [1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81426 > [2] > https://buildd.debian.org/status/fetch.php?pkg=qtwebkit-opensource-src=sh4=5.212.0%7Ealpha2-6=1515522880=0 -- .''`. John Paul Adrian Glaubitz : :'

Bug#887444: mesa: Please build with optimization level -O1 on sh3 and sh4

2018-01-16 Thread John Paul Adrian Glaubitz
e happy with just passing "-O1" to fix the FTBFS. Patch attached. Thanks, Adrian > [1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83143 -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berl

Bug#886933: fs-uae-launcher: exspected version was 2.8.4 but really still is 2.8.3

2018-01-11 Thread John Paul Adrian Glaubitz
the last update. I will have a look at this and upload a fixed version soonish. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

Bug#886886: ros-bond-core: FTBFS on m68k: timeout generating Python from MSG bond/Constants

2018-01-10 Thread John Paul Adrian Glaubitz
ember 28th. So, I think it's very likely that we have run into a qemu regression here. Either way, thanks for spotting this issue. I will look into it and will file a qemu-m68k bug if my initial suspicion turns out to be right. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Devel

Bug#872039: why the severity?

2018-01-10 Thread John Paul Adrian Glaubitz
severity is definitely justified. On the other hand, only a very small minority are still using sysvinit on Debian, so this I think it's ok to have the severity set to serious. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berli

Bug#780430: qtwebkit-opensource-src: port to m68k

2018-01-09 Thread John Paul Adrian Glaubitz
On 01/09/2018 04:45 PM, Dmitry Shachnev wrote: On Sat, Nov 04, 2017 at 01:21:40PM +0100, John Paul Adrian Glaubitz wrote: Attaching an updated patch for 5.9.1+dfsg-5, please apply. I will try to upstream everything next week. Did you manage to send your patches upstream? If yes, can you give

Bug#876147: camp frequently FTBFS on 64bit big endian: camptest-qt (Failed)

2018-01-08 Thread John Paul Adrian Glaubitz
No, that information is unfortunately outdated. We need to ask the webteam to update the website. Thanks for the heads-up. Do you happen to have a GPG key which has been signed by any Debian Developer or any developer from another large Linux distribution? Adrian - -- .''`. John Paul Adrian Glaubitz : :

Bug#886175: cross-toolchain-base-ports: Please add support for ia64

2018-01-08 Thread John Paul Adrian Glaubitz
On 01/08/2018 03:18 AM, Matthias Klose wrote: Control: tags -1 - patch doesn't work, using gcc-7 7.2.0-19 I'll have a look. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG

Bug#878338: gcc-defaults FTBFS with debhelper 10.9

2018-01-06 Thread John Paul Adrian Glaubitz
oesn't make it seem that debhelper is working as expected, is it? At least there should be a comprehensible error message. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2

Bug#886421: python-escript: FTBFS on m68k: hwloc_set_cpubind returned "Error" for bitmap "0"

2018-01-05 Thread John Paul Adrian Glaubitz
QEMU bug, so it's always worth investigating :). Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

Bug#883850: gcc-7-cross-ports: Please add support for ia64 to gcc-cross-ports

2018-01-03 Thread John Paul Adrian Glaubitz
On 01/02/2018 11:12 PM, John Paul Adrian Glaubitz wrote: I couldn't find any obvious thing missing, so I'll let this as a homework for anyone reading this bug report. Attaching my versions of rules, packages.common and packages.invalid. Ok, turns out replacing "Priority: extra" with

Bug#886175: cross-toolchain-base-ports: Please add support for ia64

2018-01-02 Thread John Paul Adrian Glaubitz
to be able to add ia64 to gcc-7-cross-ports, it needs to be added in cross-toolchain-base-ports first which is what this bug reporting is asking :). Please apply the attached patch and re-run "debian/rules control". Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Develop

Bug#886103: gcc-8: Please disable gccgo on m68k

2018-01-02 Thread John Paul Adrian Glaubitz
it can be used and I want to keep it enabled as long as it doesn't break the gcc-7 build so I can easily install gccgo-7 for debugging purposes. Thanks, Adrian > [1] > https://buildd.debian.org/status/fetch.php?pkg=gcc-8=m68k=8-20171223-1=1514231538=0 -- .''`. John Paul Adrian Gl

Bug#885937: gcc-7: Please add patch to strip -z,defs from linker options for internal libunwind

2017-12-31 Thread John Paul Adrian Glaubitz
h. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913 diff -Nru old/gcc-7-7.2.0/debian/patches/t-libunwind-elf-Wl-z-defs.diff

Bug#885428: gcc-6: Please add support for building internal libunwind

2017-12-31 Thread John Paul Adrian Glaubitz
Hello! On 12/27/2017 02:09 AM, John Paul Adrian Glaubitz wrote: > With the patch applied, rebuilding src:gcc-6 provides a gcc-6-source > package which can be used successully to build the package > cross-toolchain-base-ports with the ia64 target enabled which in > turn will allow

Bug#885931: gcc-7: Please modify gcc-7 to use internal libunwind for ia64 cross-builds

2017-12-31 Thread John Paul Adrian Glaubitz
modifications which have been verified to work in rebootstrap. A second patch by James Clarke is necessary to modify some linker flags for building the internal libunwind. I will file a second bug report for that. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org

Bug#885908: libgc: Please update symbols file for ia64

2017-12-31 Thread John Paul Adrian Glaubitz
On 12/31/2017 09:57 AM, John Paul Adrian Glaubitz wrote: > src:gmp currently fails to build from source on ia64 because the > symbols file libgmp10.symbols needs to be updated. I obviously meant src:libgc, copy-and-paste error. Adrian -- .''`. John Paul Adrian Glaubitz : :' :

Bug#885908: libgc: Please update symbols file for ia64

2017-12-31 Thread John Paul Adrian Glaubitz
the symbols file accordingly and fix the FTBFS. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913 --- debian/libgc1c2

Bug#885907: gmp: Please update symbols file for ia64

2017-12-31 Thread John Paul Adrian Glaubitz
to update the symbols file accordingly and fix the FTBFS. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913 --- debian

Bug#885428: gcc-6: Please add support for building internal libunwind

2017-12-26 Thread John Paul Adrian Glaubitz
ge which can be used successully to build the package cross-toolchain-base-ports with the ia64 target enabled which in turn will allow us to enable ia64 in gcc-7-cross-ports (after this patch has been added to src:gcc-7 as well). Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debi

Bug#883850: gcc-7-cross-ports: Please add support for ia64 to gcc-cross-ports

2017-12-23 Thread John Paul Adrian Glaubitz
ble Depends: linux-libc-dev-ia64-cross but it is not installable E: Unable to correct problems, you have held broken packages. apt-get failed. E: Package installation failed Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.

Bug#885018: openjdk-10: Please update patch alpha-float-const.diff

2017-12-22 Thread John Paul Adrian Glaubitz
version. Please include it in the next upload. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913 --- a/src/java.base/share

Bug#884981: phonon-backend-vlc: FTBFS with libvlc9

2017-12-22 Thread John Paul Adrian Glaubitz
Control: fixed 0.9.1-1 Control: affects 0.9.0-2 I just noticed that I mixed up the version numbers. The version from experimental actually builds fine, only the version in unstable is affected. Could you please update the package in unstable? Thanks! Adrian -- .''`. John Paul Adrian

Bug#884981: phonon-backend-vlc: FTBFS with libvlc9

2017-12-22 Thread John Paul Adrian Glaubitz
esulting in an error mail being sent to the buildd admins. Thanks, Adrian > [1] > https://buildd.debian.org/status/fetch.php?pkg=phonon-backend-vlc=amd64=0.9.0-2%2Bb1=1513777867=0 > [2] https://buildd.debian.org/status/package.php?p=kontactinterface=sid -- .''`. John Paul Adr

Bug#878319: mozjs52: tests fail on ppc64el: timeout

2017-12-18 Thread John Paul Adrian Glaubitz
s52. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913

Bug#882174: gcc-7: Raising the armel port baseline to armv5te

2017-12-12 Thread John Paul Adrian Glaubitz
On 11/19/2017 10:16 PM, John Paul Adrian Glaubitz wrote: On 11/19/2017 10:06 PM, Adrian Bunk wrote: As announced in https://lists.debian.org/debian-arm/2017/11/msg00045.html this patch raises the armel baseline for buster from armv4t to armv5te. And I still disagree with this change and don't

Bug#884054: polyml: FTBFS on sh4: MemMgr: Assertion `t->tree[r] == 0' failed.

2017-12-10 Thread John Paul Adrian Glaubitz
ld reproduce this on real hardware, but that never ended up happening. Sorry, I must have missed that. I will give that a go. Is there a reduced test case? Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub.

Bug#883794: gcc-7: Please enable gccgo on m68k

2017-12-08 Thread John Paul Adrian Glaubitz
On 12/08/2017 10:29 AM, Matthias Klose wrote: >> So, please remove m68k from "go_no_cpus" in debian/rules.defs. > > what about gcc-8? I will start a test build now and let you know. Should be done by the evening/tomorrow. Adrian -- .''`. John Paul Adrian Glaubitz :

<    8   9   10   11   12   13   14   15   16   17   >