Bug#1067008: qt6-base: please do not use firebird3.0 on m68k

2024-03-16 Thread Thorsten Glaser
Source: qt6-base
Version: 6.4.2+dfsg-21.1
X-Debbugs-Cc: t...@mirbsd.de, debian-...@lists.debian.org

firebird3.0 is not available on m68k because it invalidly assumes…

struct foo {
char a;
int b;
};

… that b is 32-bit aligned in this struct from implicit padding,
which neither C nor POSIX guarantee (on m68k, it is aligned 16 bit
due to the ABI spec) and this situation is the same as a decade ago.

It would be very helpful if qt6 (and qt5) could just not use this
database on m68k, as it’s hard to keep on top with manually fixing
these:

struct foo {
char a;
char dummy[3];
int b;
};

Thanks in advance!



Bug#1028000: RM: kalendar [armel ppc64el s390x alpha hppa m68k riscv64 sh4] -- ROM; ANAIS

2023-01-05 Thread Patrick Franz
Package: ftp.debian.org
Severity: normal
User: ftp.debian@packages.debian.org
Usertags: remove
X-Debbugs-Cc: kalen...@packages.debian.org, delta...@debian.org
Control: affects -1 + src:kalendar

Hi,

in its newest version 22.12.0, the kalendar package has picked
up a dependency which requires the Qt 5 WebEngine. However, this
engine is only available on certain architectures.

kalendar can therefore not be built anymore on the following
architectures (but could be built there before):

armel ppc64el s390x alpha hppa m68k riscv64 sh4

I hereby request the removal of kalendar for these architectures
in unstable and testing.

Thank you very much.


-- 
Med vänliga hälsningar

Patrick Franz


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 us a bug
number or any other pointer?


No, I haven't. I should do that finally although the alignment changes
might get rejected but I'll try.

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#780430: qtwebkit-opensource-src: port to m68k

2018-01-09 Thread Dmitry Shachnev
Hi Adrian,

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 us a bug
number or any other pointer?

--
Dmitry Shachnev


signature.asc
Description: PGP signature


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

2017-11-04 Thread John Paul Adrian Glaubitz
Source: qtwebkit-opensource-src
Version: 5.9.1+dfsg-5
Followup-For: Bug #780430
User: debian-...@lists.debian.org
Usertags: m68k

Hi!

Attaching an updated patch for 5.9.1+dfsg-5, please apply.

I will try to upstream everything next week.

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: Add support for m68k
 This patch adds the necessary cmake and platform definitions
 for m68k as well as a missing patch from double-conversion
 upstream for m68k support.  Furthermore, several COMPILE_ASSERT()
 statements are relaxed such that they also allow smaller struct
 sizes which often occur on m68k to the native alignment there
 being 16-bit despite being a 32-bit platform.
 .
Author: John Paul Adrian Glaubitz <glaub...@physik.fu-berlin.de>
Last-Update: 2017-11-04

--- qtwebkit-opensource-src-5.212.0~alpha2.orig/CMakeLists.txt
+++ qtwebkit-opensource-src-5.212.0~alpha2/CMakeLists.txt
@@ -69,6 +69,8 @@ elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR
 set(WTF_CPU_X86_64 1)
 elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "(i[3-6]86|x86)")
 set(WTF_CPU_X86 1)
+elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "m68k")
+set(WTF_CPU_M68K 1)
 elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "ppc")
 set(WTF_CPU_PPC 1)
 elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "ppc64")
--- 
qtwebkit-opensource-src-5.212.0~alpha2.orig/Source/JavaScriptCore/CMakeLists.txt
+++ qtwebkit-opensource-src-5.212.0~alpha2/Source/JavaScriptCore/CMakeLists.txt
@@ -1280,6 +1280,7 @@ endif ()
 if (WTF_CPU_ARM)
 elseif (WTF_CPU_ARM64)
 elseif (WTF_CPU_HPPA)
+elseif (WTF_CPU_M68K)
 elseif (WTF_CPU_PPC)
 elseif (WTF_CPU_PPC64)
 elseif (WTF_CPU_PPC64LE)
--- qtwebkit-opensource-src-5.212.0~alpha2.orig/Source/WTF/wtf/Platform.h
+++ qtwebkit-opensource-src-5.212.0~alpha2/Source/WTF/wtf/Platform.h
@@ -80,6 +80,12 @@
 #endif
 #endif
 
+/* CPU(M68K) - Motorola M68k */
+#if defined(__m68k__)
+#define WTF_CPU_M68K 1
+#define WTF_CPU_BIG_ENDIAN 1
+#endif
+
 /* CPU(MIPS) - MIPS 32-bit and 64-bit */
 #if (defined(mips) || defined(__mips__) || defined(MIPS) || defined(_MIPS_) || 
defined(__mips64))
 #if defined(_ABI64) && (_MIPS_SIM == _ABI64)
--- qtwebkit-opensource-src-5.212.0~alpha2.orig/Source/WTF/wtf/dtoa/utils.h
+++ qtwebkit-opensource-src-5.212.0~alpha2/Source/WTF/wtf/dtoa/utils.h
@@ -58,6 +58,8 @@ defined(_MIPS_ARCH_MIPS32R2)
 #else
 #undef DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS
 #endif  // _WIN32
+#elif defined(__m68k__)
+#undef DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS
 #else
 #error Target architecture was not detected as supported by Double-Conversion.
 #endif
--- 
qtwebkit-opensource-src-5.212.0~alpha2.orig/Source/WebCore/css/CSSProperty.cpp
+++ qtwebkit-opensource-src-5.212.0~alpha2/Source/WebCore/css/CSSProperty.cpp
@@ -35,7 +35,7 @@ struct SameSizeAsCSSProperty {
 void* value;
 };
 
-COMPILE_ASSERT(sizeof(CSSProperty) == sizeof(SameSizeAsCSSProperty), 
CSSProperty_should_stay_small);
+COMPILE_ASSERT(sizeof(CSSProperty) <= sizeof(SameSizeAsCSSProperty), 
CSSProperty_should_stay_small);
 
 CSSPropertyID StylePropertyMetadata::shorthandID() const
 {
--- qtwebkit-opensource-src-5.212.0~alpha2.orig/Source/WebCore/css/RuleSet.h
+++ qtwebkit-opensource-src-5.212.0~alpha2/Source/WebCore/css/RuleSet.h
@@ -143,7 +143,7 @@ struct SameSizeAsRuleData {
 unsigned d[4];
 };
 
-COMPILE_ASSERT(sizeof(RuleData) == sizeof(SameSizeAsRuleData), 
RuleData_should_stay_small);
+COMPILE_ASSERT(sizeof(RuleData) <= sizeof(SameSizeAsRuleData), 
RuleData_should_stay_small);
 
 class RuleSet {
 WTF_MAKE_NONCOPYABLE(RuleSet); WTF_MAKE_FAST_ALLOCATED;
--- 
qtwebkit-opensource-src-5.212.0~alpha2.orig/Source/WebCore/dom/ElementRareData.cpp
+++ 
qtwebkit-opensource-src-5.212.0~alpha2/Source/WebCore/dom/ElementRareData.cpp
@@ -42,6 +42,6 @@ struct SameSizeAsElementRareData : NodeR
 void* pointers[7];
 };
 
-static_assert(sizeof(ElementRareData) == sizeof(SameSizeAsElementRareData), 
"ElementRareData should stay small");
+static_assert(sizeof(ElementRareData) <= sizeof(SameSizeAsElementRareData), 
"ElementRareData should stay small");
 
 } // namespace WebCore
--- 
qtwebkit-opensource-src-5.212.0~alpha2.orig/Source/WebCore/dom/NodeRareData.cpp
+++ qtwebkit-opensource-src-5.212.0~alpha2/Source/WebCore/dom/NodeRareData.cpp
@@ -38,6 +38,6 @@ struct SameSizeAsNodeRareData {
 void* m_pointer[3];
 };
 
-COMPILE_ASSERT(sizeof(NodeRareData) == sizeof(SameSizeAsNodeRareData), 
NodeRareDataShouldStaySmall);
+COMPILE_ASSERT(sizeof(NodeRareData) <= sizeof(SameSizeAsNodeRareData), 
NodeRareDataShouldStaySmall);
 
 } // namespace WebCore
--- 
qtwebkit-opensource-src-5.212.0~alpha2.orig/Source/WebCore/dom/ShadowRoot.cpp
+++ qtwebkit-opensource-src-5.212.0~alpha2/Source/WebCore

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

2017-09-11 Thread Andreas Schwab
On Sep 11 2017, John Paul Adrian Glaubitz <glaub...@physik.fu-berlin.de> wrote:

> Because m68k has a default alignment of 16-bit, not 32-bit. Hence sizes of
> structs often differ. It's part of the SysV ABI on Linux/m68k.

Actually, the SysV ABI for m68k defines a 4-byte alignment for int, but
Linux/m68k doesn't use (all of) the SysV ABI for historical reasons.

> I would be in favor of changing it to 32-bit, but I guess upstream
> wouldn't be too much amused about that.

That would be a whole new ABI.

Andreas.

-- 
Andreas Schwab, sch...@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."



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

2017-09-11 Thread John Paul Adrian Glaubitz

On 09/11/2017 03:02 PM, Dmitry Shachnev wrote:

Patch in this bug no longer applies to the new version. Patch from webkit2gtk
package [2] applies with a slight change, but I still do not like the special
casing of struct sizes. Why are the sizes different on m68k?


Because m68k has a default alignment of 16-bit, not 32-bit. Hence sizes of
structs often differ. It's part of the SysV ABI on Linux/m68k. I would be
in favor of changing it to 32-bit, but I guess upstream wouldn't be too
much amused about that.

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#780430: qtwebkit-opensource-src: port to m68k

2017-09-11 Thread Dmitry Shachnev
Hi Adrian!

On Mon, Oct 17, 2016 at 04:02:50PM +0200, John Paul Adrian Glaubitz wrote:
> On 10/17/2016 04:00 PM, Lisandro Damián Nicanor Pérez Meyer wrote:
> > Correction: no, I can't forward it to *my* upstream: QtWebkit is not 
> > developed 
> > anymore.
> >
> > It needs to be accepted by WebKit developers. I don't have the time for 
> > this, 
> > so please feel free to do it.
>
> Ah, interesting. I wasn't aware that these particular changes are part of
> WebKit and not the derived Qt version of it.
>
> If Andreas agrees, I'm happy to forward his patch. I bet the people at
> Apple would be surprised to see someone adds support for m68k :). They
> used that architecture for a long time, after all.

I am currently working on updating QtWebKit package to the new codebase [1],
based on upstream WebKit 212 (initial version is available in experimental).

Patch in this bug no longer applies to the new version. Patch from webkit2gtk
package [2] applies with a slight change, but I still do not like the special
casing of struct sizes. Why are the sizes different on m68k? Maybe adding some
padding like in Thorsten’s original patch (in this bug) would help here?

In any case, please do forward the patch upstream as you promised. Please see
[3] for some instructions. Having m68k support upstream will help both us and
the GTK+ port.

[1]: https://github.com/annulen/webkit/
[2]: 
http://sources.debian.net/src/webkit2gtk/2.17.5-1/debian/patches/fix-ftbfs-m68k.patch/
[3]: https://webkit.org/contributing-code/

--
Dmitry Shachnev


signature.asc
Description: PGP signature


Bug#845372: marked as done (qtbase-opensource-src: Please enable m68k in double-conversion)

2016-12-14 Thread Debian Bug Tracking System
Your message dated Wed, 14 Dec 2016 15:07:30 +
with message-id <e1chb9w-00049f...@fasolo.debian.org>
and subject line Bug#845372: fixed in qtbase-opensource-src 5.7.1+dfsg-1
has caused the Debian Bug report #845372,
regarding qtbase-opensource-src: Please enable m68k in double-conversion
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
845372: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845372
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: qtbase-opensource-src
Version: 5.7.1~20161021+dfsg-6
Severity: normal
User: debian-...@lists.debian.org
Usertags: m68k

Hello!

With the update to 5.7.x, qtbase-opensource-src now fails to build
from source on Linux/m68k. This is because the embedded third-party
package 'double-conversion' in qtbase is too old to support m68k.
Support for m68k was on May 18, 2014 [1].

The attached diff patches the embedded double-conversion code the
same way it was patched in the previously mentioned commit [1].

Please include the patch in the next upload of qtbase-opensource-src
so that the package can be built on m68k again.

Thanks,
Adrian

> [1] 
> https://github.com/google/double-conversion/commit/da11179623145f53b204105a93b8bbca431141da

--
 .''`.   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
--- End Message ---
--- Begin Message ---
Source: qtbase-opensource-src
Source-Version: 5.7.1+dfsg-1

We believe that the bug you reported is fixed in the latest version of
qtbase-opensource-src, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 845...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Dmitry Shachnev <mity...@debian.org> (supplier of updated qtbase-opensource-src 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 14 Dec 2016 17:23:44 +0300
Source: qtbase-opensource-src
Binary: libqt5core5a libqt5gui5 qt5-gtk-platformtheme libqt5network5 
libqt5opengl5 libqt5sql5 libqt5sql5-mysql libqt5sql5-odbc libqt5sql5-psql 
libqt5sql5-sqlite libqt5sql5-tds libqt5sql5-ibase libqt5xml5 libqt5dbus5 
libqt5test5 libqt5concurrent5 libqt5widgets5 libqt5printsupport5 qtbase5-dev 
qtbase5-private-dev libqt5opengl5-dev qtbase5-dev-tools qt5-qmake 
qtbase5-examples qt5-default qtbase5-doc qtbase5-doc-html
Architecture: source
Version: 5.7.1+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Changed-By: Dmitry Shachnev <mity...@debian.org>
Description:
 libqt5concurrent5 - Qt 5 concurrent module
 libqt5core5a - Qt 5 core module
 libqt5dbus5 - Qt 5 D-Bus module
 libqt5gui5 - Qt 5 GUI module
 libqt5network5 - Qt 5 network module
 libqt5opengl5 - Qt 5 OpenGL module
 libqt5opengl5-dev - Qt 5 OpenGL library development files
 libqt5printsupport5 - Qt 5 print support module
 libqt5sql5 - Qt 5 SQL module
 libqt5sql5-ibase - Qt 5 Firebird database driver
 libqt5sql5-mysql - Qt 5 MySQL database driver
 libqt5sql5-odbc - Qt 5 ODBC database driver
 libqt5sql5-psql - Qt 5 PostgreSQL database driver
 libqt5sql5-sqlite - Qt 5 SQLite 3 database driver
 libqt5sql5-tds - Qt 5 FreeTDS database driver
 libqt5test5 - Qt 5 test module
 libqt5widgets5 - Qt 5 widgets module
 libqt5xml5 - Qt 5 XML module
 qt5-default - Qt 5 development defaults package
 qt5-gtk-platformtheme - Qt 5 GTK+ 3 platform theme
 qt5-qmake  - Qt 5 qmake Makefile generator tool
 qtbase5-dev - Qt 5 base development files
 qtbase5-dev-tools - Qt 5 base development programs
 qtbase5-doc - Qt 5 base documentation
 qtbase5-doc-html - Qt 5 base HTML documentation
 qtbase5-examples - Qt 5 base examples
 qtbase5-private-dev - Qt 5 base private development files
Closes: 845372 847769
Changes:
 qtbase-opensource-src (5.7.1+dfsg-1) unstable; urgency=medium
 .
   [ Dmitry Shachnev ]
   * New upstream final release.
   * Refresh qsettings_XDG_CONFIG_DIRS.diff and qsettings_simplify_logic.diff.
   * Build with system libdouble-conversion library (closes: #845372).
   * Conver

Bug#846266: marked as done (solid: FTBFS on mipsel and m68k - src/solid/predicate_parser.c: No such file or directory)

2016-11-30 Thread Debian Bug Tracking System
Your message dated Wed, 30 Nov 2016 19:41:40 +
with message-id <e1ccala-0006dy...@fasolo.debian.org>
and subject line Bug#846266: fixed in solid 5.28.0-2
has caused the Debian Bug report #846266,
regarding solid: FTBFS on mipsel and m68k - src/solid/predicate_parser.c: No 
such file or directory
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
846266: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=846266
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: solid
Version: 5.28.0-1
Severity: serious
Tags: patch

Hi,

So I've had a look at the mips FTBFS, and while I have not been able to
reproduce it there does seem to be a parallel build race going on with
the bison/flex parser generation.

In src/solid/CMakeLists.txt, the parser is generated using bison_target
which uses add_custom_command under the hood. The output file is then
added to the list of sources creating a file-level dependency from the
KF5Solid target to the bison/flex generation command. However, the list
of sources is later used as part of the KF5Solid_static target. Since
file-level dependencies cannot cross between targets, the bison
generation happens twice completely independently as part of the two
targets. If you are very unlucky, the generation in one target can
happen at the same time as the compilation of the parser in the other
target causing a collision.

The attached patch should fix that by putting the generation in a
separate target and manually adding a dependency on it. This forces the
parser to be generated before anything is compiled.

As a side node, there seems to be a bug in CMake 3.7.0 which causes
bison targets to be remade repeatedly, but it looks like it'll be fixed
in 3.7.1.

Thanks,
James
--- a/src/solid/CMakeLists.txt
+++ b/src/solid/CMakeLists.txt
@@ -9,6 +9,7 @@ endif()
 set(solid_LIB_SRCS ${solid_LIB_SRCS} ${solid_QM_LOADER})
 
 add_library(KF5Solid  ${solid_LIB_SRCS})
+add_dependencies(KF5Solid SolidParserTarget)
 target_include_directories(KF5Solid PUBLIC "$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR};${CMAKE_CURRENT_SOURCE_DIR}/..;${CMAKE_CURRENT_BINARY_DIR}/..>")
 generate_export_header(KF5Solid BASE_NAME Solid)
 add_library(KF5::Solid ALIAS KF5Solid)
@@ -87,6 +88,7 @@ install(TARGETS KF5Solid EXPORT KF5SolidTargets ${KF5_INSTALL_TARGETS_DEFAULT_AR
 ### static lib for tests  ###
 
 add_library(KF5Solid_static STATIC ${solid_LIB_SRCS})
+add_dependencies(KF5Solid_static SolidParserTarget)
 set_target_properties(KF5Solid_static PROPERTIES COMPILE_FLAGS -DSOLID_STATIC_DEFINE=1)
 
 target_link_libraries(KF5Solid_static PUBLIC Qt5::Core)
diff --git a/src/solid/devices/CMakeLists.txt b/src/solid/devices/CMakeLists.txt
index b841b54..a020825 100644
--- a/src/solid/devices/CMakeLists.txt
+++ b/src/solid/devices/CMakeLists.txt
@@ -90,6 +90,7 @@ flex_target(SolidLexer
 )
 add_flex_bison_dependency(SolidLexer SolidParser)
 list(APPEND solid_LIB_SRCS ${BISON_SolidParser_OUTPUTS} ${FLEX_SolidLexer_OUTPUTS})
+add_custom_target(SolidParserTarget DEPENDS ${BISON_SolidParser_OUTPUTS} ${FLEX_SolidLexer_OUTPUTS})
 
 include(devices/backends/fakehw/CMakeLists.txt)
 


signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: solid
Source-Version: 5.28.0-2

We believe that the bug you reported is fixed in the latest version of
solid, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 846...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Maximiliano Curia <m...@debian.org> (supplier of updated solid package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 30 Nov 2016 15:57:09 +0100
Source: solid
Binary: libkf5solid-dev libkf5solid5 libkf5solid5-data libkf5solid-bin 
qtdeclarative5-kf5solid qml-module-org-kde-solid
Architecture: source
Version: 5.28.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian/Kubuntu Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Changed-By: Maximiliano Curia <m...@debian.org>
Description:
 libkf5solid-bin - Qt library to query and control hardware
 libkf5solid-dev - 

Bug#844722: qtwebkit: Please add platform support for m68k

2016-11-24 Thread Lisandro Damián Nicanor Pérez Meyer
On 23 November 2016 at 13:57, John Paul Adrian Glaubitz
 wrote:
> Hi!
>
> Attaching the debdiff for qtwebkit_2.3.4.dfsg-9.1.

Comitted, thanks!



Bug#844722: qtwebkit: Please add platform support for m68k

2016-11-23 Thread John Paul Adrian Glaubitz
Hi!

Attaching the debdiff for qtwebkit_2.3.4.dfsg-9.1.

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 qtwebkit-2.3.4.dfsg/debian/changelog qtwebkit-2.3.4.dfsg/debian/changelog
--- qtwebkit-2.3.4.dfsg/debian/changelog	2016-10-21 13:55:27.0 +0200
+++ qtwebkit-2.3.4.dfsg/debian/changelog	2016-11-23 11:46:11.0 +0100
@@ -1,3 +1,10 @@
+qtwebkit (2.3.4.dfsg-9.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Add m68k_support.diff to add basic m68k support (Closes: #844722).
+
+ -- John Paul Adrian Glaubitz <glaub...@physik.fu-berlin.de>  Wed, 23 Nov 2016 11:46:11 +0100
+
 qtwebkit (2.3.4.dfsg-9) unstable; urgency=medium
 
   [ Lisandro Damián Nicanor Pérez Meyer ]
diff -Nru qtwebkit-2.3.4.dfsg/debian/patches/m68k_support.diff qtwebkit-2.3.4.dfsg/debian/patches/m68k_support.diff
--- qtwebkit-2.3.4.dfsg/debian/patches/m68k_support.diff	1970-01-01 01:00:00.0 +0100
+++ qtwebkit-2.3.4.dfsg/debian/patches/m68k_support.diff	2016-11-17 22:21:48.0 +0100
@@ -0,0 +1,93 @@
+Description: Add support for m68k
+Author: John Paul Adrian Glaubitz <glaub...@physik.fu-berlin.de>
+
+--- qtwebkit-2.3.4.dfsg.orig/Source/WTF/wtf/Platform.h
 qtwebkit-2.3.4.dfsg/Source/WTF/wtf/Platform.h
+@@ -345,6 +345,12 @@
+ #endif
+ #endif
+ 
++/* CPU(M68K) - m68k */
++#if defined(__mc68000__)
++#define WTF_CPU_M68K 1
++#define WTF_CPU_BIG_ENDIAN 1
++#endif
++
+ #if CPU(ARM) || CPU(MIPS) || CPU(SH4) || CPU(SPARC) || CPU(MIPS64)
+ #define WTF_CPU_NEEDS_ALIGNED_ACCESS 1
+ #endif
+--- qtwebkit-2.3.4.dfsg.orig/Source/WTF/wtf/dtoa/utils.h
 qtwebkit-2.3.4.dfsg/Source/WTF/wtf/dtoa/utils.h
+@@ -58,6 +58,8 @@ defined(_MIPS_ARCH_MIPS32R2)
+ #else
+ #undef DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS
+ #endif  // _WIN32
++#elif defined(__mc68000__)
++#undef DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS
+ #else
+ #error Target architecture was not detected as supported by Double-Conversion.
+ #endif
+--- qtwebkit-2.3.4.dfsg.orig/Source/WebCore/css/CSSProperty.cpp
 qtwebkit-2.3.4.dfsg/Source/WebCore/css/CSSProperty.cpp
+@@ -39,7 +39,7 @@ struct SameSizeAsCSSProperty {
+ void* value;
+ };
+ 
+-COMPILE_ASSERT(sizeof(CSSProperty) == sizeof(SameSizeAsCSSProperty), CSSProperty_should_stay_small);
++COMPILE_ASSERT(sizeof(CSSProperty) <= sizeof(SameSizeAsCSSProperty), CSSProperty_should_stay_small);
+ 
+ void CSSProperty::wrapValueInCommaSeparatedList()
+ {
+--- qtwebkit-2.3.4.dfsg.orig/Source/WebCore/dom/ShadowRoot.cpp
 qtwebkit-2.3.4.dfsg/Source/WebCore/dom/ShadowRoot.cpp
+@@ -60,7 +60,7 @@ struct SameSizeAsShadowRoot : public Doc
+ unsigned countersAndFlags[1];
+ };
+ 
+-COMPILE_ASSERT(sizeof(ShadowRoot) == sizeof(SameSizeAsShadowRoot), shadowroot_should_stay_small);
++COMPILE_ASSERT(sizeof(ShadowRoot) <= sizeof(SameSizeAsShadowRoot), shadowroot_should_stay_small);
+ 
+ ShadowRoot::ShadowRoot(Document* document)
+ : DocumentFragment(document, CreateShadowRoot)
+--- qtwebkit-2.3.4.dfsg.orig/Source/WebCore/rendering/style/RenderStyle.cpp
 qtwebkit-2.3.4.dfsg/Source/WebCore/rendering/style/RenderStyle.cpp
+@@ -58,7 +58,7 @@ struct SameSizeAsBorderValue {
+ unsigned m_width;
+ };
+ 
+-COMPILE_ASSERT(sizeof(BorderValue) == sizeof(SameSizeAsBorderValue), BorderValue_should_not_grow);
++COMPILE_ASSERT(sizeof(BorderValue) <= sizeof(SameSizeAsBorderValue), BorderValue_should_not_grow);
+ 
+ struct SameSizeAsRenderStyle : public RefCounted {
+ void* dataRefs[7];
+@@ -75,7 +75,7 @@ struct SameSizeAsRenderStyle : public Re
+ } noninherited_flags;
+ };
+ 
+-COMPILE_ASSERT(sizeof(RenderStyle) == sizeof(SameSizeAsRenderStyle), RenderStyle_should_stay_small);
++COMPILE_ASSERT(sizeof(RenderStyle) <= sizeof(SameSizeAsRenderStyle), RenderStyle_should_stay_small);
+ 
+ inline RenderStyle* defaultStyle()
+ {
+--- qtwebkit-2.3.4.dfsg.orig/Source/WebCore/rendering/style/StyleBoxData.cpp
 qtwebkit-2.3.4.dfsg/Source/WebCore/rendering/style/StyleBoxData.cpp
+@@ -33,7 +33,7 @@ struct SameSizeAsStyleBoxData : public R
+ uint32_t bitfields;
+ };
+ 
+-COMPILE_ASSERT(sizeof(StyleBoxData) == sizeof(SameSizeAsStyleBoxData), StyleBoxData_should_not_grow);
++COMPILE_ASSERT(sizeof(StyleBoxData) <= sizeof(SameSizeAsStyleBoxData), StyleBoxData_should_not_grow);
+ 
+ StyleBoxData::StyleBoxData()
+ : m_minWidth(RenderStyle::initialMinSize())
+--- qtwebkit-2.3.4.dfsg.orig/Source/WebCore/rendering/style/StyleRareInheritedData.cpp
 qtwebkit-2.3.4.dfsg/Source/WebCore/rendering/style/StyleRareInheritedData.cpp
+@@ -61,7 +61,7 @@ struct SameSizeAsStyleRareInheritedData
+ #endif
+ };
+ 
+-COMPILE_ASSERT(sizeof(StyleRareInheritedData) == sizeof(SameSizeAsStyleRareInheritedData), StyleRareInheritedData_should_bit_pack);
++COMPILE_ASSERT(sizeof(StyleRareInheritedData) <= sizeof(Sa

Bug#844722: marked as done (qtwebkit: Please add platform support for m68k)

2016-11-23 Thread Debian Bug Tracking System
Your message dated Wed, 23 Nov 2016 16:34:22 +
with message-id <e1c9av4-000717...@fasolo.debian.org>
and subject line Bug#844722: fixed in qtwebkit 2.3.4.dfsg-9.1
has caused the Debian Bug report #844722,
regarding qtwebkit: Please add platform support for m68k
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
844722: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=844722
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: qtwebkit
Version: 2.3.4.dfsg-9
Severity: normal
User: debian-...@lists.debian.org
Usertags: m68k

Hi!

qtwebkit used to build fine in the past but due to changes in the
upstream WebKit code no longer does. I have therefore created a
small patch which re-adds m68k support to qtwebkit.

This patch is based on the m68k support patch for qtwebkit-
opensource-src [1] and I have verified it to make qtwebkit
build fine on m68k with the patch applied.

It would be great to have both qtwebkit-opensource-src and
qtwebkit patched for m68k support as both packages still have
a lot of reverse dependencies and therefore prevent several
packages from being built on m68k.

I'm aware that qtwebkit* is going away in the future, but until
this has happened, it would be great to just have m68k support
in the package to help Debian's m68k port move forward.

Thanks,
Adrian

> [1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780430

--
 .''`.  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: Add support for m68k
Author: John Paul Adrian Glaubitz <glaub...@physik.fu-berlin.de>

--- qtwebkit-2.3.4.dfsg.orig/Source/WTF/wtf/Platform.h
+++ qtwebkit-2.3.4.dfsg/Source/WTF/wtf/Platform.h
@@ -345,6 +345,12 @@
 #endif
 #endif
 
+/* CPU(M68K) - m68k */
+#if defined(__mc68000__)
+#define WTF_CPU_M68K 1
+#define WTF_CPU_BIG_ENDIAN 1
+#endif
+
 #if CPU(ARM) || CPU(MIPS) || CPU(SH4) || CPU(SPARC) || CPU(MIPS64)
 #define WTF_CPU_NEEDS_ALIGNED_ACCESS 1
 #endif
--- qtwebkit-2.3.4.dfsg.orig/Source/WTF/wtf/dtoa/utils.h
+++ qtwebkit-2.3.4.dfsg/Source/WTF/wtf/dtoa/utils.h
@@ -58,6 +58,8 @@ defined(_MIPS_ARCH_MIPS32R2)
 #else
 #undef DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS
 #endif  // _WIN32
+#elif defined(__mc68000__)
+#undef DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS
 #else
 #error Target architecture was not detected as supported by Double-Conversion.
 #endif
--- qtwebkit-2.3.4.dfsg.orig/Source/WebCore/css/CSSProperty.cpp
+++ qtwebkit-2.3.4.dfsg/Source/WebCore/css/CSSProperty.cpp
@@ -39,7 +39,7 @@ struct SameSizeAsCSSProperty {
 void* value;
 };
 
-COMPILE_ASSERT(sizeof(CSSProperty) == sizeof(SameSizeAsCSSProperty), CSSProperty_should_stay_small);
+COMPILE_ASSERT(sizeof(CSSProperty) <= sizeof(SameSizeAsCSSProperty), CSSProperty_should_stay_small);
 
 void CSSProperty::wrapValueInCommaSeparatedList()
 {
--- qtwebkit-2.3.4.dfsg.orig/Source/WebCore/dom/ShadowRoot.cpp
+++ qtwebkit-2.3.4.dfsg/Source/WebCore/dom/ShadowRoot.cpp
@@ -60,7 +60,7 @@ struct SameSizeAsShadowRoot : public Doc
 unsigned countersAndFlags[1];
 };
 
-COMPILE_ASSERT(sizeof(ShadowRoot) == sizeof(SameSizeAsShadowRoot), shadowroot_should_stay_small);
+COMPILE_ASSERT(sizeof(ShadowRoot) <= sizeof(SameSizeAsShadowRoot), shadowroot_should_stay_small);
 
 ShadowRoot::ShadowRoot(Document* document)
 : DocumentFragment(document, CreateShadowRoot)
--- qtwebkit-2.3.4.dfsg.orig/Source/WebCore/rendering/style/RenderStyle.cpp
+++ qtwebkit-2.3.4.dfsg/Source/WebCore/rendering/style/RenderStyle.cpp
@@ -58,7 +58,7 @@ struct SameSizeAsBorderValue {
 unsigned m_width;
 };
 
-COMPILE_ASSERT(sizeof(BorderValue) == sizeof(SameSizeAsBorderValue), BorderValue_should_not_grow);
+COMPILE_ASSERT(sizeof(BorderValue) <= sizeof(SameSizeAsBorderValue), BorderValue_should_not_grow);
 
 struct SameSizeAsRenderStyle : public RefCounted {
 void* dataRefs[7];
@@ -75,7 +75,7 @@ struct SameSizeAsRenderStyle : public Re
 } noninherited_flags;
 };
 
-COMPILE_ASSERT(sizeof(RenderStyle) == sizeof(SameSizeAsRenderStyle), RenderStyle_should_stay_small);
+COMPILE_ASSERT(sizeof(RenderStyle) <= sizeof(SameSizeAsRenderStyle), RenderStyle_should_stay_small);
 
 inline RenderStyle* defaultStyle()
 {
--- qtwebkit-2.3.4.dfsg.orig/Source/WebCore/rendering/style/StyleBoxData.cpp
+++ qtwebkit-2.3.4.dfsg/Source/WebCore/rendering/style/StyleBoxData.cpp
@@ -33,7 +33,7 @@ struct SameSizeAsStyleBoxData : public R
 uint32_t bitfields;
 };
 
-COMPILE_ASSERT(siz

Bug#845372: qtbase-opensource-src: Please enable m68k in double-conversion

2016-11-23 Thread John Paul Adrian Glaubitz
On 11/23/2016 03:12 PM, Lisandro Damián Nicanor Pérez Meyer wrote:
> yes, please go ahead and NMU it and then send us to the bug report the final 
> debdiff so I can apply it.

Ok, thanks. Currently building the package. Will post the debdiff after 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



signature.asc
Description: OpenPGP digital signature


Bug#845372: qtbase-opensource-src: Please enable m68k in double-conversion

2016-11-23 Thread Lisandro Damián Nicanor Pérez Meyer
On miércoles, 23 de noviembre de 2016 13:10:04 ART Dmitry Shachnev wrote:
> Hi Adrian,
> 
[snip] 
> We will be better using the system double-conversion instead of the bundled
> one. This was the case in Qt 5.6, but in 5.7 the relevant code has been
> moved from qtdeclarative to qtbase, and I somehow forgot about that.

Yeah, I missed that one too.

-- 
Must it be assumed that because we are engineers beauty is not
our concern, and that while we make our constructions robust
and durable we do not also strive to make them elegant?
Is it not true that the genuine conditions of strength always
comply with the secret conditions of harmony?
 Gustave Eiffel, 1887

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


Bug#845372: qtbase-opensource-src: Please enable m68k in double-conversion

2016-11-23 Thread Lisandro Damián Nicanor Pérez Meyer
On miércoles, 23 de noviembre de 2016 11:57:51 ART John Paul Adrian Glaubitz 
wrote:
> On 11/23/2016 11:43 AM, Dmitry Shachnev wrote:
> > In case of #780430, it looks like Lisandro wants the patch to be reviewed
> > by upstream first, and you said you could forward it. Is there any update
> > on that?
> 
> No, not yet, unfortunately. I will try to do it this week.
> 
> > In case of #844722, I would just ask you to NMU it. Though I am not listed
> > as Uploader, so let’s wait for what Lisandro says first.
> 
> That would be great. I have the package ready already, so I just need to
> build and upload.

yes, please go ahead and NMU it and then send us to the bug report the final 
debdiff so I can apply it.


-- 
15: Que es el "Correo Electronico"
* El correo que te llega por la corriente
Damian Nadales
http://mx.grulic.org.ar/lurker/message/20080307.141449.a70fb2fc.es.html

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


Bug#845372: qtbase-opensource-src: Please enable m68k in double-conversion

2016-11-23 Thread John Paul Adrian Glaubitz
On 11/23/2016 11:43 AM, Dmitry Shachnev wrote:
> In case of #780430, it looks like Lisandro wants the patch to be reviewed
> by upstream first, and you said you could forward it. Is there any update
> on that?

No, not yet, unfortunately. I will try to do it this week.

> In case of #844722, I would just ask you to NMU it. Though I am not listed
> as Uploader, so let’s wait for what Lisandro says first.

That would be great. I have the package ready already, so I just need to
build and 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



signature.asc
Description: OpenPGP digital signature


Bug#845372: qtbase-opensource-src: Please enable m68k in double-conversion

2016-11-23 Thread Dmitry Shachnev
On Wed, Nov 23, 2016 at 11:26:49AM +0100, John Paul Adrian Glaubitz wrote:
> > For qtwebkit-opensource-src — I will try (will need some patching probably).
>
> I have attached a patch to the appropriate bug report:
>
> > https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780430#27
>
> > For qtwebkit (4.x) — the goal is to remove it soon [1], so I don’t think it
> > is worth the effort.
>
> I know, but I also prepared a patch for that in the meantime:
>
> > https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=844722#5
>
> I'm aware that qtwebkit is deprecated but it's still currently a reverse
> dependency to quite a number of packages and therefore it would be good
> to have it build on m68k automatically. Otherwise I constantly have to
> do manual builds for every package upload :(.

Oh, I did not realize that you had already provided the patches!

In case of #780430, it looks like Lisandro wants the patch to be reviewed
by upstream first, and you said you could forward it. Is there any update
on that?

In case of #844722, I would just ask you to NMU it. Though I am not listed
as Uploader, so let’s wait for what Lisandro says first.

--
Dmitry Shachnev


signature.asc
Description: PGP signature


Bug#845372: qtbase-opensource-src: Please enable m68k in double-conversion

2016-11-23 Thread John Paul Adrian Glaubitz
On 11/23/2016 11:22 AM, Dmitry Shachnev wrote:
> For qtwebkit-opensource-src — I will try (will need some patching probably).

I have attached a patch to the appropriate bug report:

> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780430#27

> For qtwebkit (4.x) — the goal is to remove it soon [1], so I don’t think it
> is worth the effort.

I know, but I also prepared a patch for that in the meantime:

> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=844722#5

I'm aware that qtwebkit is deprecated but it's still currently a reverse
dependency to quite a number of packages and therefore it would be good
to have it build on m68k automatically. Otherwise I constantly have to
do manual builds for every package 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



signature.asc
Description: OpenPGP digital signature


Bug#845372: qtbase-opensource-src: Please enable m68k in double-conversion

2016-11-23 Thread Dmitry Shachnev
On Wed, Nov 23, 2016 at 11:14:07AM +0100, John Paul Adrian Glaubitz wrote:
> > We will be better using the system double-conversion instead of the bundled
> > one. This was the case in Qt 5.6, but in 5.7 the relevant code has been
> > moved from qtdeclarative to qtbase, and I somehow forgot about that.
>
> Could this be done for qtwebkit-opensource-src and qtwebkit as well? They
> also have the same issue on m68k, although they need a little more patching
> to build fine on m68k.

For qtwebkit-opensource-src — I will try (will need some patching probably).

For qtwebkit (4.x) — the goal is to remove it soon [1], so I don’t think it
is worth the effort.

[1]: https://lists.debian.org/debian-devel-announce/2015/05/msg1.html

--
Dmitry Shachnev


signature.asc
Description: PGP signature


Bug#845372: qtbase-opensource-src: Please enable m68k in double-conversion

2016-11-23 Thread John Paul Adrian Glaubitz
On 11/23/2016 11:10 AM, Dmitry Shachnev wrote:
> We will be better using the system double-conversion instead of the bundled
> one. This was the case in Qt 5.6, but in 5.7 the relevant code has been
> moved from qtdeclarative to qtbase, and I somehow forgot about that.

Could this be done for qtwebkit-opensource-src and qtwebkit as well? They
also have the same issue on m68k, although they need a little more patching
to build fine on m68k.

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



signature.asc
Description: OpenPGP digital signature


Bug#845372: qtbase-opensource-src: Please enable m68k in double-conversion

2016-11-23 Thread Dmitry Shachnev
Hi Adrian,

On Tue, Nov 22, 2016 at 09:43:44PM +0100, John Paul Adrian Glaubitz wrote:
> With the update to 5.7.x, qtbase-opensource-src now fails to build
> from source on Linux/m68k. This is because the embedded third-party
> package 'double-conversion' in qtbase is too old to support m68k.
> Support for m68k was on May 18, 2014 [1].
>
> The attached diff patches the embedded double-conversion code the
> same way it was patched in the previously mentioned commit [1].
>
> Please include the patch in the next upload of qtbase-opensource-src
> so that the package can be built on m68k again.

We will be better using the system double-conversion instead of the bundled
one. This was the case in Qt 5.6, but in 5.7 the relevant code has been
moved from qtdeclarative to qtbase, and I somehow forgot about that.

--
Dmitry Shachnev


signature.asc
Description: PGP signature


Bug#845372: qtbase-opensource-src: Please enable m68k in double-conversion

2016-11-22 Thread John Paul Adrian Glaubitz
Source: qtbase-opensource-src
Version: 5.7.1~20161021+dfsg-6
Severity: normal
User: debian-...@lists.debian.org
Usertags: m68k

Hello!

With the update to 5.7.x, qtbase-opensource-src now fails to build
from source on Linux/m68k. This is because the embedded third-party
package 'double-conversion' in qtbase is too old to support m68k.
Support for m68k was on May 18, 2014 [1].

The attached diff patches the embedded double-conversion code the
same way it was patched in the previously mentioned commit [1].

Please include the patch in the next upload of qtbase-opensource-src
so that the package can be built on m68k again.

Thanks,
Adrian

> [1] 
> https://github.com/google/double-conversion/commit/da11179623145f53b204105a93b8bbca431141da

--
 .''`.   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#844722: qtwebkit: Please add platform support for m68k

2016-11-18 Thread John Paul Adrian Glaubitz
Source: qtwebkit
Version: 2.3.4.dfsg-9
Severity: normal
User: debian-...@lists.debian.org
Usertags: m68k

Hi!

qtwebkit used to build fine in the past but due to changes in the
upstream WebKit code no longer does. I have therefore created a
small patch which re-adds m68k support to qtwebkit.

This patch is based on the m68k support patch for qtwebkit-
opensource-src [1] and I have verified it to make qtwebkit
build fine on m68k with the patch applied.

It would be great to have both qtwebkit-opensource-src and
qtwebkit patched for m68k support as both packages still have
a lot of reverse dependencies and therefore prevent several
packages from being built on m68k.

I'm aware that qtwebkit* is going away in the future, but until
this has happened, it would be great to just have m68k support
in the package to help Debian's m68k port move forward.

Thanks,
Adrian

> [1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780430

--
 .''`.  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: Add support for m68k
Author: John Paul Adrian Glaubitz <glaub...@physik.fu-berlin.de>

--- qtwebkit-2.3.4.dfsg.orig/Source/WTF/wtf/Platform.h
+++ qtwebkit-2.3.4.dfsg/Source/WTF/wtf/Platform.h
@@ -345,6 +345,12 @@
 #endif
 #endif
 
+/* CPU(M68K) - m68k */
+#if defined(__mc68000__)
+#define WTF_CPU_M68K 1
+#define WTF_CPU_BIG_ENDIAN 1
+#endif
+
 #if CPU(ARM) || CPU(MIPS) || CPU(SH4) || CPU(SPARC) || CPU(MIPS64)
 #define WTF_CPU_NEEDS_ALIGNED_ACCESS 1
 #endif
--- qtwebkit-2.3.4.dfsg.orig/Source/WTF/wtf/dtoa/utils.h
+++ qtwebkit-2.3.4.dfsg/Source/WTF/wtf/dtoa/utils.h
@@ -58,6 +58,8 @@ defined(_MIPS_ARCH_MIPS32R2)
 #else
 #undef DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS
 #endif  // _WIN32
+#elif defined(__mc68000__)
+#undef DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS
 #else
 #error Target architecture was not detected as supported by Double-Conversion.
 #endif
--- qtwebkit-2.3.4.dfsg.orig/Source/WebCore/css/CSSProperty.cpp
+++ qtwebkit-2.3.4.dfsg/Source/WebCore/css/CSSProperty.cpp
@@ -39,7 +39,7 @@ struct SameSizeAsCSSProperty {
 void* value;
 };
 
-COMPILE_ASSERT(sizeof(CSSProperty) == sizeof(SameSizeAsCSSProperty), CSSProperty_should_stay_small);
+COMPILE_ASSERT(sizeof(CSSProperty) <= sizeof(SameSizeAsCSSProperty), CSSProperty_should_stay_small);
 
 void CSSProperty::wrapValueInCommaSeparatedList()
 {
--- qtwebkit-2.3.4.dfsg.orig/Source/WebCore/dom/ShadowRoot.cpp
+++ qtwebkit-2.3.4.dfsg/Source/WebCore/dom/ShadowRoot.cpp
@@ -60,7 +60,7 @@ struct SameSizeAsShadowRoot : public Doc
 unsigned countersAndFlags[1];
 };
 
-COMPILE_ASSERT(sizeof(ShadowRoot) == sizeof(SameSizeAsShadowRoot), shadowroot_should_stay_small);
+COMPILE_ASSERT(sizeof(ShadowRoot) <= sizeof(SameSizeAsShadowRoot), shadowroot_should_stay_small);
 
 ShadowRoot::ShadowRoot(Document* document)
 : DocumentFragment(document, CreateShadowRoot)
--- qtwebkit-2.3.4.dfsg.orig/Source/WebCore/rendering/style/RenderStyle.cpp
+++ qtwebkit-2.3.4.dfsg/Source/WebCore/rendering/style/RenderStyle.cpp
@@ -58,7 +58,7 @@ struct SameSizeAsBorderValue {
 unsigned m_width;
 };
 
-COMPILE_ASSERT(sizeof(BorderValue) == sizeof(SameSizeAsBorderValue), BorderValue_should_not_grow);
+COMPILE_ASSERT(sizeof(BorderValue) <= sizeof(SameSizeAsBorderValue), BorderValue_should_not_grow);
 
 struct SameSizeAsRenderStyle : public RefCounted {
 void* dataRefs[7];
@@ -75,7 +75,7 @@ struct SameSizeAsRenderStyle : public Re
 } noninherited_flags;
 };
 
-COMPILE_ASSERT(sizeof(RenderStyle) == sizeof(SameSizeAsRenderStyle), RenderStyle_should_stay_small);
+COMPILE_ASSERT(sizeof(RenderStyle) <= sizeof(SameSizeAsRenderStyle), RenderStyle_should_stay_small);
 
 inline RenderStyle* defaultStyle()
 {
--- qtwebkit-2.3.4.dfsg.orig/Source/WebCore/rendering/style/StyleBoxData.cpp
+++ qtwebkit-2.3.4.dfsg/Source/WebCore/rendering/style/StyleBoxData.cpp
@@ -33,7 +33,7 @@ struct SameSizeAsStyleBoxData : public R
 uint32_t bitfields;
 };
 
-COMPILE_ASSERT(sizeof(StyleBoxData) == sizeof(SameSizeAsStyleBoxData), StyleBoxData_should_not_grow);
+COMPILE_ASSERT(sizeof(StyleBoxData) <= sizeof(SameSizeAsStyleBoxData), StyleBoxData_should_not_grow);
 
 StyleBoxData::StyleBoxData()
 : m_minWidth(RenderStyle::initialMinSize())
--- qtwebkit-2.3.4.dfsg.orig/Source/WebCore/rendering/style/StyleRareInheritedData.cpp
+++ qtwebkit-2.3.4.dfsg/Source/WebCore/rendering/style/StyleRareInheritedData.cpp
@@ -61,7 +61,7 @@ struct SameSizeAsStyleRareInheritedData
 #endif
 };
 
-COMPILE_ASSERT(sizeof(StyleRareInheritedData) == sizeof(SameSizeAsStyleRareInheritedData), StyleRareInheritedData_should_bit_pack);
+COMPILE_ASSERT(sizeof(StyleRareInheritedData) <= sizeof(SameSizeAsStyleRareInheritedData), StyleRareInheritedData_should_bit_pack);
 
 StyleRareInheritedData::StyleRareInheritedData()
 : listStyleImage(RenderStyle::initialListStyleImage())


Bug#840693: marked as done (qttools-opensource-src: Please disable WebKit support on m68k and sh4)

2016-10-25 Thread Debian Bug Tracking System
Your message dated Tue, 25 Oct 2016 17:45:31 +
with message-id <e1bz5n1-lj...@franck.debian.org>
and subject line Bug#840693: fixed in qttools-opensource-src 5.6.1-4
has caused the Debian Bug report #840693,
regarding qttools-opensource-src: Please disable WebKit support on m68k and sh4
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
840693: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=840693
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: qttools-opensource-src
Version: 5.6.1-2
Severity: normal

Hi!

Both on m68k and sh4, qtwebkit-opensource-src doesn't build [1] and fixing the
issue would probably require quite some elbow grease. Thus, it would be
great if WebKit support in qttools could be disabled on these architectures
for the time being.

>From what I can see [2], it should be enough to not build-depend on 
>libqt5webkit5-dev
on m68k and sh4, thus, I suggest suffixing this B-D with [!m68k !sh4]. Allowing
qttools-opensource-src to build on m68k and sh4 would eventually allow 
cmake-extra-modules
to build which will make a large number of packages installable again.

Thanks for considering,

Adrian

> [1] 
> https://buildd.debian.org/status/package.php?p=qtwebkit-opensource-src=sid
> [2] 
> https://anonscm.debian.org/cgit/pkg-kde/qt/qttools.git/commit/?id=e986a62459dea5f04683df8ce02ed75501fce1e8

--
 .''`.  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
--- End Message ---
--- Begin Message ---
Source: qttools-opensource-src
Source-Version: 5.6.1-4

We believe that the bug you reported is fixed in the latest version of
qttools-opensource-src, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 840...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Lisandro Damián Nicanor Pérez Meyer <lisan...@debian.org> (supplier of updated 
qttools-opensource-src package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 25 Oct 2016 13:11:53 -0300
Source: qttools-opensource-src
Binary: libqt5clucene5 libqt5designer5 libqt5designercomponents5 qdbus-qt5 
libqt5help5 qttools5-dev qttools5-private-dev qttools5-dev-tools 
qttools5-examples qttools5-dbg qttools5-examples-dbg qttools5-doc 
qttools5-doc-html
Architecture: source
Version: 5.6.1-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Changed-By: Lisandro Damián Nicanor Pérez Meyer <lisan...@debian.org>
Description:
 libqt5clucene5 - Qt 5 CLucene module
 libqt5designer5 - Qt 5 designer module
 libqt5designercomponents5 - Qt 5 Designer components module
 libqt5help5 - Qt 5 help module
 qdbus-qt5  - Qt 5 D-Bus tool
 qttools5-dbg - Qt 5 tools debugging symbols
 qttools5-dev - Qt 5 tools development files
 qttools5-dev-tools - Qt 5 development tools
 qttools5-doc - Qt 5 tools documentation
 qttools5-doc-html - Qt 5 tools HTML documentation
 qttools5-examples - Qt 5 tools examples
 qttools5-examples-dbg - Qt 5 tools examples debugging symbols
 qttools5-private-dev - Qt 5 tools private development files
Closes: 840693
Changes:
 qttools-opensource-src (5.6.1-4) unstable; urgency=medium
 .
   * Do not install the qwebview plugin on archs that do not have qtwebkit
 support (Closes: #840693).
Checksums-Sha1:
 0b2756e41b2cac0fca7f057ac9fd517079ea2699 3261 
qttools-opensource-src_5.6.1-4.dsc
 e066c0c57143231fe5bcdb647a37fc02b40b9d69 44244 
qttools-opensource-src_5.6.1-4.debian.tar.xz
Checksums-Sha256:
 74394c7677c7cf98a9e35ac4473f57de181d629b9d756ea88d314c43d2e07c2c 3261 
qttools-opensource-src_5.6.1-4.dsc
 1840e0b0c5d5807b77ce1b1edbc4f2a98b7fb422c266a1b8ef0be17706db 44244 
qttools-opensource-src_5.6.1-4.debian.tar.xz
Files:
 935dec474cea69a24ddd0360dec8bf51 3261 libs optional 
qttools-opensource-src_5.6.1-4.dsc
 315af78bdb6ebb0593f7e6a0674cf03a 44244 libs optional 
qttools-opensource-src_5.6.1-4.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIxBAEBCAAbBQJYD4ULFBxsaXN

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

2016-10-17 Thread Andreas Schwab
On Okt 17 2016, John Paul Adrian Glaubitz  wrote:

> If Andreas agrees, I'm happy to forward his patch.

Please do.

Thanks, Andreas.

-- 
Andreas Schwab, sch...@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."



Bug#840693: qttools-opensource-src: Please disable WebKit support on m68k and sh4

2016-10-17 Thread Lisandro Damián Nicanor Pérez Meyer
On lunes, 17 de octubre de 2016 3:19:17 P. M. ART John Paul Adrian Glaubitz 
wrote:
> Control: reopen -1
> 
> This did not work, unfortunately:
> > dh_install: Cannot find (any matches for)
> > "usr/lib/*/qt5/plugins/designer/libqwebview.so" (tried in "." and
> > "debian/tmp") dh_install: qttools5-dev-tools missing files:
> > usr/lib/*/qt5/plugins/designer/libqwebview.so dh_install: missing files,
> > aborting
> 
> However, I also don't know whether there is a way to exclude certain files
> during dh_install for some architectures. Does dh_install support something
> like that?

Yes, I can do it on the next upload.


-- 
"No es el crecimiento de la tecnología lo que excluye, sino la
protección sistemática de los derechos de uso de la misma,
lo cual se puede aplicar al arte."
  David Cuartielles

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


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

2016-10-17 Thread John Paul Adrian Glaubitz
On 10/17/2016 04:00 PM, Lisandro Damián Nicanor Pérez Meyer wrote:
> Correction: no, I can't forward it to *my* upstream: QtWebkit is not 
> developed 
> anymore.
> 
> It needs to be accepted by WebKit developers. I don't have the time for this, 
> so please feel free to do it.

Ah, interesting. I wasn't aware that these particular changes are part of
WebKit and not the derived Qt version of it.

If Andreas agrees, I'm happy to forward his patch. I bet the people at
Apple would be surprised to see someone adds support for m68k :). They
used that architecture for a long time, after all.

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



signature.asc
Description: OpenPGP digital signature


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

2016-10-17 Thread Lisandro Damián Nicanor Pérez Meyer
On lunes, 17 de octubre de 2016 3:20:49 P. M. ART John Paul Adrian Glaubitz 
wrote:
> Hi Andreas!
> 
> On 10/16/2016 11:54 PM, Lisandro Damián Nicanor Pérez Meyer wrote:
> >> Attaching an updated patch by Andreas Schwab (CC'ed)> .
> > 
> > Andreas: did you made the patch? Has it been submitted upstream? What's
> > the
> > license for it? I can't just blindy apply it without that info.
> 
> Could you acknowledge the license for your patch so Lisandro can
> apply and also forward it upstream?

Correction: no, I can't forward it to *my* upstream: QtWebkit is not developed 
anymore.

It needs to be accepted by WebKit developers. I don't have the time for this, 
so please feel free to do it.


-- 
"Los promotores del software privativo demonizan algo tan básico y ético como
el hecho de compartir imponiendo términos como el de 'pirata'. Equiparan
ayudar al prójimo con atacar barcos. Cuando me preguntan qué pienso de la
piratería musical e informática digo que atacar barcos es muy malo y,
que yo sepa, los piratas no usan computadoras.”
  Richard Stallman, 05/11/2008, anexo de la Cámara de Diputados, Argentina

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


Bug#840693: qttools-opensource-src: Please disable WebKit support on m68k and sh4

2016-10-17 Thread John Paul Adrian Glaubitz
Control: reopen -1

This did not work, unfortunately:

> dh_install: Cannot find (any matches for) 
> "usr/lib/*/qt5/plugins/designer/libqwebview.so" (tried in "." and 
> "debian/tmp")
> dh_install: qttools5-dev-tools missing files: 
> usr/lib/*/qt5/plugins/designer/libqwebview.so
> dh_install: missing files, aborting

However, I also don't know whether there is a way to exclude certain files 
during
dh_install for some architectures. Does dh_install support something like that?

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



signature.asc
Description: OpenPGP digital signature


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

2016-10-17 Thread John Paul Adrian Glaubitz
Hi Andreas!

On 10/16/2016 11:54 PM, Lisandro Damián Nicanor Pérez Meyer wrote:
>> Attaching an updated patch by Andreas Schwab (CC'ed)> .
> 
> Andreas: did you made the patch? Has it been submitted upstream? What's the 
> license for it? I can't just blindy apply it without that info.

Could you acknowledge the license for your patch so Lisandro can
apply and also forward it upstream?

Thanks a lot!

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



signature.asc
Description: OpenPGP digital signature


Processed: Re: Bug#840693: qttools-opensource-src: Please disable WebKit support on m68k and sh4

2016-10-17 Thread Debian Bug Tracking System
Processing control commands:

> reopen -1
Bug #840693 {Done: Lisandro Damián Nicanor Pérez Meyer <lisan...@debian.org>} 
[src:qttools-opensource-src] qttools-opensource-src: Please disable WebKit 
support on m68k and sh4
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
No longer marked as fixed in versions qttools-opensource-src/5.6.1-3.

-- 
840693: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=840693
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#840693: marked as done (qttools-opensource-src: Please disable WebKit support on m68k and sh4)

2016-10-16 Thread Debian Bug Tracking System
Your message dated Sun, 16 Oct 2016 23:36:19 +
with message-id <e1bvuyz-0006wy...@franck.debian.org>
and subject line Bug#840693: fixed in qttools-opensource-src 5.6.1-3
has caused the Debian Bug report #840693,
regarding qttools-opensource-src: Please disable WebKit support on m68k and sh4
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
840693: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=840693
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: qttools-opensource-src
Version: 5.6.1-2
Severity: normal

Hi!

Both on m68k and sh4, qtwebkit-opensource-src doesn't build [1] and fixing the
issue would probably require quite some elbow grease. Thus, it would be
great if WebKit support in qttools could be disabled on these architectures
for the time being.

>From what I can see [2], it should be enough to not build-depend on 
>libqt5webkit5-dev
on m68k and sh4, thus, I suggest suffixing this B-D with [!m68k !sh4]. Allowing
qttools-opensource-src to build on m68k and sh4 would eventually allow 
cmake-extra-modules
to build which will make a large number of packages installable again.

Thanks for considering,

Adrian

> [1] 
> https://buildd.debian.org/status/package.php?p=qtwebkit-opensource-src=sid
> [2] 
> https://anonscm.debian.org/cgit/pkg-kde/qt/qttools.git/commit/?id=e986a62459dea5f04683df8ce02ed75501fce1e8

--
 .''`.  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
--- End Message ---
--- Begin Message ---
Source: qttools-opensource-src
Source-Version: 5.6.1-3

We believe that the bug you reported is fixed in the latest version of
qttools-opensource-src, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 840...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Lisandro Damián Nicanor Pérez Meyer <lisan...@debian.org> (supplier of updated 
qttools-opensource-src package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 16 Oct 2016 19:18:17 -0300
Source: qttools-opensource-src
Binary: libqt5clucene5 libqt5designer5 libqt5designercomponents5 qdbus-qt5 
libqt5help5 qttools5-dev qttools5-private-dev qttools5-dev-tools 
qttools5-examples qttools5-dbg qttools5-examples-dbg qttools5-doc 
qttools5-doc-html
Architecture: source
Version: 5.6.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Changed-By: Lisandro Damián Nicanor Pérez Meyer <lisan...@debian.org>
Description:
 libqt5clucene5 - Qt 5 CLucene module
 libqt5designer5 - Qt 5 designer module
 libqt5designercomponents5 - Qt 5 Designer components module
 libqt5help5 - Qt 5 help module
 qdbus-qt5  - Qt 5 D-Bus tool
 qttools5-dbg - Qt 5 tools debugging symbols
 qttools5-dev - Qt 5 tools development files
 qttools5-dev-tools - Qt 5 development tools
 qttools5-doc - Qt 5 tools documentation
 qttools5-doc-html - Qt 5 tools HTML documentation
 qttools5-examples - Qt 5 tools examples
 qttools5-examples-dbg - Qt 5 tools examples debugging symbols
 qttools5-private-dev - Qt 5 tools private development files
Closes: 840693
Changes:
 qttools-opensource-src (5.6.1-3) unstable; urgency=medium
 .
   * Do not build with webkit support on m68k and sh4 (Closes: #840693).
   * Update symbols files with buildds' logs.
Checksums-Sha1:
 284d6ff4648c8734133490076fd03d3966f12abb 3261 
qttools-opensource-src_5.6.1-3.dsc
 e3cf72bd43c94085eb9c7edbf5b5ede75c5bdcae 44108 
qttools-opensource-src_5.6.1-3.debian.tar.xz
Checksums-Sha256:
 15642ed323e5219071cd9537050e74cca09d082a8525d153a987dd3a0db0a9a0 3261 
qttools-opensource-src_5.6.1-3.dsc
 d1ae99bc8f75c13e8af607b815d4f7d19d286279aecc2088dba628893e673dd7 44108 
qttools-opensource-src_5.6.1-3.debian.tar.xz
Files:
 8feadc572f81bb3875d7b200da337308 3261 libs optional 
qttools-opensource-src_5.6.1-3.dsc
 9636687a9a8cb0ca9d75f2c36f6c3551 44108 libs optional 
qttools-opensource-src_5.6.1-3.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIxBAEBCAAbBQJYA/zxFBxsaXN

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

2016-10-16 Thread Lisandro Damián Nicanor Pérez Meyer
On domingo, 16 de octubre de 2016 10:05:30 P. M. ART Thorsten Glaser wrote:
> Lisandro Damián Nicanor Pérez Meyer dixit:
> >Andreas: did you made the patch? Has it been submitted upstream? What's the
> >license for it? I can't just blindy apply it without that info.
> 
> Patches usually share the licence of the patched files;
> as it is, there’s nothing copyright-relevant in it anyway.

I beg to disagree.

-- 
"I'm your worst nightmare".
  Eric S. Raymond to Craig Mundie

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


Processed: Re: Bug#840693: qttools-opensource-src: Please disable WebKit support on m68k and sh4

2016-10-16 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #840693 [src:qttools-opensource-src] qttools-opensource-src: Please disable 
WebKit support on m68k and sh4
Added tag(s) pending.

-- 
840693: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=840693
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



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

2016-10-16 Thread Thorsten Glaser
Lisandro Damián Nicanor Pérez Meyer dixit:

>Andreas: did you made the patch? Has it been submitted upstream? What's the 
>license for it? I can't just blindy apply it without that info.

Patches usually share the licence of the patched files;
as it is, there’s nothing copyright-relevant in it anyway.

Sure, an explicit statement won’t hurt, but you probably can.

(In case (I don’t recall) this contains anything from me,
I don’t claim threshold of originality for it.

bye,
//mirabilos
-- 
I believe no one can invent an algorithm. One just happens to hit upon it
when God enlightens him. Or only God invents algorithms, we merely copy them.
If you don't believe in God, just consider God as Nature if you won't deny
existence.  -- Coywolf Qi Hunt



Bug#840693: qttools-opensource-src: Please disable WebKit support on m68k and sh4

2016-10-16 Thread Lisandro Damián Nicanor Pérez Meyer
Control: tag -1 pending

On viernes, 14 de octubre de 2016 12:29:38 A. M. ART John Paul Adrian Glaubitz 
wrote:
> Source: qttools-opensource-src
> Version: 5.6.1-2
> Severity: normal
> 
> Hi!
> 
> Both on m68k and sh4, qtwebkit-opensource-src doesn't build [1] and fixing
> the issue would probably require quite some elbow grease. Thus, it would be
> great if WebKit support in qttools could be disabled on these architectures
> for the time being.
> 
> >From what I can see [2], it should be enough to not build-depend on
> >libqt5webkit5-dev
> on m68k and sh4, thus, I suggest suffixing this B-D with [!m68k !sh4].
> Allowing qttools-opensource-src to build on m68k and sh4 would eventually
> allow cmake-extra-modules to build which will make a large number of
> packages installable again.
> 
> Thanks for considering,

Done for both archs, if we get qtwebkit to build on m68k we can later remove 
this.

Kinds regards, Lisandro.

-- 
All of us have bad luck and good luck. The man who persists through
the bad luck - who keeps right on going - is the man who is there
when the good luck comes - and is ready to receive it.

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


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

2016-10-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 780430 moreinfo
Bug #780430 [src:qtwebkit-opensource-src] qtwebkit-opensource-src: port to m68k
Ignoring request to alter tags of bug #780430 to the same tags previously set
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
780430: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780430
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



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

2016-10-16 Thread Lisandro Damián Nicanor Pérez Meyer
tag 780430 moreinfo
thanks

On viernes, 14 de octubre de 2016 4:25:14 P. M. ART John Paul Adrian Glaubitz 
wrote:
> Hi!
> 
> Attaching an updated patch by Andreas Schwab (CC'ed)> .

Andreas: did you made the patch? Has it been submitted upstream? What's the 
license for it? I can't just blindy apply it without that info.

> I haven't tested the
> patch yet besides the fact that it applies cleanly to the 5.6.1 package
> currently in Debian unstable. However, I will test the patch over the
> weekend. It just takes some time to build the package on m68k.
> 
> Could we have this patch added (and merged upstream) as well to get
> qtwebkit- opensource-src building on m68k again?

For what I can see from the patch it does not only add definitions for m68k 
but it also changes some logic (== replaced by <= for example), so I would 
like this patch ACKed by upstream. Webkit upstream should be just fine 
(because after all it's in maintainance mode for Qt5...)

Kinds regards, Lisandro.

-- 
http://www.tiraecol.net/modules/comic/comic.php?content_id=162

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


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

2016-10-14 Thread John Paul Adrian Glaubitz
Hi!

Attaching an updated patch by Andreas Schwab (CC'ed). I haven't tested the patch
yet besides the fact that it applies cleanly to the 5.6.1 package currently
in Debian unstable. However, I will test the patch over the weekend. It just
takes some time to build the package on m68k.

Could we have this patch added (and merged upstream) as well to get qtwebkit-
opensource-src building on m68k again?

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
Index: qtwebkit-opensource-src-5.4.1/Source/WTF/wtf/Platform.h
===
--- qtwebkit-opensource-src-5.4.1.orig/Source/WTF/wtf/Platform.h
+++ qtwebkit-opensource-src-5.4.1/Source/WTF/wtf/Platform.h
@@ -353,6 +353,12 @@
 #endif
 #endif
 
+/* CPU(M68K) - m68k */
+#if defined(__mc68000__)
+#define WTF_CPU_M68K 1
+#define WTF_CPU_BIG_ENDIAN 1
+#endif
+
 #if CPU(ARM) || CPU(MIPS) || CPU(SH4) || CPU(SPARC) || CPU(MIPS64)
 #define WTF_CPU_NEEDS_ALIGNED_ACCESS 1
 #endif
Index: qtwebkit-opensource-src-5.4.1/Source/WTF/wtf/dtoa/utils.h
===
--- qtwebkit-opensource-src-5.4.1.orig/Source/WTF/wtf/dtoa/utils.h
+++ qtwebkit-opensource-src-5.4.1/Source/WTF/wtf/dtoa/utils.h
@@ -58,6 +58,8 @@ defined(_MIPS_ARCH_MIPS32R2)
 #else
 #undef DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS
 #endif  // _WIN32
+#elif defined(__mc68000__)
+#undef DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS
 #else
 #error Target architecture was not detected as supported by Double-Conversion.
 #endif
Index: qtwebkit-opensource-src-5.4.1/Source/WebCore/css/CSSProperty.cpp
===
--- qtwebkit-opensource-src-5.4.1.orig/Source/WebCore/css/CSSProperty.cpp
+++ qtwebkit-opensource-src-5.4.1/Source/WebCore/css/CSSProperty.cpp
@@ -38,7 +38,7 @@ struct SameSizeAsCSSProperty {
 void* value;
 };
 
-COMPILE_ASSERT(sizeof(CSSProperty) == sizeof(SameSizeAsCSSProperty), CSSProperty_should_stay_small);
+COMPILE_ASSERT(sizeof(CSSProperty) <= sizeof(SameSizeAsCSSProperty), CSSProperty_should_stay_small);
 
 void CSSProperty::wrapValueInCommaSeparatedList()
 {
Index: qtwebkit-opensource-src-5.4.1/Source/WebCore/dom/ElementRareData.cpp
===
--- qtwebkit-opensource-src-5.4.1.orig/Source/WebCore/dom/ElementRareData.cpp
+++ qtwebkit-opensource-src-5.4.1/Source/WebCore/dom/ElementRareData.cpp
@@ -44,6 +44,6 @@ struct SameSizeAsElementRareData : NodeR
 void* pointers[7];
 };
 
-COMPILE_ASSERT(sizeof(ElementRareData) == sizeof(SameSizeAsElementRareData), ElementRareDataShouldStaySmall);
+COMPILE_ASSERT(sizeof(ElementRareData) <= sizeof(SameSizeAsElementRareData), ElementRareDataShouldStaySmall);
 
 } // namespace WebCore
Index: qtwebkit-opensource-src-5.4.1/Source/WebCore/dom/NodeRareData.cpp
===
--- qtwebkit-opensource-src-5.4.1.orig/Source/WebCore/dom/NodeRareData.cpp
+++ qtwebkit-opensource-src-5.4.1/Source/WebCore/dom/NodeRareData.cpp
@@ -41,6 +41,6 @@ struct SameSizeAsNodeRareData {
 #endif
 };
 
-COMPILE_ASSERT(sizeof(NodeRareData) == sizeof(SameSizeAsNodeRareData), NodeRareDataShouldStaySmall);
+COMPILE_ASSERT(sizeof(NodeRareData) <= sizeof(SameSizeAsNodeRareData), NodeRareDataShouldStaySmall);
 
 } // namespace WebCore
Index: qtwebkit-opensource-src-5.4.1/Source/WebCore/dom/ShadowRoot.cpp
===
--- qtwebkit-opensource-src-5.4.1.orig/Source/WebCore/dom/ShadowRoot.cpp
+++ qtwebkit-opensource-src-5.4.1/Source/WebCore/dom/ShadowRoot.cpp
@@ -42,7 +42,7 @@ struct SameSizeAsShadowRoot : public Doc
 unsigned countersAndFlags[1];
 };
 
-COMPILE_ASSERT(sizeof(ShadowRoot) == sizeof(SameSizeAsShadowRoot), shadowroot_should_stay_small);
+COMPILE_ASSERT(sizeof(ShadowRoot) <= sizeof(SameSizeAsShadowRoot), shadowroot_should_stay_small);
 
 enum ShadowRootUsageOriginType {
 ShadowRootUsageOriginWeb = 0,
Index: qtwebkit-opensource-src-5.4.1/Source/WebCore/rendering/style/RenderStyle.cpp
===
--- qtwebkit-opensource-src-5.4.1.orig/Source/WebCore/rendering/style/RenderStyle.cpp
+++ qtwebkit-opensource-src-5.4.1/Source/WebCore/rendering/style/RenderStyle.cpp
@@ -57,7 +57,7 @@ struct SameSizeAsBorderValue {
 unsigned m_width;
 };
 
-COMPILE_ASSERT(sizeof(BorderValue) == sizeof(SameSizeAsBorderValue), BorderValue_should_not_grow);
+COMPILE_ASSERT(sizeof(BorderValue) <= sizeof(SameSizeAsBorderValue), BorderValue_should_not_grow);
 
 struct SameSizeAsRenderStyle : public RefCounted {
 void* dataRefs[7];
@@ -74,7 +74,7 @@ struct SameSizeAsRenderStyle : public Re
 } noninherited_flags;
 };
 
-COMPIL

Bug#840693: qttools-opensource-src: Please disable WebKit support on m68k and sh4

2016-10-14 Thread Andreas Schwab
On Okt 14 2016, John Paul Adrian Glaubitz <glaub...@physik.fu-berlin.de> wrote:

> Both on m68k and sh4, qtwebkit-opensource-src doesn't build [1] and fixing the
> issue would probably require quite some elbow grease.

Fixing m68k build is easy:

Index: qtwebkit-opensource-src-5.4.1/Source/WTF/wtf/Platform.h
===
--- qtwebkit-opensource-src-5.4.1.orig/Source/WTF/wtf/Platform.h
+++ qtwebkit-opensource-src-5.4.1/Source/WTF/wtf/Platform.h
@@ -353,6 +353,12 @@
 #endif
 #endif
 
+/* CPU(M68K) - m68k */
+#if defined(__mc68000__)
+#define WTF_CPU_M68K 1
+#define WTF_CPU_BIG_ENDIAN 1
+#endif
+
 #if CPU(ARM) || CPU(MIPS) || CPU(SH4) || CPU(SPARC) || CPU(MIPS64)
 #define WTF_CPU_NEEDS_ALIGNED_ACCESS 1
 #endif
Index: qtwebkit-opensource-src-5.4.1/Source/WTF/wtf/dtoa/utils.h
===
--- qtwebkit-opensource-src-5.4.1.orig/Source/WTF/wtf/dtoa/utils.h
+++ qtwebkit-opensource-src-5.4.1/Source/WTF/wtf/dtoa/utils.h
@@ -58,6 +58,8 @@ defined(_MIPS_ARCH_MIPS32R2)
 #else
 #undef DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS
 #endif  // _WIN32
+#elif defined(__mc68000__)
+#undef DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS
 #else
 #error Target architecture was not detected as supported by Double-Conversion.
 #endif
Index: qtwebkit-opensource-src-5.4.1/Source/WebCore/css/CSSProperty.cpp
===
--- qtwebkit-opensource-src-5.4.1.orig/Source/WebCore/css/CSSProperty.cpp
+++ qtwebkit-opensource-src-5.4.1/Source/WebCore/css/CSSProperty.cpp
@@ -38,7 +38,7 @@ struct SameSizeAsCSSProperty {
 void* value;
 };
 
-COMPILE_ASSERT(sizeof(CSSProperty) == sizeof(SameSizeAsCSSProperty), 
CSSProperty_should_stay_small);
+COMPILE_ASSERT(sizeof(CSSProperty) <= sizeof(SameSizeAsCSSProperty), 
CSSProperty_should_stay_small);
 
 void CSSProperty::wrapValueInCommaSeparatedList()
 {
Index: qtwebkit-opensource-src-5.4.1/Source/WebCore/dom/ElementRareData.cpp
===
--- qtwebkit-opensource-src-5.4.1.orig/Source/WebCore/dom/ElementRareData.cpp
+++ qtwebkit-opensource-src-5.4.1/Source/WebCore/dom/ElementRareData.cpp
@@ -44,6 +44,6 @@ struct SameSizeAsElementRareData : NodeR
 void* pointers[7];
 };
 
-COMPILE_ASSERT(sizeof(ElementRareData) == sizeof(SameSizeAsElementRareData), 
ElementRareDataShouldStaySmall);
+COMPILE_ASSERT(sizeof(ElementRareData) <= sizeof(SameSizeAsElementRareData), 
ElementRareDataShouldStaySmall);
 
 } // namespace WebCore
Index: qtwebkit-opensource-src-5.4.1/Source/WebCore/dom/NodeRareData.cpp
===
--- qtwebkit-opensource-src-5.4.1.orig/Source/WebCore/dom/NodeRareData.cpp
+++ qtwebkit-opensource-src-5.4.1/Source/WebCore/dom/NodeRareData.cpp
@@ -41,6 +41,6 @@ struct SameSizeAsNodeRareData {
 #endif
 };
 
-COMPILE_ASSERT(sizeof(NodeRareData) == sizeof(SameSizeAsNodeRareData), 
NodeRareDataShouldStaySmall);
+COMPILE_ASSERT(sizeof(NodeRareData) <= sizeof(SameSizeAsNodeRareData), 
NodeRareDataShouldStaySmall);
 
 } // namespace WebCore
Index: qtwebkit-opensource-src-5.4.1/Source/WebCore/dom/ShadowRoot.cpp
===
--- qtwebkit-opensource-src-5.4.1.orig/Source/WebCore/dom/ShadowRoot.cpp
+++ qtwebkit-opensource-src-5.4.1/Source/WebCore/dom/ShadowRoot.cpp
@@ -42,7 +42,7 @@ struct SameSizeAsShadowRoot : public Doc
 unsigned countersAndFlags[1];
 };
 
-COMPILE_ASSERT(sizeof(ShadowRoot) == sizeof(SameSizeAsShadowRoot), 
shadowroot_should_stay_small);
+COMPILE_ASSERT(sizeof(ShadowRoot) <= sizeof(SameSizeAsShadowRoot), 
shadowroot_should_stay_small);
 
 enum ShadowRootUsageOriginType {
 ShadowRootUsageOriginWeb = 0,
Index: 
qtwebkit-opensource-src-5.4.1/Source/WebCore/rendering/style/RenderStyle.cpp
===
--- 
qtwebkit-opensource-src-5.4.1.orig/Source/WebCore/rendering/style/RenderStyle.cpp
+++ qtwebkit-opensource-src-5.4.1/Source/WebCore/rendering/style/RenderStyle.cpp
@@ -57,7 +57,7 @@ struct SameSizeAsBorderValue {
 unsigned m_width;
 };
 
-COMPILE_ASSERT(sizeof(BorderValue) == sizeof(SameSizeAsBorderValue), 
BorderValue_should_not_grow);
+COMPILE_ASSERT(sizeof(BorderValue) <= sizeof(SameSizeAsBorderValue), 
BorderValue_should_not_grow);
 
 struct SameSizeAsRenderStyle : public RefCounted {
 void* dataRefs[7];
@@ -74,7 +74,7 @@ struct SameSizeAsRenderStyle : public Re
 } noninherited_flags;
 };
 
-COMPILE_ASSERT(sizeof(RenderStyle) == sizeof(SameSizeAsRenderStyle), 
RenderStyle_should_stay_small);
+COMPILE_ASSERT(sizeof(RenderStyle) <= sizeof(SameSizeAsRenderStyle), 
RenderStyle_should_stay_small);
 
 inline RenderStyle* defaultStyle()
 {
Index: 
qtwebkit-opensource-src-5.4.1/Source/WebCore/re

Bug#840693: qttools-opensource-src: Please disable WebKit support on m68k and sh4

2016-10-13 Thread John Paul Adrian Glaubitz
Source: qttools-opensource-src
Version: 5.6.1-2
Severity: normal

Hi!

Both on m68k and sh4, qtwebkit-opensource-src doesn't build [1] and fixing the
issue would probably require quite some elbow grease. Thus, it would be
great if WebKit support in qttools could be disabled on these architectures
for the time being.

>From what I can see [2], it should be enough to not build-depend on 
>libqt5webkit5-dev
on m68k and sh4, thus, I suggest suffixing this B-D with [!m68k !sh4]. Allowing
qttools-opensource-src to build on m68k and sh4 would eventually allow 
cmake-extra-modules
to build which will make a large number of packages installable again.

Thanks for considering,

Adrian

> [1] 
> https://buildd.debian.org/status/package.php?p=qtwebkit-opensource-src=sid
> [2] 
> https://anonscm.debian.org/cgit/pkg-kde/qt/qttools.git/commit/?id=e986a62459dea5f04683df8ce02ed75501fce1e8

--
 .''`.  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#807590: marked as done (soprano: FTBFS on m68k due to mismatched symbols file)

2016-08-19 Thread Debian Bug Tracking System
Your message dated Fri, 19 Aug 2016 22:28:22 +
with message-id <e1bash0-0007bd...@franck.debian.org>
and subject line Bug#807590: fixed in soprano 2.9.4+dfsg-4
has caused the Debian Bug report #807590,
regarding soprano: FTBFS on m68k due to mismatched symbols file
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
807590: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=807590
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: soprano
Version: 2.9.4+dfsg-3
Severity: important
User: debian-...@lists.debian.org
Usertags: m68k

Hello!

soprano currently FTBFS on m68k because the symbols file is mismatched
for this architecture. Please use diff provided by the buildd log [1]
to update your symbols file.

At first glance, it seems it should be enough to remove "m68k" from all lines
in the symbols file which contain "(optional=gccinternal|arch=alpha m68k sh4)"
but this should be carefully verified for all symbols which are mismatched
according to the build log.

Thanks,
Adrian

> [1] 
> https://buildd.debian.org/status/fetch.php?pkg=soprano=m68k=2.9.4%2Bdfsg-3=1449041094

-- 
 .''`.  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
--- End Message ---
--- Begin Message ---
Source: soprano
Source-Version: 2.9.4+dfsg-4

We believe that the bug you reported is fixed in the latest version of
soprano, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 807...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Pino Toscano <p...@debian.org> (supplier of updated soprano package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 19 Aug 2016 22:08:33 +0200
Source: soprano
Binary: soprano-daemon libsoprano4 libsoprano-dev libsoprano-doc libsoprano-dbg
Architecture: source
Version: 2.9.4+dfsg-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Changed-By: Pino Toscano <p...@debian.org>
Description:
 libsoprano-dbg - debugging symbols for the Soprano RDF framework
 libsoprano-dev - development files for the Soprano RDF framework
 libsoprano-doc - developer documentation for the Soprano RDF framework
 libsoprano4 - libraries for the Soprano RDF framework
 soprano-daemon - daemon for the Soprano RDF framework
Closes: 807590
Changes:
 soprano (2.9.4+dfsg-4) unstable; urgency=medium
 .
   * Team upload.
   * Update symbols files. (Closes: #807590)
   * Remove obsolete installgen file.
   * Bump Standards-Version to 3.9.8, no changes required.
   * Update Vcs-* fields.
Checksums-Sha1:
 e772b6dd0b89b8d68275b04749736f207bc25a6b 2483 soprano_2.9.4+dfsg-4.dsc
 febc1cf47de7cc6fbb5053a0117553cad7e1a63f 25556 
soprano_2.9.4+dfsg-4.debian.tar.xz
Checksums-Sha256:
 b2957051683ac5fea61c1857ee7b2a7b50cd05d70216e8460b821c1cd7c0d2be 2483 
soprano_2.9.4+dfsg-4.dsc
 1ac1492530d6b354d75b837536ba19e89943fa1e121b811cd17799aa7db303d8 25556 
soprano_2.9.4+dfsg-4.debian.tar.xz
Files:
 deb5f298ee5181784399a6e9ab82bb3e 2483 libs optional soprano_2.9.4+dfsg-4.dsc
 ce966c7d14889a45ec066f10012d1375 25556 libs optional 
soprano_2.9.4+dfsg-4.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBV7dpWS0ZHIhDsT9NAQJOIRAAll7GK6e0xc38jJJT2nvxbZJQokYuuJmW
/V0ezpNRtM/0b6qN9ID8tcj+0tzVOxfx6wyEyjqnveUL/MKHTlT8lwXm/lQVBt8t
iVKzZG/wm//Wp7osgK4lVGHvfetcZUb1uf86lqgdPYB73ysrf3ZCFT5xvv18XmXW
bwb6hXT7itO/Lb8L2yH7DIL7cf7LSLAxcW9L0A5nA4FhXB4PC8TxOrEC5K4fDkiv
Bb8+xZKsGY3R/FRCY4mFiwid7kFmq9HmV/Dq6E4KtO94aXCjrxL/xzxkNuL6whSE
XdJTnaCvdmryFd9aUJlsXA4tL44aqvyUlAzzWzudLF8W5zSnfPinnu35TaDXYYVg
2Vsuliga38dbgc1PMkiMlELgNr4GK7vCvOdjBJztvKWAoUAbiFBIhMB6Je5U8CAx
HYKDMbXubY1wZXdg8PARPolII7TDbjqOPveo4WiJINO9lt/JXfzyT3x9blqUd7Yr
IozZ82Pni4PbaOCZtx/hAPCCneVPW8iHEh2LDKwJIf6t1TB+hxIqNHtIB6n19c0+
7IQND0ZnLIv1EpvES6MO3IGKYTQRd1meOXYvef96gR3qHcdb4hE16mJcFvpQCCbK
R3uGHQg9cCptoPtXORRcpaEkB1erdDpmJw8gySdcUa7llwiQhH2x7HLUV6gO/ffx
Sh+dtl8MFDI=
=f1N1
-END PGP SIGNATURE End Message ---


Bug#830817: marked as done (qtdeclarative-opensource-src: FTBFS on m68k due to mismatched symbols file)

2016-07-19 Thread Debian Bug Tracking System
Your message dated Tue, 19 Jul 2016 16:13:10 +
with message-id <e1bpxdu-0007rz...@franck.debian.org>
and subject line Bug#830817: fixed in qtdeclarative-opensource-src 5.6.1-5
has caused the Debian Bug report #830817,
regarding qtdeclarative-opensource-src: FTBFS on m68k due to mismatched symbols 
file
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
830817: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=830817
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: qtdeclarative-opensource-src
Version: 5.6.1-4
Severity: normal
User: debian-...@lists.debian.org
Usertags: m68k

Hello!

qtdeclarative-opensource-src currently fails to build from source on m68k due 
to a mismatched symbols file [1]:

dpkg-gensymbols: warning: some symbols or patterns disappeared in the symbols 
file: see diff output below
dpkg-gensymbols: warning: debian/libqt5qml5/DEBIAN/symbols doesn't match 
completely debian/libqt5qml5.symbols
--- debian/libqt5qml5.symbols (libqt5qml5_5.6.1-4_m68k)
+++ dpkg-gensymbolsR2I92y 2016-07-10 08:54:27.0 +
@@ -1206,9 +1206,9 @@
  _ZN3QV412CompiledData7Binding13escapedStringERK7QString@Qt_5_PRIVATE_API 
5.4.0 1
  _ZN3QV412EvalFunction11static_vtblE@Qt_5_PRIVATE_API 5.2.0~beta1 1
  _ZN3QV412EvalFunction4callEPKNS_7ManagedEPNS_8CallDataE@Qt_5_PRIVATE_API 
5.6.0~beta 1
- (optional=templinst|arch=armel armhf hppa hurd-i386 i386 kfreebsd-i386 mips 
mipsel 
powerpc)_ZN3QV413MemoryManager11allocObjectINS_15BuiltinFunctionEPNS_16ExecutionContextEPNS_6StringEPFyPNS_11CallContextPNT_4DataET0_T1_T2_@Qt_5_PRIVATE_API
 5.6.0~beta 1
- (optional=templinst|arch=alpha mips mips64el 
powerpc)_ZN3QV413MemoryManager11allocObjectINS_6ObjectEEEPNT_4DataEPNS_13InternalClassEPS2_@Qt_5_PRIVATE_API
 5.6.0~beta 1
- (optional=templinst|arch=alpha armel armhf hppa hurd-i386 i386 kfreebsd-i386 
mips mips64el mipsel powerpc 
x32)_ZN3QV413MemoryManager11allocObjectINS_6ObjectEEEPNT_4DataEv@Qt_5_PRIVATE_API
 5.6.0~beta 1
+ 
(optional=templinst)_ZN3QV413MemoryManager11allocObjectINS_15BuiltinFunctionEPNS_16ExecutionContextEPNS_6StringEPFyPNS_11CallContextPNT_4DataET0_T1_T2_@Qt_5_PRIVATE_API
 5.6.0~beta 1
+ 
(optional=templinst)_ZN3QV413MemoryManager11allocObjectINS_6ObjectEEEPNT_4DataEPNS_13InternalClassEPS2_@Qt_5_PRIVATE_API
 5.6.0~beta 1
+ 
(optional=templinst)_ZN3QV413MemoryManager11allocObjectINS_6ObjectEEEPNT_4DataEv@Qt_5_PRIVATE_API
 5.6.0~beta 1
  _ZN3QV413MemoryManager12setGCBlockedEb@Qt_5_PRIVATE_API 5.2.0~beta1 1
  
(subst)_ZN3QV413MemoryManager26growUnmanagedHeapSizeUsageE{size_t}@Qt_5_PRIVATE_API
 5.5.1 1
  _ZN3QV413MemoryManager4markEv@Qt_5_PRIVATE_API 5.2.0~beta1 1
@@ -1676,7 +1676,7 @@
  
_ZN3QV46Object22defineReadonlyPropertyEPNS_6StringERKNS_5ValueE@Qt_5_PRIVATE_API
 5.5.0 1
  
_ZN3QV46Object22defineReadonlyPropertyERK7QStringRKNS_5ValueE@Qt_5_PRIVATE_API 
5.5.0 1
  _ZN3QV46Object22internalDeletePropertyEPNS_6StringE@Qt_5_PRIVATE_API 5.4.0 1
- (arch=!amd64 !hurd-i386 !i386 !kfreebsd-amd64 !kfreebsd-i386 
!x32)_ZN3QV46Object23setArrayLengthUncheckedEj@Qt_5_PRIVATE_API 5.6.0~beta 1
+#MISSING: 5.6.1-4# (arch=!amd64 !hurd-i386 !i386 !kfreebsd-amd64 
!kfreebsd-i386 !x32)_ZN3QV46Object23setArrayLengthUncheckedEj@Qt_5_PRIVATE_API 
5.6.0~beta 1
  _ZN3QV46Object29internalDeleteIndexedPropertyEj@Qt_5_PRIVATE_API 5.2.0~beta1 1
  _ZN3QV46Object3getEPKNS_7ManagedEPNS_6StringEPb@Qt_5_PRIVATE_API 5.6.0~beta 1
  
_ZN3QV46Object3putEPNS_15ExecutionEngineERK7QStringRKNS_5ValueE@Qt_5_PRIVATE_API
 5.5.0 1
@@ -2934,7 +2934,7 @@
  (optional=templinst|arch=alpha armel armhf powerpc ppc64 ppc64el 
s390x)_ZSt4swapI11QModelIndexEvRT_S2_@Qt_5 5.5.0
  (optional=templinst)_ZSt4swapI19QItemSelectionRangeEvRT_S2_@Qt_5 5.6.0~rc
  (optional=templinst|arch=alpha armel armhf powerpc ppc64 ppc64el 
s390x)_ZSt4swapIN6QQmlJS7Codegen6ResultEEvRT_S4_@Qt_5_PRIVATE_API 5.6.0~beta 1
- (optional=templinst|arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel 
powerpc)_ZSt4swapIN8QVariant7PrivateEEvRT_S3_@Qt_5 5.0.2
+ (optional=templinst)_ZSt4swapIN8QVariant7PrivateEEvRT_S3_@Qt_5 5.0.2
  _ZTI10QQmlEngine@Qt_5 5.0.2
  _ZTI11QQmlBinding@Qt_5_PRIVATE_API 5.0.2 1
  _ZTI11QQmlCleanup@Qt_5_PRIVATE_API 5.0.2 1
dh_makeshlibs: failing due to earlier errors

Please use the diff provide above to update the symbols file.

Thanks,
Adrian

> [1] 
> https://buildd.debian.org/status/fetch.php?pkg=qtdeclarative-opensource-src=m68k=5.6.1-4=1468140958

-- 
 .''`.  John Paul Adrian Glaubitz
: :' :  Debian Developer - glaub...@debian.org
`. `'   Freie Universitaet Berlin - glaub...@physik.fu-berlin.de
  `-GP

Bug#830817: qtdeclarative-opensource-src: FTBFS on m68k due to mismatched symbols file

2016-07-11 Thread John Paul Adrian Glaubitz
Source: qtdeclarative-opensource-src
Version: 5.6.1-4
Severity: normal
User: debian-...@lists.debian.org
Usertags: m68k

Hello!

qtdeclarative-opensource-src currently fails to build from source on m68k due 
to a mismatched symbols file [1]:

dpkg-gensymbols: warning: some symbols or patterns disappeared in the symbols 
file: see diff output below
dpkg-gensymbols: warning: debian/libqt5qml5/DEBIAN/symbols doesn't match 
completely debian/libqt5qml5.symbols
--- debian/libqt5qml5.symbols (libqt5qml5_5.6.1-4_m68k)
+++ dpkg-gensymbolsR2I92y 2016-07-10 08:54:27.0 +
@@ -1206,9 +1206,9 @@
  _ZN3QV412CompiledData7Binding13escapedStringERK7QString@Qt_5_PRIVATE_API 
5.4.0 1
  _ZN3QV412EvalFunction11static_vtblE@Qt_5_PRIVATE_API 5.2.0~beta1 1
  _ZN3QV412EvalFunction4callEPKNS_7ManagedEPNS_8CallDataE@Qt_5_PRIVATE_API 
5.6.0~beta 1
- (optional=templinst|arch=armel armhf hppa hurd-i386 i386 kfreebsd-i386 mips 
mipsel 
powerpc)_ZN3QV413MemoryManager11allocObjectINS_15BuiltinFunctionEPNS_16ExecutionContextEPNS_6StringEPFyPNS_11CallContextPNT_4DataET0_T1_T2_@Qt_5_PRIVATE_API
 5.6.0~beta 1
- (optional=templinst|arch=alpha mips mips64el 
powerpc)_ZN3QV413MemoryManager11allocObjectINS_6ObjectEEEPNT_4DataEPNS_13InternalClassEPS2_@Qt_5_PRIVATE_API
 5.6.0~beta 1
- (optional=templinst|arch=alpha armel armhf hppa hurd-i386 i386 kfreebsd-i386 
mips mips64el mipsel powerpc 
x32)_ZN3QV413MemoryManager11allocObjectINS_6ObjectEEEPNT_4DataEv@Qt_5_PRIVATE_API
 5.6.0~beta 1
+ 
(optional=templinst)_ZN3QV413MemoryManager11allocObjectINS_15BuiltinFunctionEPNS_16ExecutionContextEPNS_6StringEPFyPNS_11CallContextPNT_4DataET0_T1_T2_@Qt_5_PRIVATE_API
 5.6.0~beta 1
+ 
(optional=templinst)_ZN3QV413MemoryManager11allocObjectINS_6ObjectEEEPNT_4DataEPNS_13InternalClassEPS2_@Qt_5_PRIVATE_API
 5.6.0~beta 1
+ 
(optional=templinst)_ZN3QV413MemoryManager11allocObjectINS_6ObjectEEEPNT_4DataEv@Qt_5_PRIVATE_API
 5.6.0~beta 1
  _ZN3QV413MemoryManager12setGCBlockedEb@Qt_5_PRIVATE_API 5.2.0~beta1 1
  
(subst)_ZN3QV413MemoryManager26growUnmanagedHeapSizeUsageE{size_t}@Qt_5_PRIVATE_API
 5.5.1 1
  _ZN3QV413MemoryManager4markEv@Qt_5_PRIVATE_API 5.2.0~beta1 1
@@ -1676,7 +1676,7 @@
  
_ZN3QV46Object22defineReadonlyPropertyEPNS_6StringERKNS_5ValueE@Qt_5_PRIVATE_API
 5.5.0 1
  
_ZN3QV46Object22defineReadonlyPropertyERK7QStringRKNS_5ValueE@Qt_5_PRIVATE_API 
5.5.0 1
  _ZN3QV46Object22internalDeletePropertyEPNS_6StringE@Qt_5_PRIVATE_API 5.4.0 1
- (arch=!amd64 !hurd-i386 !i386 !kfreebsd-amd64 !kfreebsd-i386 
!x32)_ZN3QV46Object23setArrayLengthUncheckedEj@Qt_5_PRIVATE_API 5.6.0~beta 1
+#MISSING: 5.6.1-4# (arch=!amd64 !hurd-i386 !i386 !kfreebsd-amd64 
!kfreebsd-i386 !x32)_ZN3QV46Object23setArrayLengthUncheckedEj@Qt_5_PRIVATE_API 
5.6.0~beta 1
  _ZN3QV46Object29internalDeleteIndexedPropertyEj@Qt_5_PRIVATE_API 5.2.0~beta1 1
  _ZN3QV46Object3getEPKNS_7ManagedEPNS_6StringEPb@Qt_5_PRIVATE_API 5.6.0~beta 1
  
_ZN3QV46Object3putEPNS_15ExecutionEngineERK7QStringRKNS_5ValueE@Qt_5_PRIVATE_API
 5.5.0 1
@@ -2934,7 +2934,7 @@
  (optional=templinst|arch=alpha armel armhf powerpc ppc64 ppc64el 
s390x)_ZSt4swapI11QModelIndexEvRT_S2_@Qt_5 5.5.0
  (optional=templinst)_ZSt4swapI19QItemSelectionRangeEvRT_S2_@Qt_5 5.6.0~rc
  (optional=templinst|arch=alpha armel armhf powerpc ppc64 ppc64el 
s390x)_ZSt4swapIN6QQmlJS7Codegen6ResultEEvRT_S4_@Qt_5_PRIVATE_API 5.6.0~beta 1
- (optional=templinst|arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel 
powerpc)_ZSt4swapIN8QVariant7PrivateEEvRT_S3_@Qt_5 5.0.2
+ (optional=templinst)_ZSt4swapIN8QVariant7PrivateEEvRT_S3_@Qt_5 5.0.2
  _ZTI10QQmlEngine@Qt_5 5.0.2
  _ZTI11QQmlBinding@Qt_5_PRIVATE_API 5.0.2 1
  _ZTI11QQmlCleanup@Qt_5_PRIVATE_API 5.0.2 1
dh_makeshlibs: failing due to earlier errors

Please use the diff provide above to update the symbols file.

Thanks,
Adrian

> [1] 
> https://buildd.debian.org/status/fetch.php?pkg=qtdeclarative-opensource-src=m68k=5.6.1-4=1468140958

-- 
 .''`.  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#807590: soprano: FTBFS on m68k due to mismatched symbols file

2015-12-10 Thread John Paul Adrian Glaubitz
Source: soprano
Version: 2.9.4+dfsg-3
Severity: important
User: debian-...@lists.debian.org
Usertags: m68k

Hello!

soprano currently FTBFS on m68k because the symbols file is mismatched
for this architecture. Please use diff provided by the buildd log [1]
to update your symbols file.

At first glance, it seems it should be enough to remove "m68k" from all lines
in the symbols file which contain "(optional=gccinternal|arch=alpha m68k sh4)"
but this should be carefully verified for all symbols which are mismatched
according to the build log.

Thanks,
Adrian

> [1] 
> https://buildd.debian.org/status/fetch.php?pkg=soprano=m68k=2.9.4%2Bdfsg-3=1449041094

-- 
 .''`.  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#781446: Fwd: Log for attempted build of qtwebkit_2.3.4.dfsg-5 on m68k (dist=unstable)

2015-10-02 Thread Thorsten Glaser
-- Forwarded message --
From: Andreas Schwab <sch...@linux-m68k.org>
Message-ID: <87vbap8cle@igel.home>
Date: Fri, 02 Oct 2015 18:22:21 +0200
Subject: Re: Log for attempted build of qtwebkit_2.3.4.dfsg-5 on m68k
(dist=unstable)

Thorsten Glaser <t...@mirbsd.de> writes:

> /«PKGBUILDDIR»/Source/JavaScriptCore/assembler/MacroAssembler.h:62:2: error: 
> #error "The MacroAssembler is not supported on this platform."

Add "DEFINES+=ENABLE_JIT=0 DEFINES+=ENABLE_YARR_JIT=0
DEFINES+=ENABLE_ASSEMBLER=0" to the --qmakearg, see
<https://build.opensuse.org/package/view_file/openSUSE:Factory/libQtWebKit4/libQtWebKit4.spec?expand=1>.

Andreas.

-- 
Andreas Schwab, sch...@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."



Bug#797200: marked as done (qtbase-opensource-src FTBFS on alpha, hppa & m68k)

2015-10-02 Thread Debian Bug Tracking System
Your message dated Fri, 02 Oct 2015 15:48:10 -0300
with message-id <111064782.F3PLlNdoZ2@tonks>
and subject line Done
has caused the Debian Bug report #797200,
regarding qtbase-opensource-src FTBFS on alpha, hppa & m68k
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
797200: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=797200
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: qtbase-opensource-src
Version: 5.4.2+dfsg-8

qtbase-opensource-src fails to build on alpha, hppa and m68k architectures, 
because the symbol files differ.
Full logs can be found here:
https://buildd.debian.org/status/package.php?p=qtbase-opensource-src=sid

Can you please fix the symbol files for those architectures as well?

Thanks,
Helge
--- End Message ---
--- Begin Message ---
Version: 5.4.2+dfsg-9

Hi Helge! We do update symbols files with every upload. The most normal 
problem with ports is that they sometimes take more time to build and thus we 
miss symbols changes for them (we have a semi-automated process for this).

Feel free to file new bugs for this if you want, but in real life we will get 
them fixed whenever the next upload happens.

Kinds regards, Lisandro.

-- 
LINUX KERNEL LIBERADO
DOS SECUESTRADORES MICROSOFTIANOS CAPTURADOS
OTRO SIGUE PROFUGO
*musiquita de cronica TV*

Ok, ok, ya me voy a hacer algo util, no me peguen :D

  Matias "Angasule" D'Ambrosio,
  sobre la liberación del kernel 2.6.23
  http://linux.org.ar/pipermail/bblug/2007-October/005405.html

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.
--- End Message ---


Bug#797200: qtbase-opensource-src FTBFS on alpha, hppa m68k

2015-08-28 Thread Helge Deller
Package: qtbase-opensource-src
Version: 5.4.2+dfsg-8

qtbase-opensource-src fails to build on alpha, hppa and m68k architectures, 
because the symbol files differ.
Full logs can be found here:
https://buildd.debian.org/status/package.php?p=qtbase-opensource-srcsuite=sid

Can you please fix the symbol files for those architectures as well?

Thanks,
Helge



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

2015-08-07 Thread Thorsten Glaser
Source: qtwebkit-opensource-src
Version: 5.4.2+dfsg-2
Followup-For: Bug #780430

Hi Lisandro,

please remember submitters don’t get bugmail… or ping them ;)


Anyway, here you are:

- We need the original author of the patches.

The patches were written by myself.

- We need the original author to either:
  - Publicly state that the patches are under a permisive license like BSD.

Please feel free to choose any OSI-approved licence for them.
Although they are probably trivial and thus not copyright-protected.

Thanks for pushing it upstream and merging it!


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150807135544.12474.9014.report...@tglase.lan.tarent.de



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

2015-06-02 Thread Lisandro Damián Nicanor Pérez Meyer
On Friday 13 March 2015 19:54:31 Thorsten Glaser wrote:
 Source: qtwebkit-opensource-src
 Version: 5.3.2+dfsg-3
 Severity: important
 Tags: patch
 
 Hi,
 
 qtwebkit-opensource-src FTBFS on m68k due to 2 issues:
 
 • double-conversion – fix included, but will no longer be
   needed once it uses the system-wide copy
 
 • implicit alignment assumptions – fix included
 
 Please apply the patches and forward them upstream as well.
 The package builds with them applied; build log (for your
 adjustment of the symbols files) attached too.

Hi Thorsten!

In order to apply this patches I need to push them upstream first. As you 
might remember the rules are:

- We need the original author of the patches.
- We need the original author to either:
  - Push them upstream himself/herself by using 
https://codereview.qt-project.org/
  - Publicly state that the patches are under a permisive license like BSD.

In this case there are more alternatives. The patches applies to third party 
software, so if the patches are already upstreamed there I can easily ask 
upstream to include them. Bonus points if you can point me to the relevant 
commits in double-conversion and webkit.

Thanks in advance, Lisandro.

-- 
A computer is like an air conditioner. It stops working when you open
windows.

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


Re: Log for attempted build of kdepimlibs_4:4.14.2-2 on m68k (dist=unstable)

2015-04-02 Thread Thorsten Glaser
fail

symbols file mismatch


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/pine.bsm.4.64l.1504021220560.5...@herc.mirbsd.org



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

2015-03-13 Thread Thorsten Glaser
Source: qtwebkit-opensource-src
Version: 5.3.2+dfsg-3
Severity: important
Tags: patch

Hi,

qtwebkit-opensource-src FTBFS on m68k due to 2 issues:

• double-conversion – fix included, but will no longer be
  needed once it uses the system-wide copy

• implicit alignment assumptions – fix included

Please apply the patches and forward them upstream as well.
The package builds with them applied; build log (for your
adjustment of the symbols files) attached too.

Thanks!

-- System Information:
Debian Release: 8.0
  APT prefers unreleased
  APT policy: (500, 'unreleased'), (500, 'unstable')
Architecture: m68k

Kernel: Linux 3.16.0-4-m68k
Locale: LANG=C, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/lksh
Init: sysvinit (via /sbin/init)


qtwebkit-opensource-src_5.3.2+dfsg-3+m68k.2_m68k.build.xz
Description: application/xz
diff -Nru qtwebkit-opensource-src-5.3.2+dfsg/debian/changelog qtwebkit-opensource-src-5.3.2+dfsg/debian/changelog
--- qtwebkit-opensource-src-5.3.2+dfsg/debian/changelog	2014-10-17 07:06:32.0 +0200
+++ qtwebkit-opensource-src-5.3.2+dfsg/debian/changelog	2015-03-10 00:22:58.0 +0100
@@ -1,3 +1,10 @@
+qtwebkit-opensource-src (5.3.2+dfsg-3+m68k.2) unreleased; urgency=medium
+
+  * fix_double-conversion_for_m68k.diff: Fix dtoa for m68k (see #778644)
+  * fix_alignment.diff: Make implicit alignment assumptions explicit
+
+ -- Thorsten Glaser t...@mirbsd.de  Mon, 09 Mar 2015 23:21:54 +
+
 qtwebkit-opensource-src (5.3.2+dfsg-3) unstable; urgency=medium
 
   * Backport three patches to fix crashes:
diff -Nru qtwebkit-opensource-src-5.3.2+dfsg/debian/patches/fix_alignment.diff qtwebkit-opensource-src-5.3.2+dfsg/debian/patches/fix_alignment.diff
--- qtwebkit-opensource-src-5.3.2+dfsg/debian/patches/fix_alignment.diff	1970-01-01 01:00:00.0 +0100
+++ qtwebkit-opensource-src-5.3.2+dfsg/debian/patches/fix_alignment.diff	2015-03-08 00:09:33.0 +0100
@@ -0,0 +1,64 @@
+--- a/Source/WebCore/dom/ElementRareData.h
 b/Source/WebCore/dom/ElementRareData.h
+@@ -163,6 +163,8 @@ private:
+ unsigned m_childrenAffectedByBackwardPositionalRules : 1;
+ 
+ unsigned m_isInsideRegion : 1;
++// the sum of all elements of this bitfield (all #if enabled) must be 32
++unsigned m_unused : 16;
+ RegionOversetState m_regionOversetState;
+ 
+ LayoutSize m_minimumSizeForResizing;
+--- a/Source/WebCore/dom/NodeRareData.cpp
 b/Source/WebCore/dom/NodeRareData.cpp
+@@ -35,6 +35,8 @@ namespace WebCore {
+ 
+ struct SameSizeAsNodeRareData {
+ unsigned m_bitfields : 20;
++// Must add to 32
++unsigned m_padding : 12;
+ void* m_pointer[3];
+ #if ENABLE(MICRODATA)
+ void* m_microData;
+--- a/Source/WebCore/dom/NodeRareData.h
 b/Source/WebCore/dom/NodeRareData.h
+@@ -341,6 +341,8 @@ protected:
+ 
+ private:
+ unsigned m_connectedFrameCount : 10; // Must fit Page::maxNumberOfFrames.
++// Must add to 32
++unsigned m_padding : 22;
+ 
+ OwnPtrNodeListsNodeData m_nodeLists;
+ OwnPtrNodeMutationObserverData m_mutationObserverData;
+--- a/Source/WebCore/rendering/style/RenderStyle.h
 b/Source/WebCore/rendering/style/RenderStyle.h
+@@ -211,6 +211,7 @@ protected:
+ // CSS Text Layout Module Level 3: Vertical writing support
+ unsigned m_writingMode : 2; // WritingMode
+ // 45 bits
++	unsigned m_padding : 19; // pad to 64 bits
+ } inherited_flags;
+ 
+ // don't inherit
+--- a/Source/WebCore/rendering/style/StyleBoxData.h
 b/Source/WebCore/rendering/style/StyleBoxData.h
+@@ -85,6 +85,7 @@ private:
+ #if ENABLE(CSS_BOX_DECORATION_BREAK)
+ unsigned m_boxDecorationBreak : 1; // EBoxDecorationBreak
+ #endif
++unsigned m_padding : 29; // pad to 32 bit
+ };
+ 
+ } // namespace WebCore
+--- a/Source/WebCore/rendering/style/StyleRareInheritedData.h
 b/Source/WebCore/rendering/style/StyleRareInheritedData.h
+@@ -121,6 +121,8 @@ public:
+ unsigned m_textAlignLast : 3; // TextAlignLast
+ unsigned m_textJustify : 3; // TextJustify
+ unsigned m_textUnderlinePosition : 3; // TextUnderlinePosition
++#else
++unsigned m_padding : 9; // fix alignment on m68k
+ #endif // CSS3_TEXT
+ unsigned m_rubyPosition : 1; // RubyPosition
+ 
diff -Nru qtwebkit-opensource-src-5.3.2+dfsg/debian/patches/fix_double-conversion_for_m68k.diff qtwebkit-opensource-src-5.3.2+dfsg/debian/patches/fix_double-conversion_for_m68k.diff
--- qtwebkit-opensource-src-5.3.2+dfsg/debian/patches/fix_double-conversion_for_m68k.diff	1970-01-01 01:00:00.0 +0100
+++ qtwebkit-opensource-src-5.3.2+dfsg/debian/patches/fix_double-conversion_for_m68k.diff	2015-02-19 18:50:22.0 +0100
@@ -0,0 +1,12 @@
+--- a/Source/WTF/wtf/dtoa/utils.h
 b/Source/WTF/wtf/dtoa/utils.h
+@@ -58,6 +58,9 @@ defined(_MIPS_ARCH_MIPS32R2)
+ #else
+ #undef DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS
+ #endif  // _WIN32
++#elif defined(__m68k__)
++// The MC68881 also uses an 80bit wide floating point stack.
++#undef

Bug#778644: qtdeclarative-opensource-src: port to m68k

2015-02-20 Thread Dmitry Shachnev
Hi,

On Thu, 19 Feb 2015 17:48:45 + (UTC), Thorsten Glaser wrote:
 Does the same (will use the system’s copy in the next upload) apply to
 qtwebkit-opensource-src as well? It also currently FTBFS with:

 […]
 In file included from ./wtf/dtoa/double-conversion.h:31:0,
  from ./wtf/dtoa.h:25,
  from wtf/DecimalNumber.h:30,
  from wtf/DecimalNumber.cpp:27:
 ./wtf/dtoa/utils.h:62:2: error: #error Target architecture was not detected 
 as supported by Double-Conversion.
  #error Target architecture was not detected as supported by 
 Double-Conversion.
   ^

So far we have not yet looked into it, but the goal is to always
use a system copy of double-conversion, yes.

--
Dmitry Shachnev

signature.asc
Description: OpenPGP digital signature


Bug#778644: marked as done (qtdeclarative-opensource-src: port to m68k)

2015-02-20 Thread Debian Bug Tracking System
Your message dated Fri, 20 Feb 2015 22:00:11 +
with message-id e1yovcj-0007uf...@franck.debian.org
and subject line Bug#778644: fixed in qtdeclarative-opensource-src 5.4.0-5
has caused the Debian Bug report #778644,
regarding qtdeclarative-opensource-src: port to m68k
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
778644: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=778644
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: qtdeclarative-opensource-src
Version: 5.3.2-4
Severity: important
Tags: patch

Hi,

please apply the attached debdiff: a small patch to make it build
(already sent to Google, but not Qt upstream) and an update for the
symbols files.

-- System Information:
Debian Release: 8.0
  APT prefers unreleased
  APT policy: (500, 'unreleased'), (500, 'unstable')
Architecture: m68k

Kernel: Linux 3.16.0-4-m68k
Locale: LANG=C, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/lksh
Init: sysvinit (via /sbin/init)
diff -Nru qtdeclarative-opensource-src-5.3.2/debian/changelog qtdeclarative-opensource-src-5.3.2/debian/changelog
--- qtdeclarative-opensource-src-5.3.2/debian/changelog	2014-09-25 04:22:17.0 +0200
+++ qtdeclarative-opensource-src-5.3.2/debian/changelog	2015-02-16 15:51:27.0 +0100
@@ -1,3 +1,9 @@
+qtdeclarative-opensource-src (5.3.2-4+m68k.1) unreleased; urgency=medium
+
+  * Add support for m68k.
+
+ -- Thorsten Glaser t...@mirbsd.de  Mon, 16 Feb 2015 15:51:13 +0100
+
 qtdeclarative-opensource-src (5.3.2-4) unstable; urgency=medium
 
   * Remove CMake files for plugins, we don't need to ship them.
diff -Nru qtdeclarative-opensource-src-5.3.2/debian/libqt5qml5.symbols qtdeclarative-opensource-src-5.3.2/debian/libqt5qml5.symbols
--- qtdeclarative-opensource-src-5.3.2/debian/libqt5qml5.symbols	2014-09-22 04:51:56.0 +0200
+++ qtdeclarative-opensource-src-5.3.2/debian/libqt5qml5.symbols	2015-02-17 14:49:29.0 +0100
@@ -1574,81 +1574,81 @@
  _ZN3QV42IR9Optimizer3runEP17QQmlEnginePrivate@Base 5.3.0 1
  _ZN3QV42IR9OptimizerC1EPNS0_8FunctionE@Base 5.3.1 1
  _ZN3QV42IR9OptimizerC2EPNS0_8FunctionE@Base 5.3.1 1
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection10getElementEPNS_2IR4ExprES4_PNS2_4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection10loadRegexpEPNS_2IR6RegExpEPNS2_4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection10loadStringERK7QStringPNS_2IR4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection10setElementEPNS_2IR4ExprES4_S4_@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection10swapValuesEPNS_2IR4TempES4_@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection10visitCJumpEPNS_2IR5CJumpE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection11convertTypeEPNS_2IR4TempES4_@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection11getPropertyEPNS_2IR4ExprERK7QStringPNS2_4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection11initClosureEPNS_2IR7ClosureEPNS2_4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection11setPropertyEPNS_2IR4ExprES4_RK7QString@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection12callPropertyEPNS_2IR4ExprERK7QStringPNS2_8ExprListEPNS2_4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection13callSubscriptEPNS_2IR4ExprES4_PNS2_8ExprListEPNS2_4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64

Bug#778644: qtdeclarative-opensource-src: port to m68k

2015-02-18 Thread Thorsten Glaser
Lisandro Damián Nicanor Pérez Meyer dixit:

The patch won't work because on the next upload we will be using the system's
double-conversion lib. Just check that the lib builds on m68k and problem
fixed.

Turns out it does not, but it just needs either the patch
or a newer upstream version *plus* manual notification of
the m68k porters (just prod me) to unblock the newer pak‐
kage in wanna-build.

This is #699849 already – Cc’ing that bug since its main‐
tainers should know we have a fix and upstream also fixed
it. Note that this does not prevent you from applying the
patch to any further uploads that d̲o̲ include the code un‐
der 3rdparty/.

bye,
//mirabilos
-- 
diogenese Beware of ritual lest you forget the meaning behind it.
igli yeah but it means if you really care about something, don't
ritualise it, or you will lose it. don't fetishise it, don't
obsess. or you'll forget why you love it in the first place.


--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/pine.bsm.4.64l.1502181840340.26...@herc.mirbsd.org



Bug#778644: qtdeclarative-opensource-src: port to m68k

2015-02-18 Thread Lisandro Damián Nicanor Pérez Meyer
On Wednesday 18 February 2015 09:59:44 Lisandro Damián Nicanor Pérez Meyer 
wrote:
[snip] 
 The patch won't work because on the next upload we will be using the
 system's double-conversion lib. Just check that the lib builds on m68k and
 problem fixed.

I'm right now building with the above mentioned patch so you can just fix 
double-conversion.

Symbols will be updated with the next upload as soon as there is a build log 
available at debian ports.

Kinds regards, Lisandro.

-- 
Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


Bug#778644: qtdeclarative-opensource-src: port to m68k

2015-02-18 Thread Thorsten Glaser
Lisandro Damián Nicanor Pérez Meyer dixit:

m68k is not a release arch so the severity should be at most normal.

No: for non-release archs, “important” is the cap, and FTBFS are
RC if the package built before (means important due to the cap)
and important if it did not build before.

The patch won't work because on the next upload we will be using the system's
double-conversion lib. Just check that the lib builds on m68k and problem
fixed.

I’ll have a look. It was previously marked Not-For-Us due to,
I assume, this exact problem, but it appears having been fixed
upstream.

By the way, don't waste your time with symbols patches. We get symbols from
build logs, and m68k is already present in debian-ports, so they will be used
on the next upload.

This is wrong for several reasons, mostly that the symbols list
is wrong, so the next (regular) upload would fail, and only the
second-to-next upload would succeed. Plus, we actually need the
lib *right now*, to be able to build things such as qt5webkit,
so I need to prepare the symbols file patches *anyway* because
I have to upload the package to dpo “unreleased”.

bye,
//mirabilos
-- 
This space for rent.


--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/pine.bsm.4.64l.1502181821240.26...@herc.mirbsd.org



Bug#778644: qtdeclarative-opensource-src: port to m68k

2015-02-18 Thread Lisandro Damián Nicanor Pérez Meyer
tag 778644 pending
thanks

Fix uploaded, waiting in the NEW queue.

-- 
Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


Processed: Re: Bug#778644: qtdeclarative-opensource-src: port to m68k

2015-02-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tag 778644 pending
Bug #778644 [src:qtdeclarative-opensource-src] qtdeclarative-opensource-src: 
port to m68k
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
778644: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=778644
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.142429565012264.transcr...@bugs.debian.org



Re: Bug#778644: qtdeclarative-opensource-src: port to m68k

2015-02-18 Thread Lisandro Damián Nicanor Pérez Meyer
On Wednesday 18 February 2015 18:44:16 Thorsten Glaser wrote:
[snip]
 This is #699849 already – Cc’ing that bug since its main‐
 tainers should know we have a fix and upstream also fixed
 it. Note that this does not prevent you from applying the
 patch to any further uploads that d̲o̲ include the code un‐
 der 3rdparty/.

There will be no uploads to Qt 5.3.2 unless an RC bug is found, in which case 
only the RC bug will be fixed as required by the RT.
The newer versions (currently 5.4.0) are already available in experimental.

-- 
One World, One web, One program - Microsoft Promo ad.
Ein Volk, Ein Reich, Ein Führer - Adolf Hitler

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


Processed: Re: Bug#778644: qtdeclarative-opensource-src: port to m68k

2015-02-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 778644 normal
Bug #778644 [src:qtdeclarative-opensource-src] qtdeclarative-opensource-src: 
port to m68k
Severity set to 'normal' from 'important'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
778644: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=778644
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.142426441625987.transcr...@bugs.debian.org



Bug#778644: qtdeclarative-opensource-src: port to m68k

2015-02-18 Thread Lisandro Damián Nicanor Pérez Meyer
severity 778644 normal
thanks

m68k is not a release arch so the severity should be at most normal.

On Tuesday 17 February 2015 21:28:44 John Paul Adrian Glaubitz wrote:
 On 02/17/2015 09:12 PM, Thorsten Glaser wrote:
  please apply the attached debdiff: a small patch to make it build
  (already sent to Google, but not Qt upstream) and an update for the
  symbols files.

The patch won't work because on the next upload we will be using the system's 
double-conversion lib. Just check that the lib builds on m68k and problem 
fixed.

By the way, don't waste your time with symbols patches. We get symbols from 
build logs, and m68k is already present in debian-ports, so they will be used 
on the next upload.

Kinds regards, Lisandro.

-- 
8: Si un archivo ha pasado a la Papelera de Reciclaje
* Ud tiene una carpeta llamada Papelera de Reciclaje
Damian Nadales
http://mx.grulic.org.ar/lurker/message/20080307.141449.a70fb2fc.es.html

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


Bug#778644: qtdeclarative-opensource-src: port to m68k

2015-02-17 Thread John Paul Adrian Glaubitz
On 02/17/2015 09:12 PM, Thorsten Glaser wrote:
 please apply the attached debdiff: a small patch to make it build
 (already sent to Google, but not Qt upstream) and an update for the
 symbols files.

Awesome, thanks Thorsten!

What do you mean with sent to Google, btw? Does Google maintain
anything within Qt?

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


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54e3a47c.5070...@physik.fu-berlin.de



Bug#778644: qtdeclarative-opensource-src: port to m68k

2015-02-17 Thread Thorsten Glaser
Source: qtdeclarative-opensource-src
Version: 5.3.2-4
Severity: important
Tags: patch

Hi,

please apply the attached debdiff: a small patch to make it build
(already sent to Google, but not Qt upstream) and an update for the
symbols files.

-- System Information:
Debian Release: 8.0
  APT prefers unreleased
  APT policy: (500, 'unreleased'), (500, 'unstable')
Architecture: m68k

Kernel: Linux 3.16.0-4-m68k
Locale: LANG=C, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/lksh
Init: sysvinit (via /sbin/init)
diff -Nru qtdeclarative-opensource-src-5.3.2/debian/changelog qtdeclarative-opensource-src-5.3.2/debian/changelog
--- qtdeclarative-opensource-src-5.3.2/debian/changelog	2014-09-25 04:22:17.0 +0200
+++ qtdeclarative-opensource-src-5.3.2/debian/changelog	2015-02-16 15:51:27.0 +0100
@@ -1,3 +1,9 @@
+qtdeclarative-opensource-src (5.3.2-4+m68k.1) unreleased; urgency=medium
+
+  * Add support for m68k.
+
+ -- Thorsten Glaser t...@mirbsd.de  Mon, 16 Feb 2015 15:51:13 +0100
+
 qtdeclarative-opensource-src (5.3.2-4) unstable; urgency=medium
 
   * Remove CMake files for plugins, we don't need to ship them.
diff -Nru qtdeclarative-opensource-src-5.3.2/debian/libqt5qml5.symbols qtdeclarative-opensource-src-5.3.2/debian/libqt5qml5.symbols
--- qtdeclarative-opensource-src-5.3.2/debian/libqt5qml5.symbols	2014-09-22 04:51:56.0 +0200
+++ qtdeclarative-opensource-src-5.3.2/debian/libqt5qml5.symbols	2015-02-17 14:49:29.0 +0100
@@ -1574,81 +1574,81 @@
  _ZN3QV42IR9Optimizer3runEP17QQmlEnginePrivate@Base 5.3.0 1
  _ZN3QV42IR9OptimizerC1EPNS0_8FunctionE@Base 5.3.1 1
  _ZN3QV42IR9OptimizerC2EPNS0_8FunctionE@Base 5.3.1 1
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection10getElementEPNS_2IR4ExprES4_PNS2_4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection10loadRegexpEPNS_2IR6RegExpEPNS2_4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection10loadStringERK7QStringPNS_2IR4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection10setElementEPNS_2IR4ExprES4_S4_@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection10swapValuesEPNS_2IR4TempES4_@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection10visitCJumpEPNS_2IR5CJumpE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection11convertTypeEPNS_2IR4TempES4_@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection11getPropertyEPNS_2IR4ExprERK7QStringPNS2_4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection11initClosureEPNS_2IR7ClosureEPNS2_4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection11setPropertyEPNS_2IR4ExprES4_RK7QString@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection12callPropertyEPNS_2IR4ExprERK7QStringPNS2_8ExprListEPNS2_4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection13callSubscriptEPNS_2IR4ExprES4_PNS2_8ExprListEPNS2_4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection14constructValueEPNS_2IR4TempEPNS2_8ExprListES4_@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection14loadQmlIdArrayEPNS_2IR4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection14loadThisObjectEPNS_2IR4TempE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection15prepareCallDataEPNS_2IR8ExprListEPNS2_4ExprE@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips !mips64el !mipsel !powerpc !ppc64 !ppc64el !s390x !sparc !sparc64)_ZN3QV43JIT20InstructionSelection15visitCJumpEqualEPNS_2IR5BinopEPNS2_10BasicBlockES6_@Base 5.3.0
- (arch=!alpha !arm64 !armel !hppa !mips

Re: Fwd: Log for attempted build of kdepimlibs_4:4.11.5-4 on m68k (dist=unstable)

2014-02-06 Thread Lisandro Damián Nicanor Pérez Meyer
On Wednesday 05 February 2014 17:24:36 Thorsten Glaser wrote:
 http://buildd.debian-ports.org/status/fetch.php?pkg=kdepimlibsarch=m68kver
 =4%3A4.11.5-4stamp=1391599601
 
 symbol file mismatch:
 
 _ZTIN5boost16exception_detail10clone_baseE@Base
 _ZTSN5boost16exception_detail10clone_baseE@Base
 _ZTVN5boost16exception_detail10clone_baseE@Base
 
 not provided on m68k (our boost is older),
 probably should be made optional

The build logs are available in http://buildd.debian-ports.org, so be sure 
that the next upload will include fixed symbols files. Except an unwanted 
omission, we always get and process the symbols from the ports too.

Kinds regards, Lisandro.

-- 

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


Re: Log for attempted build of kdepimlibs_4:4.11.5-4 on m68k (dist=unstable)

2014-02-06 Thread Thorsten Glaser
Lisandro Damián Nicanor Pérez Meyer dixit:

The build logs are available in http://buildd.debian-ports.org, so be sure 
that the next upload will include fixed symbols files. Except an unwanted 
omission, we always get and process the symbols from the ports too.

Okay, wonderful, thanks!

bye,
//mirabilos
-- 
hecker cool ein Ada Lovelace Google-Doodle. aber zum 197. Geburtstag? Hätten
die nicht noch 3 Jahre warten können? mirabilos bis dahin gibts google nicht
mehr hecker ja, könnte man meinen. wahrscheinlich ist der angekündigte welt-
untergang aus dem maya-kalender die globale abschaltung von google ☺ und darum
müssen die die doodles vorher noch raushauen


--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/pine.bsm.4.64l.1402062128380.31...@herc.mirbsd.org



Fwd: Log for attempted build of kdepimlibs_4:4.11.5-4 on m68k (dist=unstable)

2014-02-05 Thread Thorsten Glaser
http://buildd.debian-ports.org/status/fetch.php?pkg=kdepimlibsarch=m68kver=4%3A4.11.5-4stamp=1391599601

symbol file mismatch:

_ZTIN5boost16exception_detail10clone_baseE@Base
_ZTSN5boost16exception_detail10clone_baseE@Base
_ZTVN5boost16exception_detail10clone_baseE@Base

not provided on m68k (our boost is older),
probably should be made optional


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/pine.bsm.4.64l.1402051723540.18...@herc.mirbsd.org



Processed: kopete: FTBFS: moc: /tmp/buildd/kopete-4.11.3/obj-m68k-linux-gnu/protocols/sms/gsmlibprefs.h: No such file

2013-12-06 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 found 696141 4:4.11.3-2
Bug #696141 [src:kopete] kopete: FTBFS: moc: 
/tmp/buildd/kopete-4.11.3/obj-m68k-linux-gnu/protocols/sms/gsmlibprefs.h: No 
such file
Marked as found in versions kopete/4:4.11.3-2.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
696141: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=696141
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.138631860414673.transcr...@bugs.debian.org



Processed: kopete: FTBFS: moc: /tmp/buildd/kopete-4.11.3/obj-m68k-linux-gnu/protocols/sms/gsmlibprefs.h: No such file

2013-11-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 retitle 696141 kopete: FTBFS: moc: 
 /tmp/buildd/kopete-4.11.3/obj-m68k-linux-gnu/protocols/sms/gsmlibprefs.h: No 
 such file
Bug #696141 [src:kdenetwork] kdenetwork: FTBFS: moc: 
.../kopete/protocols/sms/gsmlibprefs.h: No such file
Changed Bug title to 'kopete: FTBFS: moc: 
/tmp/buildd/kopete-4.11.3/obj-m68k-linux-gnu/protocols/sms/gsmlibprefs.h: No 
such file' from 'kdenetwork: FTBFS: moc: 
.../kopete/protocols/sms/gsmlibprefs.h: No such file'
 reassign 696141 src:kopete
Bug #696141 [src:kdenetwork] kopete: FTBFS: moc: 
/tmp/buildd/kopete-4.11.3/obj-m68k-linux-gnu/protocols/sms/gsmlibprefs.h: No 
such file
Bug reassigned from package 'src:kdenetwork' to 'src:kopete'.
No longer marked as found in versions kdenetwork/4:4.8.4-1.
Ignoring request to alter fixed versions of bug #696141 to the same values 
previously set
 found 696141 4:4.11.3-1
Bug #696141 [src:kopete] kopete: FTBFS: moc: 
/tmp/buildd/kopete-4.11.3/obj-m68k-linux-gnu/protocols/sms/gsmlibprefs.h: No 
such file
Marked as found in versions kopete/4:4.11.3-1.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
696141: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=696141
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.138524125722886.transcr...@bugs.debian.org



Bug#717685: marked as done (qtwebkit: please don't build debug info on m68k either)

2013-11-05 Thread Debian Bug Tracking System
Your message dated Tue, 05 Nov 2013 13:34:27 +
with message-id e1vdgm3-sj...@franck.debian.org
and subject line Bug#717685: fixed in qtwebkit 2.2.1-7
has caused the Debian Bug report #717685,
regarding qtwebkit: please don't build debug info on m68k either
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
717685: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=717685
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: qtwebkit
Severity: wishlist

Hi,

as Lisandro asked, here’s a bugreport that m68k should please
be added to the list of architectures that don’t build full
debugging information due to memory and time to link the
shared libraries becoming insane then.

Thanks,
//mirabilos
-- 
Support mksh as /bin/sh and RoQA dash NOW!
‣ src:bash (260 (282) bugs: 0 RC, 182 (197) IN, 78 (85) MW, 0 (0) FP)
‣ src:dash (88 (104) bugs: 3 RC, 42 (47) IN, 43 (54) MW, 0 FP)
‣ src:mksh (3 bugs: 0 RC, 1 IN, 2 MW, 0 FP, 1 gift)
http://qa.debian.org/data/bts/graphs/d/dash.png is pretty red, innit?
---End Message---
---BeginMessage---
Source: qtwebkit
Source-Version: 2.2.1-7

We believe that the bug you reported is fixed in the latest version of
qtwebkit, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 717...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Lisandro Damián Nicanor Pérez Meyer lisan...@debian.org (supplier of updated 
qtwebkit package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 04 Nov 2013 22:15:25 -0300
Source: qtwebkit
Binary: libqtwebkit-dev libqtwebkit4 libqtwebkit-qmlwebkitplugin 
libqtwebkit4-dbg
Architecture: source amd64
Version: 2.2.1-7
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-kde@lists.debian.org
Changed-By: Lisandro Damián Nicanor Pérez Meyer lisan...@debian.org
Description: 
 libqtwebkit-dev - Web content engine library for Qt - development files
 libqtwebkit-qmlwebkitplugin - Qt WebKit QML plugin
 libqtwebkit4 - Web content engine library for Qt
 libqtwebkit4-dbg - Web content engine library for Qt - debugging symbols
Closes: 694773 717685
Changes: 
 qtwebkit (2.2.1-7) unstable; urgency=low
 .
   [ Nobuhiro Iwamatsu ]
   * Fix build on Renesas sh4, using -gstabs instead of -g. (Closes: #694773)
 .
   [ Pino Toscano ]
   * Fix build on m68k, using -gstabs instead of -g. (Closes: #717685)
 .
   [ Lisandro Damián Nicanor Pérez Meyer ]
   * Add myself to Uploaders.
   * Update symbols file.
Checksums-Sha1: 
 3d9cc790452183cd47e2b5087726bb8a94ccb9e4 2432 qtwebkit_2.2.1-7.dsc
 c083dc5d7ada15fb2aad6b26c6049056e7210879 94875 qtwebkit_2.2.1-7.debian.tar.gz
 d1cb8d5f35d205f17e18cf1de45b2ddeaea2cfbd 165404 
libqtwebkit-dev_2.2.1-7_amd64.deb
 2be969cac983f395faed5a9c32899ccb2040f39e 5851756 libqtwebkit4_2.2.1-7_amd64.deb
 b96b98d5c4d9a487f9ece9f91badfbfb44127a6f 167130 
libqtwebkit-qmlwebkitplugin_2.2.1-7_amd64.deb
 e725eb1186b9b0ce316988bf62dc944f82632c70 329623898 
libqtwebkit4-dbg_2.2.1-7_amd64.deb
Checksums-Sha256: 
 4a4bd937045193e5901e4015b14c5d9be0750ca0cc5efed00e3e51cb2cfe7c04 2432 
qtwebkit_2.2.1-7.dsc
 61f0db5a09878c87b7742b6d7cfcefa0163d3176a2e4fba940a83a20b2b37982 94875 
qtwebkit_2.2.1-7.debian.tar.gz
 032c4f5d81737b4e6e7c58407c61a6cf4d0f5763142c66e07bb96177a888e410 165404 
libqtwebkit-dev_2.2.1-7_amd64.deb
 f497de232c48c2457794ddb84e2694e2df4d492ee297ad6cf6dd1fbb125550f2 5851756 
libqtwebkit4_2.2.1-7_amd64.deb
 e02ced2d66d068d7d789dc3583ec93a6e16d628169a20e9a5195e793d45be3d8 167130 
libqtwebkit-qmlwebkitplugin_2.2.1-7_amd64.deb
 a217cc7bbcdc659e3415484cb200b7fc28aa590a9491756d0ac7b101c94b17b2 329623898 
libqtwebkit4-dbg_2.2.1-7_amd64.deb
Files: 
 65ac967a7189e002c15c6f40678cc43a 2432 libs optional qtwebkit_2.2.1-7.dsc
 61e5ba67c689996d8a3d7c095106338a 94875 libs optional 
qtwebkit_2.2.1-7.debian.tar.gz
 f6e51306b9395f98302bbab39a9d4784 165404 libdevel optional 
libqtwebkit-dev_2.2.1-7_amd64.deb
 6e491627f4954992a273058a5f7090da 5851756 libs optional 
libqtwebkit4_2.2.1-7_amd64.deb
 902fd06297ef86ed46a90478fe6f393b 167130 libs optional 
libqtwebkit-qmlwebkitplugin_2.2.1-7_amd64.deb
 6b2393502778da6e3acf0fcf304e230a 329623898

Re: dpkg-gensymbols log for qt4-x11 on m68k

2013-09-06 Thread Thorsten Glaser
Lisandro Dami�n Nicanor P�rez Meyer dixit:

Thanks Thorsten! Anyway this build log should be now in the backports archive, 

No, it’s not in backports. And not in debian-ports either.

so it will get downloaded by getbuildlogs next time I update the package. The 

It won’t.

There is currently no way for me to insert the buildlog of a
cowbuilder-built package into debian-ports. I asked Aurélien
and never got a reply.

bye,
//mirabilos
-- 
[00:02] Vutral gecko: benutzt du emacs ?
[00:03] gecko nö  [00:03] gecko nur n normalen mac
[00:04] Vutral argl   [00:04] Vutral ne den editor
-- Vutral und gecko2 in #deutsch (NB: Editor? Betriebssystem.)


--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/pine.bsm.4.64l.1309060840560.4...@herc.mirbsd.org



Re: dpkg-gensymbols log for qt4-x11 on m68k

2013-09-06 Thread Lisandro Damián Nicanor Pérez Meyer
On Friday 06 September 2013 08:42:06 Thorsten Glaser wrote:
 Lisandro Dami�n Nicanor P�rez Meyer dixit:
 Thanks Thorsten! Anyway this build log should be now in the backports
 archive,
 No, it’s not in backports. And not in debian-ports either.
 
 so it will get downloaded by getbuildlogs next time I update the package.
 The
 It won’t.
 
 There is currently no way for me to insert the buildlog of a
 cowbuilder-built package into debian-ports. I asked Aurélien
 and never got a reply.

Oh, I see. Then no problem at all, I'll process it on the next upload.


-- 
A computer is like an air conditioner. It stops working when you open
windows.

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


Re: dpkg-gensymbols log for qt4-x11 on m68k

2013-09-05 Thread Lisandro Damián Nicanor Pérez Meyer
On Thursday 05 September 2013 13:51:17 Thorsten Glaser wrote:
 Hi,
 
 after quite some time ;-) qt4-x11 4:4.8.5+dfsg-3 finally
 built on m68k, and here is the dpkg-gensymbols output in
 case you need to change anything.
 
 Thanks,
 //mirabilos

Thanks Thorsten! Anyway this build log should be now in the backports archive, 
so it will get downloaded by getbuildlogs next time I update the package. The 
the process is semi-automagic.

Kinds regards, Lisandro.


-- 
Existe un problema cultural, el que lleva -por ejemplo- a los padres a
comprar una computadora y ponerla en la habitación de los varones.  La
computadora tiende a ser vista como un objeto masculino, por lo cual
el número de mujeres interesadas es menor.
  Margarita Manterola, Debian Developer, en un mail sobre las mujeres
  en el software libre, LugFi.
  http://listas.fi.uba.ar/pipermail/lug/2005-September/020266.html

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


Bug#717686: marked as done (qtwebkit-opensource-src: please don't build debug info on m68k either)

2013-08-12 Thread Debian Bug Tracking System
Your message dated Mon, 12 Aug 2013 15:24:36 +
with message-id e1v8tz2-0003kc...@franck.debian.org
and subject line Bug#717686: fixed in qtwebkit-opensource-src 5.1.0-2
has caused the Debian Bug report #717686,
regarding qtwebkit-opensource-src: please don't build debug info on m68k either
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
717686: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=717686
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: qtwebkit-opensource-src
Severity: wishlist

Hi,

as Lisandro asked, here’s a bugreport that m68k should please
be added to the list of architectures that don’t build full
debugging information due to memory and time to link the
shared libraries becoming insane then.

Thanks,
//mirabilos
-- 
Support mksh as /bin/sh and RoQA dash NOW!
‣ src:bash (260 (282) bugs: 0 RC, 182 (197) IN, 78 (85) MW, 0 (0) FP)
‣ src:dash (88 (104) bugs: 3 RC, 42 (47) IN, 43 (54) MW, 0 FP)
‣ src:mksh (3 bugs: 0 RC, 1 IN, 2 MW, 0 FP, 1 gift)
http://qa.debian.org/data/bts/graphs/d/dash.png is pretty red, innit?
---End Message---
---BeginMessage---
Source: qtwebkit-opensource-src
Source-Version: 5.1.0-2

We believe that the bug you reported is fixed in the latest version of
qtwebkit-opensource-src, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 717...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Lisandro Damián Nicanor Pérez Meyer lisan...@debian.org (supplier of updated 
qtwebkit-opensource-src package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 12 Aug 2013 01:00:32 -0300
Source: qtwebkit-opensource-src
Binary: libqt5webkit5-dev libqt5webkit5 libqt5webkit5-qmlwebkitplugin 
libqt5webkit5-dbg qtwebkit5-doc qtwebkit5-doc-html
Architecture: source amd64 all
Version: 5.1.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-kde@lists.debian.org
Changed-By: Lisandro Damián Nicanor Pérez Meyer lisan...@debian.org
Description: 
 libqt5webkit5 - Web content engine library for Qt
 libqt5webkit5-dbg - Web content engine library for Qt - debugging symbols
 libqt5webkit5-dev - Web content engine library for Qt - development files
 libqt5webkit5-qmlwebkitplugin - Qt WebKit QML plugin
 qtwebkit5-doc - Qt 5 webkit documentation
 qtwebkit5-doc-html - Qt 5 webkit HTML documentation
Closes: 717686
Changes: 
 qtwebkit-opensource-src (5.1.0-2) unstable; urgency=low
 .
   * Upload to unstable.
   * Make m68k build with -gstabs instead of -g (Closes: #717686).
Checksums-Sha1: 
 f68bfc133becc58b47c33aac3b455383310f78ae 3214 
qtwebkit-opensource-src_5.1.0-2.dsc
 c3e5f91aed16b2ec472391a8f8a659c4e86dfc04 105975 
qtwebkit-opensource-src_5.1.0-2.debian.tar.gz
 a1887d41454f4b7432adfd3a12bc651dd8f232d9 114590 
libqt5webkit5-dev_5.1.0-2_amd64.deb
 4c7481ddc31a7f141e082ed7e3191a0f95aa1c68 8141436 
libqt5webkit5_5.1.0-2_amd64.deb
 45426c814acbd31a53667c0af0c252b6dbb74c1a 112218 
libqt5webkit5-qmlwebkitplugin_5.1.0-2_amd64.deb
 61e980d10e2cfede24dd893f3bbda847a99ec353 546607910 
libqt5webkit5-dbg_5.1.0-2_amd64.deb
 ebbdb3a46b251c6f3ed495d9020ae6cd792840cb 307278 qtwebkit5-doc_5.1.0-2_all.deb
 de4087692e67358850a274f1639b3fdc125bc7c3 221128 
qtwebkit5-doc-html_5.1.0-2_all.deb
Checksums-Sha256: 
 09f3a0a5643685ecb72834325733abcf2cd4a9e0fcb5d4a5521c0c4de55b58ec 3214 
qtwebkit-opensource-src_5.1.0-2.dsc
 36ff16ef3db57bffebd7a5d4e7b4b2b9f3f784aea1011921d0576303480de8ab 105975 
qtwebkit-opensource-src_5.1.0-2.debian.tar.gz
 681f80d7a0f6c89847ce6b27d3cf9fbe13e62148ef2de01e27e6c564535c2dd9 114590 
libqt5webkit5-dev_5.1.0-2_amd64.deb
 057ac478ea438367aa2f499e097ffe459bc6b6c2582abd4742c9558d920a3c7d 8141436 
libqt5webkit5_5.1.0-2_amd64.deb
 5964c4876061727db8fc33f2d23c26320d8a93ba25ef0a8d789da7b46fb7efcc 112218 
libqt5webkit5-qmlwebkitplugin_5.1.0-2_amd64.deb
 2f7248c9961f281301fb4b3e94b749cb973ad90803a1422766c218ecc970a64c 546607910 
libqt5webkit5-dbg_5.1.0-2_amd64.deb
 792522b73ba9be2f46b2a38bdc826a975944f540d7f2e685b8a6c10429b4ffae 307278 
qtwebkit5-doc_5.1.0-2_all.deb
 7eac5924af99d8c6df2f8c1fca9f1b0e91cf26526d573f59e5884d0cc5d5930d 221128 
qtwebkit5-doc-html_5.1.0

Bug#660963: Change in qt/qt[4.8]: Add support for the Linux/m68k platform

2013-07-23 Thread Thorsten Glaser
Lisandro Damián Nicanor Pérez Meyer dixit:

Congratulations! Please add this info to the bug report and please point to
the correct patch in it (marking it as patch available is a plus too).

The bugreport is already
   Tags: confirmed, patch

The correct patch to use is:
   
http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=36;filename=qt4-x11_4.8.2%2Bdfsg-3%2Bm68k.2.debdiff;att=1;bug=660963
from this Message in the report:
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=660963#36

The only difference from the patch that was committed to Qt4
upstream is:

In Debian, we just #include qatomic_avr32.h from m68k ifdef.
In Qt, we copied qatomic_avr32.h to qatomic_m68k.h unchanged
and include that, in case they should ever need to differ.

Alternatively, you can cherry-pick the upstream commit:
http://qt.gitorious.org/qt/qt/commit/db13a5a2fe48da963e0c471cd88b56148aa2b65e

I have another request though I don’t know whether it applies
to qt4-x11 too or only qtwebkit: IIRC, debugging info is reduced
or disabled for some architectures due to the sheer size and
amount of time actually creating the shared library otherwise
takes. Please add m68k to that list (I remember needing about
4 GiB of swap for qtwebkit, and a buildd build of that recently
was aborted due to timeout because paging took so long).

Thanks,
//mirabilos
-- 
«MyISAM tables -will- get corrupted eventually. This is a fact of life. »
“mysql is about as much database as ms access” – “MSSQL at least descends
from a database” “it's a rebranded SyBase” “MySQL however was born from a
flatfile and went downhill from there” – “at least jetDB doesn’t claim to
be a database”  -- Tonnerre, psychoschlumpf and myself in #nosec


--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/pine.bsm.4.64l.1307231358090.26...@herc.mirbsd.org



Re: Bug#660963: Change in qt/qt[4.8]: Add support for the Linux/m68k platform

2013-07-23 Thread Lisandro Damián Nicanor Pérez Meyer
On Tuesday 23 July 2013 14:06:44 Thorsten Glaser wrote:
 Lisandro Damián Nicanor Pérez Meyer dixit:
 Congratulations! Please add this info to the bug report and please point to
 the correct patch in it (marking it as patch available is a plus too).
 
 The bugreport is already
Tags: confirmed, patch
[snip] 
 Alternatively, you can cherry-pick the upstream commit:
 http://qt.gitorious.org/qt/qt/commit/db13a5a2fe48da963e0c471cd88b56148aa2b65
 e

Thanks!

 I have another request though I don’t know whether it applies
 to qt4-x11 too or only qtwebkit: IIRC, debugging info is reduced
 or disabled for some architectures due to the sheer size and
 amount of time actually creating the shared library otherwise
 takes. Please add m68k to that list (I remember needing about
 4 GiB of swap for qtwebkit, and a buildd build of that recently
 was aborted due to timeout because paging took so long).

Indeed, please file a bug against src:qtwebkit and another one against 
src:qtwebkit-opensource-src and I'll happily add the arch to that list.

-- 

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


Bug#717685: qtwebkit: please don't build debug info on m68k either

2013-07-23 Thread Thorsten Glaser
Source: qtwebkit
Severity: wishlist

Hi,

as Lisandro asked, here’s a bugreport that m68k should please
be added to the list of architectures that don’t build full
debugging information due to memory and time to link the
shared libraries becoming insane then.

Thanks,
//mirabilos
-- 
Support mksh as /bin/sh and RoQA dash NOW!
‣ src:bash (260 (282) bugs: 0 RC, 182 (197) IN, 78 (85) MW, 0 (0) FP)
‣ src:dash (88 (104) bugs: 3 RC, 42 (47) IN, 43 (54) MW, 0 FP)
‣ src:mksh (3 bugs: 0 RC, 1 IN, 2 MW, 0 FP, 1 gift)
http://qa.debian.org/data/bts/graphs/d/dash.png is pretty red, innit?


--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/pine.bsm.4.64l.1307231949550.26...@herc.mirbsd.org



Bug#717686: qtwebkit-opensource-src: please don't build debug info on m68k either

2013-07-23 Thread Thorsten Glaser
Source: qtwebkit-opensource-src
Severity: wishlist

Hi,

as Lisandro asked, here’s a bugreport that m68k should please
be added to the list of architectures that don’t build full
debugging information due to memory and time to link the
shared libraries becoming insane then.

Thanks,
//mirabilos
-- 
Support mksh as /bin/sh and RoQA dash NOW!
‣ src:bash (260 (282) bugs: 0 RC, 182 (197) IN, 78 (85) MW, 0 (0) FP)
‣ src:dash (88 (104) bugs: 3 RC, 42 (47) IN, 43 (54) MW, 0 FP)
‣ src:mksh (3 bugs: 0 RC, 1 IN, 2 MW, 0 FP, 1 gift)
http://qa.debian.org/data/bts/graphs/d/dash.png is pretty red, innit?


--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/pine.bsm.4.64l.1307231948340.26...@herc.mirbsd.org



Processed: Re: Bug#660963: Change in qt/qt[4.8]: Add support for the Linux/m68k platform

2013-07-23 Thread Debian Bug Tracking System
Processing control commands:

 tag -1 pending
Bug #660963 [src:qt4-x11] qt4-x11: FTBFS on m68k: invalid conversion, 
initializing argument (atomic code?)
Added tag(s) pending.

-- 
660963: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=660963
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.b660963.137463649832678.transcr...@bugs.debian.org



Bug#660963: Change in qt/qt[4.8]: Add support for the Linux/m68k platform

2013-07-23 Thread Lisandro Damián Nicanor Pérez Meyer
Control: tag -1 pending

On Tuesday 23 July 2013 14:06:44 Thorsten Glaser wrote:
 Lisandro Damián Nicanor Pérez Meyer dixit:
 Congratulations! Please add this info to the bug report and please point to
 the correct patch in it (marking it as patch available is a plus too).
 
 The bugreport is already
Tags: confirmed, patch
[snip]
 
 Alternatively, you can cherry-pick the upstream commit:
 http://qt.gitorious.org/qt/qt/commit/db13a5a2fe48da963e0c471cd88b56148aa2b65
 e

I picked this one because it would be easier to spot the changes in a a newer 
upstream release.

It will be included in the next upload of Qt4.

Kinds regards, Lisandro.

-- 

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


Bug#717685: qtwebkit: please don't build debug info on m68k either

2013-07-23 Thread Lisandro Damián Nicanor Pérez Meyer
On Tuesday 23 July 2013 19:50:03 Thorsten Glaser wrote:
[snip]
 as Lisandro asked, here’s a bugreport that m68k should please
 be added to the list of architectures that don’t build full
 debugging information due to memory and time to link the
 shared libraries becoming insane then.

Hi Thorsten!

I'm CCing both bugs because the situation is quite similar between Qt4 and 
Qt5.

There are two things I would like you to see if it may benefit the m68k arch 
or not, which I think is what you asked for:

= -g or -gstabs

[0] 
http://anonscm.debian.org/gitweb/?p=pkg-kde/qt/qtwebkit.git;a=blob;f=debian/rules;h=19791a59fcd321734e595e5b78052b8dc1b4b2bb;hb=fc8c851d74c94ead16b0c80e74f1ce938f1ee13e

See lines 8 to 16. It also references [1]:

[1] 
http://anonscm.debian.org/gitweb/?p=pkg-kde/qt/qtwebkit.git;a=blob;f=debian/patches/stabs_format_debug_info.diff;h=1606e7dad4c5caab93da5e9a799804e424437a90;hb=fc8c851d74c94ead16b0c80e74f1ce938f1ee13e

It seems in this way the build reduces the memory footprint.

= no gc sections

[2] 
http://anonscm.debian.org/gitweb/?p=pkg-kde/qt/qtwebkit.git;a=blob;f=debian/patches/no_gc_sections.diff;h=2490224ae26d2f307870d188503ce49a4d339324;hb=fc8c851d74c94ead16b0c80e74f1ce938f1ee13e

This one may be rather old and maybe needs to be reviewed, but maybe it's 
useful for you too.

Kinds regards, Lisandro.

-- 

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


signature.asc
Description: This is a digitally signed message part.


Re: FYI: [m68k] successfull build of qt5 (base)

2013-07-22 Thread Thorsten Glaser
Thiago Macieira dixit:

[…]
That means xcb-xkb is missing. You should make sure it's present.
[…]
Please install xkbcommon's development files to avoid the depending on the 
bundled copy, which can't be upgraded without upgrading Qt itself.

I built this in a clean, minimal chroot with only the packages
marked as Build-Depends installed (just like the Debian autobuilders
will do) so please take this up with the Debian package maintainers,
who are also addressees.

bye,
//mirabilos
-- 
22:59⎜Vutral glaub ich termkit is kompliziert | glabe nicht das man
damit schneller arbeitet | reizüberflutung │ wie windows │ alles evil
zuviel bilder │ wie ein spiel | 23:00⎜Vutral die meisten raffen auch
nicht mehr von windows | 23:01⎜Vutral bilderbücher sind ja auch nich
wirklich verbreitet als erwachsenen literatur   ‣ who needs GUIs thus?


--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/pine.bsm.4.64l.1307221509470.22...@herc.mirbsd.org



Re: Log for attempted build of kdewebdev_4:4.8.4-1 on m68k (dist=unstable)

2013-05-05 Thread Thorsten Glaser
fail

moc: /«PKGBUILDDIR»/obj-m68k-linux-gnu/kfilereplace/knewprojectdlgs.h: No such 
file

The file is apparently attempted to be generated, has empty
content and is then deleted instead of created as zero-length,
if this is the same problem I saw elsewhere in qt/kde stuff.


--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/pine.bsm.4.64l.1305051218290.25...@herc.mirbsd.org



Bug#660963: Porting qt4-x11 to Debian/m68k

2012-11-29 Thread Thorsten Glaser
tags 660963 + patch confirmed
thanks

Hi,

I’ve confirmed that the patch from the attached debdiff works.

bye,
//mirabilos
-- 
Darwinism never[…]applied to wizardkind. There's a more than fair amount of[…]
stupidity in its gene-pool[…]never eradicated[…]magic evens the odds that way.
It's[…]harder to die for us than[…]muggles[…]wonder if, as technology[…]better
[…]same will[…]happen there too. Dursleys' continued existence indicates so.--- qt4-x11-4.8.2+dfsg/debian/changelog 2012-11-24 02:10:05.0 +0100
+++ qt4-x11-4.8.2+dfsg/debian/changelog 2012-11-25 16:34:22.0 +0100
@@ -1,3 +1,9 @@
+qt4-x11 (4:4.8.2+dfsg-3+m68k.2) unreleased; urgency=low
+
+  * Add atomics glue for m68k, reusing avr32 support (Closes: #660963).
+
+ -- Thorsten Glaser t...@mirbsd.de  Sun, 25 Nov 2012 16:33:39 +0100
+
 qt4-x11 (4:4.8.2+dfsg-3) unstable; urgency=medium
 
   * Apply disable-SSL-compression-by-default.patch. Disables SSL compression
--- qt4-x11-4.8.2+dfsg/debian/patches/m68k.diff 1970-01-01 01:00:00.0 
+0100
+++ qt4-x11-4.8.2+dfsg/debian/patches/m68k.diff 2012-11-25 16:33:20.0 
+0100
@@ -0,0 +1,22 @@
+Description: Use GCC atomic builtins on m68k, like avr32 does
+Author: Thorsten Glaser t...@debian.org
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=660963
+
+--- /dev/null
 b/src/corelib/arch/m68k/arch.pri
+@@ -0,0 +1,3 @@
++#
++# Motorola 68000 and ColdFire (m68k) architecture
++#
+--- a/src/corelib/arch/qatomic_arch.h
 b/src/corelib/arch/qatomic_arch.h
+@@ -66,6 +66,9 @@ QT_BEGIN_HEADER
+ #  include QtCore/qatomic_i386.h
+ #elif defined(QT_ARCH_IA64)
+ #  include QtCore/qatomic_ia64.h
++#elif defined(QT_ARCH_M68K)
++/* this works (on Linux) because qatomic_avr32.h uses only GCC builtins */
++#  include QtCore/qatomic_avr32.h
+ #elif defined(QT_ARCH_MACOSX)
+ #  include QtCore/qatomic_macosx.h
+ #elif defined(QT_ARCH_MIPS)
--- qt4-x11-4.8.2+dfsg/debian/patches/series2012-11-23 23:01:43.0 
+0100
+++ qt4-x11-4.8.2+dfsg/debian/patches/series2012-11-25 16:31:53.0 
+0100
@@ -50,3 +50,6 @@
 no_libicu_message.diff
 QTBUG-25324_assistant_segfault_on_start_with_gcc_4.7.patch
 fix_use_after_free_qlocale_unix.patch
+
+# debian-ports patches
+m68k.diff


Processed: Porting qt4-x11 to Debian/m68k

2012-11-29 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 660963 + patch confirmed
Bug #660963 [src:qt4-x11] qt4-x11: FTBFS on m68k: invalid conversion, 
initializing argument (atomic code?)
Added tag(s) confirmed.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
660963: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=660963
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.13541979548022.transcr...@bugs.debian.org



Bug#660963: qt4-x11: m68k third attempt

2012-07-29 Thread Thorsten Glaser
Hi,

I will now try the attached patch (luckily, avr32 already uses the
GCC atomic builtins), since the latter have become available with
GCC as patched in Debian-Ports unreleased repository.

Do you think this could work?

Also, http://lists.debian.org/debian-68k/2012/05/msg00110.html
(and http://lists.debian.org/debian-68k/2012/07/msg0.html
which the mailing list archive doesn’t show as follow-up) come
to mind… if someone has got an idea…

bye,
//mirabilos
-- 
«MyISAM tables -will- get corrupted eventually. This is a fact of life. »
“mysql is about as much database as ms access” – “MSSQL at least descends
from a database” “it's a rebranded SyBase” “MySQL however was born from a
flatfile and went downhill from there” – “at least jetDB doesn’t claim to
be a database”  -- Tonnerre, psychoschlumpf and myself in #nosecdiff -Nru qt4-x11-4.8.2/debian/changelog qt4-x11-4.8.2/debian/changelog
--- qt4-x11-4.8.2/debian/changelog  2012-06-10 11:09:56.0 +0200
+++ qt4-x11-4.8.2/debian/changelog  2012-07-29 21:34:29.0 +0200
@@ -1,3 +1,10 @@
+qt4-x11 (4:4.8.2-1+m68k.1) unreleased; urgency=low
+
+  * Add patch to recognise the m68k architecture and use GCC atomic
+builtins (from debian-ports GCC) like avr32 (Closes: #660963)
+
+ -- Thorsten Glaser t...@mirbsd.de  Sun, 29 Jul 2012 21:33:38 +0200
+
 qt4-x11 (4:4.8.2-1) unstable; urgency=low
 
   * New upstream release.
diff -Nru qt4-x11-4.8.2/debian/patches/m68k.diff 
qt4-x11-4.8.2/debian/patches/m68k.diff
--- qt4-x11-4.8.2/debian/patches/m68k.diff  1970-01-01 01:00:00.0 
+0100
+++ qt4-x11-4.8.2/debian/patches/m68k.diff  2012-07-29 21:33:09.0 
+0200
@@ -0,0 +1,21 @@
+Author: Thorsten Glaser t...@debian.org
+Description: Recognise m68k as architecture; use GCC atomic builtins like avr32
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=660963
+
+--- /dev/null
 b/src/corelib/arch/m68k/arch.pri
+@@ -0,0 +1,3 @@
++#
++# Motorola 68000 and ColdFire (m68k) architecture
++#
+--- a/src/corelib/arch/qatomic_arch.h
 b/src/corelib/arch/qatomic_arch.h
+@@ -66,6 +66,8 @@ QT_BEGIN_HEADER
+ #  include QtCore/qatomic_i386.h
+ #elif defined(QT_ARCH_IA64)
+ #  include QtCore/qatomic_ia64.h
++#elif defined(QT_ARCH_M68K)
++#  include QtCore/qatomic_avr32.h
+ #elif defined(QT_ARCH_MACOSX)
+ #  include QtCore/qatomic_macosx.h
+ #elif defined(QT_ARCH_MIPS)
diff -Nru qt4-x11-4.8.2/debian/patches/series 
qt4-x11-4.8.2/debian/patches/series
--- qt4-x11-4.8.2/debian/patches/series 2012-06-09 22:57:25.0 +0200
+++ qt4-x11-4.8.2/debian/patches/series 2012-07-29 21:29:27.0 +0200
@@ -45,3 +45,6 @@
 CVE-2011-3922.patch
 qt_atomic_sparc64.patch
 no_libicu_message.diff
+
+# debian-ports patches
+m68k.diff


Bug#660963: qt4-x11: FTBFS on m68k: invalid conversion, initializing argument (atomic code?)

2012-05-23 Thread Thorsten Glaser
Hi,

just to reconfirm, this patch is still needed in 4:4.8.1-1 so
please apply.

Thanks,
//mirabilos
-- 
15:41⎜Lo-lan-do:#fusionforge Somebody write a testsuite for helloworld :-)



--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/alpine.deb.2.02.1205231531040.24...@tglase.lan.tarent.de



Bug#391902: marked as done (qt4-x11: [m68k] missing inotify defines)

2006-10-18 Thread Debian Bug Tracking System
Your message dated Tue, 17 Oct 2006 23:48:13 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#391902: fixed in qt4-x11 4.2.0-2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: qt4-x11
Severity: important

qt4-x11 currently fails to build as it misses some defines for the
inotify system calls on m68k, adding this should fix the problem:

#elif defined (__mc68000__)
#define __NR_inotify_init   284
#define __NR_inotify_add_watch  285
#define __NR_inotify_rm_watch   286

These defines are taken from the m68k tree, they should appear like this
soon also in the upstream source.

bye, Roman

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: m68k
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.4.30
Locale: LANG=de_DE.UTF-8, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

---End Message---
---BeginMessage---
Source: qt4-x11
Source-Version: 4.2.0-2

We believe that the bug you reported is fixed in the latest version of
qt4-x11, which is due to be installed in the Debian FTP archive:

libqt4-core_4.2.0-2_i386.deb
  to pool/main/q/qt4-x11/libqt4-core_4.2.0-2_i386.deb
libqt4-debug_4.2.0-2_i386.deb
  to pool/main/q/qt4-x11/libqt4-debug_4.2.0-2_i386.deb
libqt4-dev_4.2.0-2_i386.deb
  to pool/main/q/qt4-x11/libqt4-dev_4.2.0-2_i386.deb
libqt4-gui_4.2.0-2_i386.deb
  to pool/main/q/qt4-x11/libqt4-gui_4.2.0-2_i386.deb
libqt4-qt3support_4.2.0-2_i386.deb
  to pool/main/q/qt4-x11/libqt4-qt3support_4.2.0-2_i386.deb
libqt4-sql_4.2.0-2_i386.deb
  to pool/main/q/qt4-x11/libqt4-sql_4.2.0-2_i386.deb
qt4-designer_4.2.0-2_i386.deb
  to pool/main/q/qt4-x11/qt4-designer_4.2.0-2_i386.deb
qt4-dev-tools_4.2.0-2_i386.deb
  to pool/main/q/qt4-x11/qt4-dev-tools_4.2.0-2_i386.deb
qt4-doc_4.2.0-2_all.deb
  to pool/main/q/qt4-x11/qt4-doc_4.2.0-2_all.deb
qt4-qtconfig_4.2.0-2_i386.deb
  to pool/main/q/qt4-x11/qt4-qtconfig_4.2.0-2_i386.deb
qt4-x11_4.2.0-2.diff.gz
  to pool/main/q/qt4-x11/qt4-x11_4.2.0-2.diff.gz
qt4-x11_4.2.0-2.dsc
  to pool/main/q/qt4-x11/qt4-x11_4.2.0-2.dsc



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Brian Nelson [EMAIL PROTECTED] (supplier of updated qt4-x11 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 17 Oct 2006 23:44:31 -0400
Source: qt4-x11
Binary: libqt4-sql libqt4-core qt4-doc libqt4-debug libqt4-qt3support 
qt4-designer libqt4-dev qt4-dev-tools libqt4-gui qt4-qtconfig
Architecture: source i386 all
Version: 4.2.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-kde@lists.debian.org
Changed-By: Brian Nelson [EMAIL PROTECTED]
Description: 
 libqt4-core - Qt 4 core non-GUI functionality runtime library
 libqt4-debug - Qt 4 library debugging symbols
 libqt4-dev - Qt 4 development files
 libqt4-gui - Qt 4 core GUI functionality runtime library
 libqt4-qt3support - Qt 3 compatibility library for Qt 4
 libqt4-sql - Qt 4 SQL database module
 qt4-designer - Qt 4 Designer
 qt4-dev-tools - Qt 4 development tools
 qt4-doc- Qt 4 API documentation
 qt4-qtconfig - Qt 4 configuration tool
Closes: 391726 391902 392173 392558 392797 392808
Changes: 
 qt4-x11 (4.2.0-2) unstable; urgency=low
 .
   * debian/control: added a dependency on libglib2.0-dev for libqt4-dev
 (Closes: #392797, #392173)
 .
   * Added a bunch of plugins and their debugging symbols to be installed
 .
   * debian/patches/19_m68k_inotify_fix.dpatch: new patch to fix FTBFS on
 m68k (Closes: #391902)
 .
   * Imported Ubuntu fixes, thanks to Jonathan Riddell for the tip
 - Fix typo in debian/rules -qt-sql-slite to -qt-sql-sqlite
   (Closes: #392808)
 - Install usr/bin/qdbus usr/bin/qdbusxml2cpp and usr/bin/qdbuscpp2xml
   (Closes: #391726)
 .
   * debian/control: added a libqt4-dev dependency on libsqlite0-dev
 (Closes: #392558)
Files: 
 aed50d7fd94553f4b221ad8ff49f7851 1380 libs optional qt4-x11_4.2.0-2.dsc
 592b84bd8b918914787312227590e02b 20799 libs optional qt4-x11_4.2.0-2.diff.gz
 993d0abe8b8b760467fa37844c1abb59 21242152 doc optional qt4-doc_4.2.0-2_all.deb

Bug#391902: qt4-x11: [m68k] missing inotify defines

2006-10-16 Thread Roman Zippel
Hi,

On Mon, 16 Oct 2006, Brian Nelson wrote:

 To what file should those lines be added?  There isn't a buildd log for
 m68k on buildd.d.o, so I can't see the actual error.

Sorry, I indeed forgot to mention that. m68k is missing in the list at 
src/corelib/io/qfilesystemwatcher_inotify.cpp

bye, Roman


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#391902: qt4-x11: [m68k] missing inotify defines

2006-10-16 Thread Brian Nelson
Roman Zippel [EMAIL PROTECTED] writes:

 Hi,

 Is there any progress here?
 If there is anything I can do to help, please ask, but please don't ignore 
 this bug...
 Thanks.

Sorry, I was just dealing with RC bugs first...

To what file should those lines be added?  There isn't a buildd log for
m68k on buildd.d.o, so I can't see the actual error.

-- 
Captain Logic is not steering this tugboat.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#391902: qt4-x11: [m68k] missing inotify defines

2006-10-15 Thread Roman Zippel
Hi,

Is there any progress here?
If there is anything I can do to help, please ask, but please don't ignore 
this bug...
Thanks.

bye, Roman


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#391902: qt4-x11: [m68k] missing inotify defines

2006-10-09 Thread Roman Zippel
Package: qt4-x11
Severity: important

qt4-x11 currently fails to build as it misses some defines for the
inotify system calls on m68k, adding this should fix the problem:

#elif defined (__mc68000__)
#define __NR_inotify_init   284
#define __NR_inotify_add_watch  285
#define __NR_inotify_rm_watch   286

These defines are taken from the m68k tree, they should appear like this
soon also in the upstream source.

bye, Roman

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: m68k
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.4.30
Locale: LANG=de_DE.UTF-8, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#365861: marked as done ([m68k] qt4-x11 ftbfs)

2006-05-25 Thread Debian Bug Tracking System
Your message dated Thu, 25 May 2006 09:37:27 -0400
with message-id [EMAIL PROTECTED]
and subject line Now builds
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: qt4-x11
Version: 4.1.2-1
Severity: important

qt4-x11 fails to build from source on m68k. Although this is due to an
m68k gcc bug, one workaround is to build with gcc-4.1.

As we discussed recently, it was decided a binNMU built with gcc-4.1
wouldn't hurt anything and would fix an existing problem with 
libXcursor.la.

I'd like to leave this bug open until either qt4-x11 build-deps on
gcc-4.1 for m68k or gcc-4.1 becomes the default compiler for m68k.

Thanks,

Stephen

-- 
Stephen R. Marenka If life's not fun, you're not doing it right!
[EMAIL PROTECTED]


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---

According to the buildd log, 4.1.2-2 built using

Toolchain package versions: libc6-dev_2.3.6-5 
linux-kernel-headers_2.6.13+0rc3-2.1 gcc-4.0_4.0.3-1 g++-4.0_4.0.3-1 
binutils_2.16.1cvs20060117-1 libstdc++6-4.0-dev_4.0.3-1 libstdc++6_4.1.0-1


I guess this can be closed.
---End Message---


Bug#334239: marked as done (koffice_1:1.3.5-5(m68k/unstable):)

2006-05-12 Thread Debian Bug Tracking System
Your message dated Fri, 12 May 2006 20:11:37 -0400
with message-id [EMAIL PROTECTED]
and subject line Seems fixed
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: koffice
Version: 1:1.3.5-5
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of koffice_1:1.3.5-5 on ska by sbuild/m68k 69
 Build started at 20051014-1604

[...]

 ** Using build dependencies supplied by package:
 Build-Depends: g++-3.4 [arm hppa m68k], automake1.7, debhelper (= 4.0.0), 
 flex, kdelibs4-dev (= 4:3.2.0), libaspell-dev, libfontconfig1-dev, 
 libmagick++9-dev, libpaper-dev, libtiff4-dev, libwv2-dev (= 0.1.9-0), 
 libxml2-dev, libxslt1-dev, postgresql-dev, python2.3-dev, sharutils

[...]

  The following central src deps are (probably) missing:
   libtiff3g-dev

[...]

 ../../../karbon/core/vcolor.cc:294: internal compiler error: in 
 verify_initial_elim_offsets, at reload1.c:3297
 Please submit a full bug report,
 with preprocessed source if appropriate.
 See URL:http://gcc.gnu.org/bugs.html for instructions.
 For Debian GNU/Linux specific bug reporting instructions,
 see URL:file:///usr/share/doc/gcc-3.4/README.Bugs.
 make[4]: *** [vcolor.lo] Error 1
 make[4]: Leaving directory 
 `/build/buildd/koffice-1.3.5/obj-m68k-linux-gnu/karbon/core'
 make[3]: *** [all-recursive] Error 1
 make[3]: Leaving directory 
 `/build/buildd/koffice-1.3.5/obj-m68k-linux-gnu/karbon'
 make[2]: *** [all-recursive] Error 1
 make[2]: Leaving directory `/build/buildd/koffice-1.3.5/obj-m68k-linux-gnu'
 make[1]: *** [all] Error 2
 make[1]: Leaving directory `/build/buildd/koffice-1.3.5/obj-m68k-linux-gnu'
 make: *** [build-stamp] Error 2

A full build log can be found at:
http://buildd.debian.org/build.php?arch=m68kpkg=kofficever=1:1.3.5-5

I tried to build the offending file with gcc-4.0, and that succeeded;
if koffice is built with g++-3.4 because it failed previously, you may
want to try reverting that change on your next upload.

---End Message---
---BeginMessage---

Version: 1:1.4.2-6

This appears to be fixed since koffice uses gcc4 on all arches.
---End Message---


Bug#335001: marked as done (FTBFS on arm/hppa/m68k: please use g++-3.4)

2006-05-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 May 2006 13:17:39 +0200
with message-id [EMAIL PROTECTED]
and subject line Fixed in NMU of superkaramba 0.36-2.1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Subject: FTBFS on arm/hppa/m68k with ICE, please use gcc-3.4 there
Package: superkaramba
Version: 0.36-2
Severity: serious

superkaramba suffers from the usual GCC 4.0 ICE on arm, hppa and m68k.
Please use gcc-3.4 on these architectures to work around it.

See http://lists.debian.org/debian-devel/2005/09/msg00020.html
for more information.

Gruesse,
Frank Lichtenheld

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-k7
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.djpig.de/

---End Message---
---BeginMessage---
  ack an old NMU that is no longer relevant anyway
-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


signature.asc
Description: Digital signature
---End Message---


Bug#365861: [m68k] qt4-x11 ftbfs

2006-05-03 Thread Stephen R Marenka
Package: qt4-x11
Version: 4.1.2-1
Severity: important

qt4-x11 fails to build from source on m68k. Although this is due to an
m68k gcc bug, one workaround is to build with gcc-4.1.

As we discussed recently, it was decided a binNMU built with gcc-4.1
wouldn't hurt anything and would fix an existing problem with 
libXcursor.la.

I'd like to leave this bug open until either qt4-x11 build-deps on
gcc-4.1 for m68k or gcc-4.1 becomes the default compiler for m68k.

Thanks,

Stephen

-- 
Stephen R. Marenka If life's not fun, you're not doing it right!
[EMAIL PROTECTED]


signature.asc
Description: Digital signature


Bug#342985: kdemultimedia on m68k

2005-12-20 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Stephen R Marenka wrote:
 On Tue, Dec 20, 2005 at 02:00:11AM +0100, Adeodato Simó wrote:
 
* Stephen R Marenka [Mon, 19 Dec 2005 08:58:48 -0600]:


Sorry, I meant the m68k binaries from 3.4.3-5 built with gcc-4.0.

I don't know what the implications of that might be,

  That if we froze today, or otherwise kdemultimedia did not receive
  more updates, a security update for kdemultimedia would FTBFS. Pretty
  unlikely, sure, but I would have personally preferred that such
  packages had not been uploaded.
 
 
 It seemed preferrable to 4:3.3.2-1, which would be the alternative if 
 there were no more updates.

Note that I meant it wouldn't make any difference for testing migration
of 4:3.4.3-5 as m68k is ignored. So this alternative of 4:3.3.2-1 would
only have count on m68k and only would only be valid till the next
migration anyway. So I actually didn't see a reason for your upload as I
can't imagine many testing m68k users that use kde and can't wait for
3.5 to enter testing (though I could be wrong of course).

Cheers

Luk

- --
Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D
Fingerprint:   D5AF 25FB 316B 53BB 08E7   F999 E544 DE07 9B7C 328D
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDqDQ85UTeB5t8Mo0RArqaAKC9YJlG30mGmvWpboe+u274nF4izQCfRhSK
sgheWyrjGF9bPiLDGLekZdU=
=BfkL
-END PGP SIGNATURE-



Bug#342985: kdemultimedia on m68k

2005-12-19 Thread Stephen R Marenka
On Mon, Dec 19, 2005 at 03:14:32PM +0100, Luk Claes wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Stephen R Marenka wrote:
  I just built kdemultimedia on m68k by removing m68k from GCC4_ICES_HERE.
  
  Would you like me to go ahead an upload it?
 
 No, we are aware of it, but decided to first try to have 3.4.3 in
 testing. We will however upload a 3.5 version to experimental shortly
 which will fix this bug :-)

Sorry, I meant the m68k binaries from 3.4.3-5 built with gcc-4.0. I
don't know what the implications of that might be, but at least m68k
would be in sync. It looks like m68k currently has 4:3.3.2-1.

-- 
Stephen R. Marenka If life's not fun, you're not doing it right!
[EMAIL PROTECTED]


signature.asc
Description: Digital signature


Bug#342985: kdemultimedia on m68k

2005-12-19 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Stephen R Marenka wrote:
 On Mon, Dec 19, 2005 at 03:14:32PM +0100, Luk Claes wrote:
 
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Stephen R Marenka wrote:

I just built kdemultimedia on m68k by removing m68k from GCC4_ICES_HERE.

Would you like me to go ahead an upload it?

No, we are aware of it, but decided to first try to have 3.4.3 in
testing. We will however upload a 3.5 version to experimental shortly
which will fix this bug :-)
 
 
 Sorry, I meant the m68k binaries from 3.4.3-5 built with gcc-4.0. I
 don't know what the implications of that might be, but at least m68k
 would be in sync. It looks like m68k currently has 4:3.3.2-1.

It has no implications, though if we upload a new version that means
extra delays for the testing migration. As we are already working on 3.5
packages for experimental we decided to fix these kind of bugs in that
version...

Cheers

Luk

- --
Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D
Fingerprint:   D5AF 25FB 316B 53BB 08E7   F999 E544 DE07 9B7C 328D
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDpwRx5UTeB5t8Mo0RAkafAKCqH6J57HHyRB40X1WjlPvbIEt68QCfc3WS
S/rRSfMwJW8EwsZ2LHakVvk=
=SZ6z
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



  1   2   >