Hello community, here is the log from the commit of package poxml for openSUSE:Factory checked in at 2020-04-29 20:50:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/poxml (Old) and /work/SRC/openSUSE:Factory/.poxml.new.2738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "poxml" Wed Apr 29 20:50:58 2020 rev:86 rq:797055 version:20.04.0 Changes: -------- --- /work/SRC/openSUSE:Factory/poxml/poxml.changes 2020-03-12 23:10:05.147271330 +0100 +++ /work/SRC/openSUSE:Factory/.poxml.new.2738/poxml.changes 2020-04-29 20:52:51.317062871 +0200 @@ -1,0 +2,30 @@ +Thu Apr 23 12:23:18 UTC 2020 - Luca Beltrame <lbeltr...@kde.org> + +- Update to 20.04.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/releases/2020-04-apps-update +- No code change since 20.03.90 + +------------------------------------------------------------------- +Sun Apr 5 20:30:47 UTC 2020 - Luca Beltrame <lbeltr...@kde.org> + +- Update to 20.03.90 + * New feature release + * For more details please see: + * https://kde.org/announcements/releases/20.04-rc +- No code change since 20.03.80 + +------------------------------------------------------------------- +Sun Mar 22 09:17:44 UTC 2020 - Luca Beltrame <lbeltr...@kde.org> + +- Update to 20.03.80 + * New feature release + * For more details please see: + * https://kde.org/announcements/releases/20.04-beta +- Changes since 19.12.3: + * Fix minor EBN issue + * Fix feature address according to https://doc.qt.io/qt-5/qxmlsimplereader.html#setFeature + * Use URL with transport encryption + +------------------------------------------------------------------- Old: ---- poxml-19.12.3.tar.xz poxml-19.12.3.tar.xz.sig New: ---- poxml-20.04.0.tar.xz poxml-20.04.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ poxml.spec ++++++ --- /var/tmp/diff_new_pack.lu3q07/_old 2020-04-29 20:52:53.197067178 +0200 +++ /var/tmp/diff_new_pack.lu3q07/_new 2020-04-29 20:52:53.201067187 +0200 @@ -1,7 +1,7 @@ # # spec file for package poxml # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -21,17 +21,13 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: poxml -Version: 19.12.3 +Version: 20.04.0 Release: 0 Summary: Tools for translating DocBook XML files with Gettext License: GPL-2.0-only AND GFDL-1.2-only Group: System/GUI/KDE URL: https://www.kde.org/ Source: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz -%if %{with lang} -Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig -Source2: applications.keyring -%endif BuildRequires: antlr BuildRequires: antlr-devel BuildRequires: extra-cmake-modules @@ -39,6 +35,10 @@ BuildRequires: cmake(KF5DocTools) BuildRequires: cmake(Qt5Core) BuildRequires: cmake(Qt5Xml) +%if %{with lang} +Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig +Source2: applications.keyring +%endif %description This is a collection of tools that facilitate translating DocBook XML ++++++ poxml-19.12.3.tar.xz -> poxml-20.04.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/poxml-19.12.3/CMakeLists.txt new/poxml-20.04.0/CMakeLists.txt --- old/poxml-19.12.3/CMakeLists.txt 2020-03-03 01:26:22.000000000 +0100 +++ new/poxml-20.04.0/CMakeLists.txt 2020-04-17 02:35:13.000000000 +0200 @@ -15,7 +15,7 @@ find_package(GettextPO REQUIRED) set_package_properties("gettext-po" PROPERTIES DESCRIPTION "A library for processing PO files" - URL "http://www.gnu.org/software/gettext" + URL "https://www.gnu.org/software/gettext" TYPE REQUIRED PURPOSE "Required to build the poxml tools.") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/poxml-19.12.3/parser.cpp new/poxml-20.04.0/parser.cpp --- old/poxml-19.12.3/parser.cpp 2019-10-24 14:10:30.000000000 +0200 +++ new/poxml-20.04.0/parser.cpp 2020-01-10 17:57:12.000000000 +0100 @@ -872,7 +872,7 @@ const int start = index; index = contents.indexOf( delim, index + rx.matchedLength() ); index = contents.indexOf( '>', index ); - if ( !name.startsWith( "i18n-" ) ) + if ( !name.startsWith( QLatin1String("i18n-") ) ) continue; const QString entity = contents.mid( start, index - start + 1 ); MsgBlock block; @@ -922,7 +922,7 @@ QTextStream ts(contents.toUtf8(), QIODevice::ReadOnly); QXmlInputSource source( ts.device() ); QXmlSimpleReader reader; - reader.setFeature( "http://trolltech.com/xml/features/report-start-end-entity", true); + reader.setFeature( "http://qt-project.org/xml/features/report-start-end-entity", true); reader.setContentHandler( &handler ); reader.setLexicalHandler( &handler ); reader.setDTDHandler( &handler );