Bug#909015: Fwd: abiword: Crashes on startup with GLib-ERROR (Bug #909015)
Hello Joachim, please leave the bug email as recipient to have the information stored in the report. Kind regards, Bernhard Weitergeleitete Nachricht Betreff: Re: abiword: Crashes on startup with GLib-ERROR (Bug #909015) Datum: Mon, 17 Sep 2018 19:27:34 +0200 Von: Joachim H. Kaiser An: Bernhard Übelacker Hallo Herr Bernhard, many thanks for your efforts and your reply to my bug report on abiword. In addition to my initial note, I can annotate the following points based on your remarks: Due to an error in the NVIDIA driver (kernel message nvidia: "Unknown symbol swiotlb_map_sg_attrs", version 384.130) my system runs on VESA VBE for the X Window System, i.e. no OpenGL/GLX/DRI. -- Currently, this is not a real problem for me, so I can wait for this bug to be closed; yes, I know about the alternative. -- However, neither the AbiWord website nor the Debian package system hints on this being a requirement. And further, the only other output from the aibword start-up crash I found was in syslog: Sep 17 12:49:50 Desktop kernel: [ 959.980553] nvidia: Unknown symbol swiotlb_map_sg_attrs (err 0) Sep 17 12:49:50 Desktop kernel: [ 960.000809] traps: abiword[4517] trap int3 ip:b5553e40 sp:bfb9fca0 error:0 in libglib-2.0.so.0.5000.3[b5507000+12a000] BTW, my graphics card is "NVIDIA Corporation GK208B [GeForce GT 710]" as correctly printed by lspci -v. Testing with GDB as well as another user I have not (yet) done. Kind regards -- Joachim
Bug#909015: Fwd: abiword: Crashes on startup with GLib-ERROR (Bug #909015)
Forwarding information to the bug report. Weitergeleitete Nachricht Betreff: Re: abiword: Crashes on startup with GLib-ERROR (Bug #909015) Datum: Tue, 18 Sep 2018 09:00:08 +0200 Von: Joachim H. Kaiser An: Bernhard Übelacker Hallo Bernhard, supplementing my last email, I could successfully start and use AbiWord now: I switched the system GLX provider from NIVIDIA to Mesa and rebooted the system. Then, AbiWord started. The only error message reported at start-up was (abiword:3531): Gtk-CRITICAL **: gtk_render_background: assertion 'GTK_IS_STYLE_CONTEXT (context)' failed However, I could load a document without any further error message. At the next start-up this error message was not repeated. Obviously, AbiWord needs a working GLX environment -- like the Gnome Shell, which however incorporates Gallium3D LLVMpipe to allow it to run without a proper 3D hardware driver loaded. In my case, I guess, if AbiWord does not find GLX, it tries to do without it but needs a lot of memory to accomplish this. Again, many thanks for your efforts. Have a nice day -- Joachim
Bug#909015: abiword: Crashes on startup with GLib-ERROR (Bug #909015)
Hello Joachim, nice to hear that this can be made working. > In my case, I guess, if AbiWord does not find GLX, it tries to > do without it but needs a lot of memory to accomplish this. Here I think the allocation of nearly 4 GB at once is clearly not an intended behaviour. Therefore it may still work without GLX if we would not be stopped by this failure. The output of the gdb command from my first answer could probably still give some information which library or really abiwork itself depends on a working GLX provider. Kind regards, Bernhard
Bug#909015: abiword: Crashes on startup with GLib-ERROR (Bug #909015)
Hello Bernhard, in the meantime, I have managed to upgrade the NVIDIA driver to the stretch-backports version. Although apt-get issued some warnings, the process finished with a flawless system with GLX provided by the NVIDIA driver. AbiWord now works without start-up crash and your GDB does not produce any relevant output even when loading a document (see attachment). Since I do not like to reverse my workplace system to the status with the AbiWord crash, I cannot produce the desired output. Again, many thanks for your efforts. With best regards -- Joachim abiword_gdb.log Description: Binary data
Bug#909104: shhopt FTCBFS: does not pass cross tools to make
Source: shhopt Version: 1.1.7-3 Tags: patch User: helm...@debian.org Usertags: rebootstrap shhopt fails to cross build from source, because it does not pass cross tools to make. The easiest way of fixing that is letting dh_auto_build do it and indeed that is sufficient for making shhopt cross buildable. Please consider applying the attached patch. Helmut diff --minimal -Nru shhopt-1.1.7/debian/changelog shhopt-1.1.7/debian/changelog --- shhopt-1.1.7/debian/changelog +++ shhopt-1.1.7/debian/changelog @@ -1,3 +1,10 @@ +shhopt (1.1.7-3.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix FTCBFS: Let dh_auto_build pass cross tools to make. (Closes: #-1) + + -- Helmut Grohne Tue, 18 Sep 2018 06:13:48 +0200 + shhopt (1.1.7-3) unstable; urgency=low * QA upload. diff --minimal -Nru shhopt-1.1.7/debian/rules shhopt-1.1.7/debian/rules --- shhopt-1.1.7/debian/rules +++ shhopt-1.1.7/debian/rules @@ -12,9 +12,9 @@ build-stamp: dh_testdir - $(MAKE) + dh_auto_build $(MAKE) clean - $(MAKE) SHARED=1 CFLAGS=$(CFLAGS) LDFLAGS=$(LDFLAGS) + dh_auto_build -- SHARED=1 CFLAGS=$(CFLAGS) LDFLAGS=$(LDFLAGS) touch build-stamp clean:
Bug#909129: gkermit FTCBFS: does not pass cross tools to make
Source: gkermit Version: 1.0-10 Tags: patch User: helm...@debian.org Usertags: rebootstrap gkermit fails to cross build from source, because it does not pass cross tools to make. The simplest way to fix that is using dh_auto_build. When doing so, it fails to cross build with an Exec format error while running ./gwart. It turns out that gwart is a build tool and needs to be built for the build architecture. The attached patch takes care of that and makes gkermit cross buildable. Please consider applying it. Helmut diff -u gkermit-1.0/debian/changelog gkermit-1.0/debian/changelog --- gkermit-1.0/debian/changelog +++ gkermit-1.0/debian/changelog @@ -1,3 +1,12 @@ +gkermit (1.0-10.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix FTCBFS: (Closes: #-1) ++ Let dh_auto_build pass cross tools to make. ++ Build the gwart tool for the build architecture. + + -- Helmut Grohne Tue, 18 Sep 2018 20:41:14 +0200 + gkermit (1.0-10) unstable; urgency=medium * QA upload diff -u gkermit-1.0/debian/rules gkermit-1.0/debian/rules --- gkermit-1.0/debian/rules +++ gkermit-1.0/debian/rules @@ -6,15 +6,14 @@ #export DH_VERBOSE=1 # Include dpatch stuff. +include /usr/share/dpkg/architecture.mk include /usr/share/dpatch/dpatch.make build: patch build-stamp build-stamp: dh_testdir - - # Add here commands to compile the package. - $(MAKE) - + dpkg-architecture -f -a$(DEB_BUILD_ARCH) -c dh_auto_build -- gwart + dh_auto_build touch build-stamp clean: unpatch
Processing of libplist_2.0.0-5_source.changes
libplist_2.0.0-5_source.changes uploaded successfully to localhost along with the files: libplist_2.0.0-5.dsc libplist_2.0.0-5.debian.tar.xz libplist_2.0.0-5_amd64.buildinfo Greetings, Your Debian queue daemon (running on host usper.debian.org)
libplist_2.0.0-5_source.changes ACCEPTED into unstable
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Tue, 18 Sep 2018 15:17:32 -0400 Source: libplist Binary: libplist++-dev libplist++3v5 libplist-dev libplist-doc libplist-utils libplist3 python-plist Architecture: source Version: 2.0.0-5 Distribution: unstable Urgency: medium Maintainer: Debian QA Group Changed-By: Boyuan Yang Description: libplist++-dev - Library for handling Apple binary and XML property lists libplist++3v5 - Library for handling Apple binary and XML property lists libplist-dev - Library for handling Apple binary and XML property lists libplist-doc - Library for handling Apple binary and XML property lists - docs libplist-utils - Apple property list converter libplist3 - Library for handling Apple binary and XML property lists python-plist - Library for handling Apple binary and XML property lists Changes: libplist (2.0.0-5) unstable; urgency=medium . * QA upload. . [ Yves-Alexis Perez ] * Add myself to Uploaders * Use Salsa git packaging repository under imobiledevice-team. * Remove useless X-Python-Version field from debian/control. * Add debian/gbp.conf. . [ Boyuan Yang ] * Backport upstream bugfixes till 2018-09-04. + Drop no-unaligned-access.patch, fixes upstream in another way. Checksums-Sha1: 7dc6d13fe987ddf737b823d312de418f1e353794 2298 libplist_2.0.0-5.dsc e9a445987591684434a11b392097dd31feadc12d 11920 libplist_2.0.0-5.debian.tar.xz ca1795550089d1ba5a4af352c5b266b6f9a0d9ab 10053 libplist_2.0.0-5_amd64.buildinfo Checksums-Sha256: bbccd90e384b28c14130d1a49a8918b0634023cca381673a191e0f6ec8eb38a5 2298 libplist_2.0.0-5.dsc 792fbfbd9393a44873a1d7529e5332db46448c27ff358ec0fe551bf1bf435a55 11920 libplist_2.0.0-5.debian.tar.xz 19ef052b8a8a1d178aa9d9296d0b9df58002810941d8c0fb3ecc0f6d31c2f721 10053 libplist_2.0.0-5_amd64.buildinfo Files: b03db1fd8733591eac6c8e4e4304cb04 2298 libs optional libplist_2.0.0-5.dsc f1506e478ff172a2246a416796805fe8 11920 libs optional libplist_2.0.0-5.debian.tar.xz 34feba284ad3e43a4a10d753db4ddf4b 10053 libs optional libplist_2.0.0-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQIzBAEBCgAdFiEEfncpR22H1vEdkazLwpPntGGCWs4FAluhUSAACgkQwpPntGGC Ws606BAAqrej/hv+6WYetSlXuinWOYbc5G9Qe1KnAFMkMOh6K2dEqSksBC2PeRY3 eOpGvrn+HbqbAqCud/iix7F8nSP2aK0oWWijoixaute2yE3xHyzdEej6pLX2vu/+ SQiQMW6C0Ba1bY5Q1OxZhWRVGugtzcAcuco3ECdpCjszo1/J+0aA1G+pHCziM9az f6mrczYjiHiODpfW6YWOAvMmXzxlF+22Zem+zkUvKSyxh0fliRsWKBoJoDna2LMo bjZqLxyqqFdn5WA61rIPCDtQ97SeeIGeoi2EcggJKOc4ADBp+FgzhqPr06Hb0qTy YMgQZkF8TDmRQZuOMDH7An3ZjIKwUuBJw2Hw0wjBudhySgjKujXyUpi5fV6CFEbR u+HzbqLvN/1zX+IJHm/RmoX5XE5yLso58wdcfmQvSsOURakSrvvaiGh//VxKIRRM brTrZ34ano5+7I6Hx+cJPYuLsXMylj9P+w9ORg5REVFcTL7YlLFH0/HrtqyNidKV GgsfW8QW9JXYhk6JjPrt+9tlJpaTUjqnK5SdgsE1Fncluft7DYnG4xDRHgBeWrnH WRVJ3AISXwaLKYifHE/1hnFhh6cLTYlhwRovDDepsn3GHxaL3ivxe0lxmAlK2kHn ETP15eQ0FsUyHU+GH4H+84iUDSErz+KTK1yeNVlcxL9ZhXxoTN0= =B6IE -END PGP SIGNATURE- Thank you for your contribution to Debian.
Bug#858461: logrotate call in debian/README.Debian no more working
In addition to the advices in debian/README.Debian * change line in /etc/logrotate.d/apache2 to: "create 644 root adm" * change permissions of existing files: chmod 644 /var/log/apache2/*.log you also need "chmod 755 /var/log/apache2" to allow www-data to access the logs.
Processing of libgpod_0.8.3-13_source.changes
libgpod_0.8.3-13_source.changes uploaded successfully to localhost along with the files: libgpod_0.8.3-13.dsc libgpod_0.8.3-13.debian.tar.xz libgpod_0.8.3-13_amd64.buildinfo Greetings, Your Debian queue daemon (running on host usper.debian.org)
Bug#783011: Skip /etc/awstats/awstats.conf if it's not configured
I too must admit that it's quite confusing to get error mails after 'sudo apt-get install awstats' (7.6+dfsg-2). Maybe it would be better to simply set AWSTATS_ENABLE_BUILDSTATICPAGES and AWSTATS_ENABLE_CRONTABS in /etc/default/awstats to "no" by default.
libgpod_0.8.3-13_source.changes ACCEPTED into unstable
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Tue, 18 Sep 2018 15:42:04 -0400 Source: libgpod Binary: libgpod-dev libgpod4 libgpod-common libgpod-doc python-gpod libgpod-cil libgpod-cil-dev Architecture: source Version: 0.8.3-13 Distribution: unstable Urgency: medium Maintainer: Debian QA Group Changed-By: Boyuan Yang Description: libgpod-cil - CLI bindings for libgpod libgpod-cil-dev - CLI bindings for libgpod -- development files libgpod-common - common files for libgpod libgpod-dev - development files for libgpod libgpod-doc - documentation for libgpod libgpod4 - library to read and write songs and artwork to an iPod python-gpod - Python bindings for libgpod Changes: libgpod (0.8.3-13) unstable; urgency=medium . * QA upload. * Rebuild against gcc 8. * debian: Bump debhelper compat to v11. * debian/control: + Remove unnecessary build-dep dh-autoreconf and autotools-dev. + Bump Standards-Version to 4.2.1. + Update Vcs-* fields and use git repo on Salsa Debian group. + Mark libgpod-doc as M-A: foreign as suggested by Multiarch hinter. * debian/rules: Remove unnecessary dh parameters. * debian/copyright: Refresh header information. Checksums-Sha1: 37e8c7009c3772eee465385da34afbbaa3c1d3a4 3105 libgpod_0.8.3-13.dsc 6db023b142e91ee4f9211c57676f4aae9b19f5db 16856 libgpod_0.8.3-13.debian.tar.xz a1c1425a43a29c38533678008279632300bfc908 23093 libgpod_0.8.3-13_amd64.buildinfo Checksums-Sha256: 9d1c9f1803ceb2371845a7595eeab563abb2ed90097a28e6c2b2df0450f2d828 3105 libgpod_0.8.3-13.dsc 947b678828009ac88da95078ed38350092c1c7f7d708e343a8d0cc4b137ad459 16856 libgpod_0.8.3-13.debian.tar.xz 7133389978ba3a8bc40bf3aa37cfac9f0862a417b5ff3f9b1e680fca396b692c 23093 libgpod_0.8.3-13_amd64.buildinfo Files: 3f66a875079cab6e62c1a85f95d17c7f 3105 libs optional libgpod_0.8.3-13.dsc a6054b92a07bce1c51838a7148cd1211 16856 libs optional libgpod_0.8.3-13.debian.tar.xz 2b5c0a3271527c81dbf5815f912be565 23093 libs optional libgpod_0.8.3-13_amd64.buildinfo -BEGIN PGP SIGNATURE- iQIzBAEBCgAdFiEEfncpR22H1vEdkazLwpPntGGCWs4FAluhXDYACgkQwpPntGGC Ws537g/+MJiFchugAkqcThkobkoehNO6q6/vYyhNeoAo/0tyPEF1Tvqe0lKckMqX gQsv4eETpIBqyeI0Fg4W0P6i8DBs244D8kI8pIasewbV4s8ZoCrYaUVO3QTkXl0e vIUpqVtVYF/9BEIMGAOJmBgkEXAOehiVyXb5b8SHssUygmKc+DYtxRTUngC3gFK7 2t9IGMcSOyKSk5kh6TdiucbZT4MXDTI44Gk/OtbWj4ybVBWclo/F42oc03QvJLCN HDnHLMlbS3Nd1YfgaiiKVwHrigcF4dZxLpxLlYuVjwIzy0kxdO6ZRmP0TW7de0fT qIooa5TWuB1WhxERWY8lbZWiTIUiNfJoETUdcvCExIkL1v9232riFxEyVfIBdPHg 8ghlLTlwWiWeL57nTPiBulAbXH5GK99vm0/SKv782EvYViLwALBcoMPWACRE8Qwn hnaFiBXZfkXKM7n86iRWn2HYTEVvY+ms+QViobpsj21lsHxJyq2ASmYNcpJluPrj FwsAI0xxCbrYTR8GBBBaLSSsjmitiS2ORbSgGg2NhuKOjuOmzMi4lUlPg29im+1F SVRCVJvcrJDmNOb5qFC8FlUCb5vLQ6Ya4RrSCrpI+ccgq5WoKf/OKE4cSC1MYjnA 3L6oFz460GOCvKo1Wg/AMKiJ4rkm4x4FMJPr+bbydhZvqI5Rpsw= =3l49 -END PGP SIGNATURE- Thank you for your contribution to Debian.