Hello community, here is the log from the commit of package kdoctools for openSUSE:Factory checked in at 2018-08-24 16:52:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdoctools (Old) and /work/SRC/openSUSE:Factory/.kdoctools.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdoctools" Fri Aug 24 16:52:53 2018 rev:58 rq:630604 version:5.49.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kdoctools/kdoctools.changes 2018-07-21 10:12:30.227138850 +0200 +++ /work/SRC/openSUSE:Factory/.kdoctools.new/kdoctools.changes 2018-08-24 16:52:55.537278014 +0200 @@ -1,0 +2,10 @@ +Sun Aug 19 09:19:02 UTC 2018 - [email protected] + +- Update to 5.49.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.49.0.php +- Changes since 5.48.0: + * Honor BUILD_TESTING + +------------------------------------------------------------------- Old: ---- kdoctools-5.48.0.tar.xz New: ---- kdoctools-5.49.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdoctools.spec ++++++ --- /var/tmp/diff_new_pack.rSokpw/_old 2018-08-24 16:52:55.969278523 +0200 +++ /var/tmp/diff_new_pack.rSokpw/_new 2018-08-24 16:52:55.973278528 +0200 @@ -16,20 +16,20 @@ # -%bcond_without lang %define lname libKF5DocTools5 -%define _tar_path 5.48 +%define _tar_path 5.49 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} +%bcond_without lang Name: kdoctools -Version: 5.48.0 +Version: 5.49.0 Release: 0 Summary: Create documentation from DocBook License: LGPL-2.1-or-later AND MIT Group: System/GUI/KDE -Url: http://www.kde.org +URL: http://www.kde.org Source: http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz Source1: baselibs.conf # PATCH-FEATURE-OPENSUSE @@ -46,27 +46,26 @@ BuildRequires: libxslt-devel BuildRequires: perl-URI BuildRequires: cmake(Qt5Core) >= 5.6.0 -Recommends: %{name}-lang # The XSL templates reference files in here Requires: docbook-xsl-stylesheets -BuildRoot: %{_tmppath}/%{name}-%{version}-build +Recommends: %{name}-lang %description Provides tools to generate documentation in various format from DocBook files. -%package -n %lname +%package -n %{lname} Summary: Create documentation from DocBook Group: System/Libraries -Recommends: %{name} = %{version} %requires_ge libQt5Core5 +Recommends: %{name} = %{version} -%description -n %lname +%description -n %{lname} Provides tools to generate documentation in various format from DocBook files. %package devel Summary: Create documentation from DocBook Group: Development/Libraries/KDE -Requires: %lname = %{version} +Requires: %{lname} = %{version} Requires: %{name} = %{version} Requires: docbook-xsl-stylesheets Requires: extra-cmake-modules >= 1.8.0 @@ -83,6 +82,7 @@ %patch1 -p1 %lang_package + %build %cmake_kf5 -d build %make_jobs @@ -95,17 +95,16 @@ %find_lang %{name} --with-man --all-name %endif -%post -n %lname -p /sbin/ldconfig - -%postun -n %lname -p /sbin/ldconfig +%post -n %{lname} -p /sbin/ldconfig +%postun -n %{lname} -p /sbin/ldconfig %if %{with lang} %files lang -f %{name}.lang %endif %files -%defattr(-,root,root) -%doc COPYING* README* LICENSE +%license COPYING* LICENSE +%doc README* %{_kf5_htmldir}/*/ %{_kf5_datadir}/kdoctools/ %{_kf5_bindir}/meinproc5 @@ -115,13 +114,12 @@ %doc %lang(en) %{_kf5_mandir}/*/kf5options.* %doc %lang(en) %{_kf5_mandir}/*/qt5options.* -%files -n %lname -%defattr(-,root,root) -%doc COPYING* README* +%files -n %{lname} +%license COPYING* +%doc README* %{_kf5_libdir}/libKF5DocTools.so.* %files devel -%defattr(-,root,root) %{_kf5_libdir}/cmake/KF5DocTools/ %dir %{_kf5_includedir}/*/ %{_kf5_includedir}/*/ ++++++ kdoctools-5.48.0.tar.xz -> kdoctools-5.49.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdoctools-5.48.0/CMakeLists.txt new/kdoctools-5.49.0/CMakeLists.txt --- old/kdoctools-5.48.0/CMakeLists.txt 2018-07-08 00:30:35.000000000 +0200 +++ new/kdoctools-5.49.0/CMakeLists.txt 2018-08-04 12:57:56.000000000 +0200 @@ -1,12 +1,12 @@ cmake_minimum_required(VERSION 3.0) -set(KF5_VERSION "5.48.0") # handled by release scripts -set(KF5_DEP_VERSION "5.48.0") # handled by release scripts +set(KF5_VERSION "5.49.0") # handled by release scripts +set(KF5_DEP_VERSION "5.49.0") # handled by release scripts project(KDocTools VERSION ${KF5_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.48.0 NO_MODULE) +find_package(ECM 5.49.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://projects.kde.org/projects/kdesupport/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) @@ -98,7 +98,9 @@ add_subdirectory(common) add_subdirectory(docs) add_subdirectory(src) -add_subdirectory(autotests) +if (BUILD_TESTING) + add_subdirectory(autotests) +endif() install(EXPORT KF5DocToolsTargets DESTINATION "${CMAKECONFIG_INSTALL_DIR}" FILE KF5DocToolsTargets.cmake NAMESPACE KF5:: ) configure_package_config_file( diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdoctools-5.48.0/po/ca/docs/qt5options/man-qt5options.7.docbook new/kdoctools-5.49.0/po/ca/docs/qt5options/man-qt5options.7.docbook --- old/kdoctools-5.48.0/po/ca/docs/qt5options/man-qt5options.7.docbook 2018-07-08 00:30:35.000000000 +0200 +++ new/kdoctools-5.49.0/po/ca/docs/qt5options/man-qt5options.7.docbook 2018-08-04 12:57:56.000000000 +0200 @@ -77,7 +77,7 @@ ><option >-platform</option > <replaceable ->nom_platforma[:opcions]</replaceable +>nom_plataforma[:opcions]</replaceable ></arg > <arg choice="opt" ><option @@ -382,7 +382,7 @@ > </term> <listitem ><para ->Només està disponible per a les platformes de Windows. XP utilitza diàlegs nadius a l'estil XP i cap (none) els desactiva.</para +>Només està disponible per a les plataformes de Windows. XP utilitza diàlegs nadius a l'estil XP i cap (none) els desactiva.</para ></listitem> </varlistentry> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdoctools-5.48.0/po/da/kdoctools5.po new/kdoctools-5.49.0/po/da/kdoctools5.po --- old/kdoctools-5.48.0/po/da/kdoctools5.po 2018-07-08 00:30:35.000000000 +0200 +++ new/kdoctools-5.49.0/po/da/kdoctools5.po 2018-08-04 12:57:56.000000000 +0200 @@ -11,7 +11,7 @@ "POT-Creation-Date: 2017-03-04 03:56+0100\n" "PO-Revision-Date: 2008-02-13 19:23+0100\n" "Last-Translator: Martin Schlander <[email protected]>\n" -"Language-Team: <[email protected]>\n" +"Language-Team: Danish <[email protected]>\n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdoctools-5.48.0/po/uk/kdoctools5.po new/kdoctools-5.49.0/po/uk/kdoctools5.po --- old/kdoctools-5.48.0/po/uk/kdoctools5.po 2018-07-08 00:30:35.000000000 +0200 +++ new/kdoctools-5.49.0/po/uk/kdoctools5.po 2018-08-04 12:57:56.000000000 +0200 @@ -1,5 +1,5 @@ # Translation of kdoctools5.po to Ukrainian -# Copyright (C) 2014 This_file_is_part_of_KDE +# Copyright (C) 2018 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdoctools-5.48.0/po/zh_CN/kdoctools5.po new/kdoctools-5.49.0/po/zh_CN/kdoctools5.po --- old/kdoctools-5.48.0/po/zh_CN/kdoctools5.po 2018-07-08 00:30:35.000000000 +0200 +++ new/kdoctools-5.49.0/po/zh_CN/kdoctools5.po 2018-08-04 12:57:56.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2017-03-04 03:56+0100\n" -"PO-Revision-Date: 2018-07-03 17:35\n" +"PO-Revision-Date: 2018-07-24 08:41\n" "Last-Translator: guoyunhebrave <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n"
