commit libqt5-qtdoc for openSUSE:Factory
Hello community, here is the log from the commit of package libqt5-qtdoc for openSUSE:Factory checked in at 2018-12-31 09:46:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libqt5-qtdoc (Old) and /work/SRC/openSUSE:Factory/.libqt5-qtdoc.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "libqt5-qtdoc" Mon Dec 31 09:46:15 2018 rev:30 rq:656556 version:5.12.0 Changes: -------- --- /work/SRC/openSUSE:Factory/libqt5-qtdoc/libqt5-qtdoc.changes 2018-10-02 19:45:49.817929138 +0200 +++ /work/SRC/openSUSE:Factory/.libqt5-qtdoc.new.28833/libqt5-qtdoc.changes 2018-12-31 09:46:16.298222329 +0100 @@ -1,0 +2,66 @@ +Thu Dec 6 13:36:34 UTC 2018 - fabian@ritter-vogt.de + +- Update to 5.12.0: + * New feature release + * For more details please see: + * http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.12.0/?h=v5.12.0 + +------------------------------------------------------------------- +Mon Dec 3 08:16:44 UTC 2018 - fabian@ritter-vogt.de + +- Update to 5.12.0-rc2: + * New bugfix release + * Only important bugfixes +- Changelog for Qt 5.12.0: + * http://code.qt.io/cgit/qt/qt.git/plain/dist/changes-5.12.0/?h=5.12.0 + +------------------------------------------------------------------- +Tue Nov 27 15:41:53 UTC 2018 - Fabian Vogt <fabian@ritter-vogt.de> + +- Add patch from libqt5-qtdeclarative: + * qtdeclarative-switch-to-python3.patch + +------------------------------------------------------------------- +Thu Nov 22 13:39:21 UTC 2018 - fabian@ritter-vogt.de + +- Update to 5.12.0-rc: + * New bugfix release + * No changelog available + +------------------------------------------------------------------- +Thu Nov 8 15:25:01 UTC 2018 - fabian@ritter-vogt.de + +- Update to 5.12.0-beta4: + * New bugfix release + * No changelog available + +------------------------------------------------------------------- +Fri Oct 26 07:20:45 UTC 2018 - fabian@ritter-vogt.de + +- Update to 5.12.0-beta3: + * New bugfix release + * No changelog available + +------------------------------------------------------------------- +Wed Oct 17 08:23:21 UTC 2018 - fabian@ritter-vogt.de + +- Update to 5.12.0-beta2: + * New bugfix release + * No changelog available + +------------------------------------------------------------------- +Fri Oct 5 19:22:33 UTC 2018 - fabian@ritter-vogt.de + +- Update to 5.12.0-beta1: + * New bugfix release + * No changelog available + +------------------------------------------------------------------- +Tue Oct 2 07:33:57 UTC 2018 - fabian@ritter-vogt.de + +- Update to 5.12.0-alpha: + * New feature release + * For more details please see: + * http://wiki.qt.io/New_Features_in_Qt_5.12 + +------------------------------------------------------------------- Old: ---- qt-everywhere-src-5.11.2.tar.xz New: ---- qt-everywhere-src-5.12.0.tar.xz qtdeclarative-switch-to-python3.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libqt5-qtdoc.spec ++++++ --- /var/tmp/diff_new_pack.YdAc6m/_old 2018-12-31 09:47:12.074176588 +0100 +++ /var/tmp/diff_new_pack.YdAc6m/_new 2018-12-31 09:47:12.078176585 +0100 @@ -17,18 +17,20 @@ # nodebuginfo -%define real_version 5.11.2 -%define tar_version qt-everywhere-src-5.11.2 +%define real_version 5.12.0 +%define tar_version qt-everywhere-src-5.12.0 Name: libqt5-qtdoc -Version: 5.11.2 +Version: 5.12.0 Release: 0 Summary: Qt 5 API Documentation License: LGPL-2.1-with-Qt-Company-Qt-exception-1.1 or LGPL-3.0-only Group: Documentation/Other URL: https://www.qt.io -Source: https://download.qt.io/official_releases/qt/5.11/%{real_version}/single/%{tar_version}.tar.xz +Source: https://download.qt.io/official_releases/qt/5.12/%{real_version}/single/%{tar_version}.tar.xz # PATCH-FIX-OPENSUSE Patch100: workaround-qdoc-failure.patch +# PATCH-FIX-OPENSUSE +Patch101: qtdeclarative-switch-to-python3.patch BuildRequires: alsa-devel BuildRequires: bison BuildRequires: clang ++++++ qt-everywhere-src-5.11.2.tar.xz -> qt-everywhere-src-5.12.0.tar.xz ++++++ /work/SRC/openSUSE:Factory/libqt5-qtdoc/qt-everywhere-src-5.11.2.tar.xz /work/SRC/openSUSE:Factory/.libqt5-qtdoc.new.28833/qt-everywhere-src-5.12.0.tar.xz differ: char 26, line 1 ++++++ qtdeclarative-switch-to-python3.patch ++++++ Subject: Make qtdeclarative build with python3 From: Max Lin <mlin@suse.com> From: Antonio Larrosa <alarrosa@suse.com> Index: qtdeclarative-everywhere-src-5.12.0-alpha/qtdeclarative/qtdeclarative.pro =================================================================== --- qtdeclarative-everywhere-src-5.12.0-alpha.orig/qtdeclarative/qtdeclarative.pro +++ qtdeclarative-everywhere-src-5.12.0-alpha/qtdeclarative/qtdeclarative.pro @@ -2,7 +2,7 @@ CONFIG += tests_need_tools examples_need load(qt_parts) !python_available { - py_out = $$system('python -c "print(1)"') + py_out = $$system('python3 -c "print(1)"') !equals(py_out, 1): error("Building QtQml requires Python.") tmp = python_available CONFIG += $$tmp Index: qtdeclarative-everywhere-src-5.12.0-alpha/qtdeclarative/src/3rdparty/masm/masm.pri =================================================================== --- qtdeclarative-everywhere-src-5.12.0-alpha.orig/qtdeclarative/src/3rdparty/masm/masm.pri +++ qtdeclarative-everywhere-src-5.12.0-alpha/qtdeclarative/src/3rdparty/masm/masm.pri @@ -58,7 +58,7 @@ contains(DEFINES, WTF_USE_UDIS86=1) { udis86.output = udis86_itab.h udis86.input = ITAB udis86.CONFIG += no_link - udis86.commands = python $$PWD/disassembler/udis86/itab.py ${QMAKE_FILE_IN} + udis86.commands = python3 $$PWD/disassembler/udis86/itab.py ${QMAKE_FILE_IN} QMAKE_EXTRA_COMPILERS += udis86 udis86_tab_cfile.target = $$OUT_PWD/udis86_itab.c @@ -113,7 +113,7 @@ retgen.output = $$GENERATEDDIR/RegExpJit retgen.script = $$PWD/yarr/create_regex_tables retgen.input = retgen.script retgen.CONFIG += no_link -retgen.commands = python $$retgen.script > ${QMAKE_FILE_OUT} +retgen.commands = python3 $$retgen.script > ${QMAKE_FILE_OUT} QMAKE_EXTRA_COMPILERS += retgen # Taken from WebKit/Tools/qmake/mkspecs/features/unix/default_post.prf Index: qtdeclarative-everywhere-src-5.12.0-alpha/qtdeclarative/src/3rdparty/masm/disassembler/udis86/itab.py =================================================================== --- qtdeclarative-everywhere-src-5.12.0-alpha.orig/qtdeclarative/src/3rdparty/masm/disassembler/udis86/itab.py +++ qtdeclarative-everywhere-src-5.12.0-alpha/qtdeclarative/src/3rdparty/masm/disassembler/udis86/itab.py @@ -268,13 +268,13 @@ class UdItabGenerator( ud_opcode.UdOpcod opr = e[ 'operands' ] for i in range(len(opr)): if not (opr[i] in self.OperandDict.keys()): - print "error: invalid operand declaration: %s\n" % opr[i] + print("error: invalid operand declaration: %s\n" % opr[i]) opr_c[i] = "O_" + opr[i] opr = "%s %s %s" % (opr_c[0] + ",", opr_c[1] + ",", opr_c[2]) for p in e['prefixes']: if not ( p in self.PrefixDict.keys() ): - print "error: invalid prefix specification: %s \n" % pfx + print("error: invalid prefix specification: %s \n" % pfx) pfx_c.append( self.PrefixDict[p] ) if len(e['prefixes']) == 0: pfx_c.append( "P_none" ) Index: qtdeclarative-everywhere-src-5.12.0-alpha/qtdeclarative/src/3rdparty/masm/disassembler/udis86/ud_optable.py =================================================================== --- qtdeclarative-everywhere-src-5.12.0-alpha.orig/qtdeclarative/src/3rdparty/masm/disassembler/udis86/ud_optable.py +++ qtdeclarative-everywhere-src-5.12.0-alpha/qtdeclarative/src/3rdparty/masm/disassembler/udis86/ud_optable.py @@ -50,7 +50,7 @@ class UdOptableXmlParser: elif def_node.localName == 'vendor': ven = ( def_node.firstChild.data ); else: - print "warning: invalid node - %s" % def_node.localName + print("warning: invalid node - %s" % def_node.localName) continue return ( pfx, opc, opr, ven ) @@ -65,7 +65,7 @@ class UdOptableXmlParser: if not insnNode.localName: continue if insnNode.localName != "instruction": - print "warning: invalid insn node - %s" % insnNode.localName + print("warning: invalid insn node - %s" % insnNode.localName) continue mnemonic = insnNode.getElementsByTagName( 'mnemonic' )[ 0 ].firstChild.data @@ -84,11 +84,11 @@ class UdOptableXmlParser: def printFn( pfx, mnm, opc, opr, ven ): - print 'def: ', + print('def: ', end='') if len( pfx ): - print ' '.join( pfx ), - print "%s %s %s %s" % \ - ( mnm, ' '.join( opc ), ' '.join( opr ), ven ) + print(' '.join( pfx ), end='') + print("%s %s %s %s" % \ + ( mnm, ' '.join( opc ), ' '.join( opr ), ven )) def parse( xml, callback ):
participants (1)
-
root