Hello community, here is the log from the commit of package ktexteditor for openSUSE:Factory checked in at 2019-03-21 09:48:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ktexteditor (Old) and /work/SRC/openSUSE:Factory/.ktexteditor.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ktexteditor" Thu Mar 21 09:48:18 2019 rev:64 rq:686767 version:5.56.0 Changes: -------- --- /work/SRC/openSUSE:Factory/ktexteditor/ktexteditor.changes 2019-02-28 21:32:07.841758563 +0100 +++ /work/SRC/openSUSE:Factory/.ktexteditor.new.28833/ktexteditor.changes 2019-03-21 09:48:20.534869299 +0100 @@ -1,0 +2,29 @@ +Sun Mar 10 20:15:37 UTC 2019 - [email protected] + +- Update to 5.56.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.56.0.php +- Changes since 5.55.0: + * Remove override keyword + * Use isEmpty here + * Remove deprecated method + * try to improve painting height for text lines - bug 403868 avoid to cut _ + and other parts still broken: double height things like mixed + english/arab, see bug 404713 (kde#403868) + * Use QTextFormat::TextUnderlineStyle instead of QTextFormat::FontUnderline (kde#399278) + * Make it possible to show all spaces in the document (kde#381267, kde#342811) + * Do not print indent lines + * KateSearchBar: Show also search has wrapped hint in nextMatchForSelection() aka Ctrl-H + * katetextbuffer: refactor TextBuffer::save() to better separate code paths + * Use AuthCore instead of Auth + * Remove dead code + * Explicitly link against KAuth + * Refactor KateViewInternal::mouseDoubleClickEvent(QMouseEvent *e) + * Improvements to completion + * Add TODO KF6 note + * Set the color scheme to Printing for Print Preview (kde#391678) +- Refreshed patches: + * 0001-Disable-KAuth-integration.patch + +------------------------------------------------------------------- Old: ---- ktexteditor-5.55.0.tar.xz New: ---- ktexteditor-5.56.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ktexteditor.spec ++++++ --- /var/tmp/diff_new_pack.2ufsMV/_old 2019-03-21 09:48:21.278869097 +0100 +++ /var/tmp/diff_new_pack.2ufsMV/_new 2019-03-21 09:48:21.282869096 +0100 @@ -20,10 +20,10 @@ %{!?_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}')} -%define _tar_path 5.55 +%define _tar_path 5.56 %bcond_without lang Name: ktexteditor -Version: 5.55.0 +Version: 5.56.0 Release: 0 Summary: Embeddable text editor component License: LGPL-2.1-or-later ++++++ 0001-Disable-KAuth-integration.patch ++++++ --- /var/tmp/diff_new_pack.2ufsMV/_old 2019-03-21 09:48:21.294869093 +0100 +++ /var/tmp/diff_new_pack.2ufsMV/_new 2019-03-21 09:48:21.294869093 +0100 @@ -11,17 +11,18 @@ src/buffer/katetextbuffer.cpp | 3 +-- 2 files changed, 1 insertion(+), 10 deletions(-) -Index: ktexteditor-5.49.0git.20180818T165401~3d625891/src/CMakeLists.txt +Index: ktexteditor-5.56.0git.20190222T053445~699d2ec7/src/CMakeLists.txt =================================================================== ---- ktexteditor-5.49.0git.20180818T165401~3d625891.orig/src/CMakeLists.txt -+++ ktexteditor-5.49.0git.20180818T165401~3d625891/src/CMakeLists.txt -@@ -360,13 +360,5 @@ ecm_generate_pri_file(BASE_NAME KTextEdi +--- ktexteditor-5.56.0git.20190222T053445~699d2ec7.orig/src/CMakeLists.txt 2019-02-22 05:34:45.000000000 +0100 ++++ ktexteditor-5.56.0git.20190222T053445~699d2ec7/src/CMakeLists.txt 2019-02-22 07:19:05.973460279 +0100 +@@ -364,14 +364,5 @@ + ecm_generate_pri_file(BASE_NAME KTextEditor LIB_NAME KF5TextEditor DEPS "KParts" FILENAME_VAR PRI_FILENAME INCLUDE_INSTALL_DIR ${KDE_INSTALL_INCLUDEDIR_KF5}/KTextEditor) install(FILES ${PRI_FILENAME} DESTINATION ${ECM_MKSPECS_INSTALL_DIR}) - +- -add_executable(kauth_ktexteditor_helper buffer/katesecuretextbuffer.cpp) -target_link_libraries(kauth_ktexteditor_helper -- KF5::Auth +- KF5::AuthCore -) -install(TARGETS kauth_ktexteditor_helper DESTINATION ${KAUTH_HELPER_INSTALL_DIR} ) -kauth_install_helper_files(kauth_ktexteditor_helper org.kde.ktexteditor.katetextbuffer root) @@ -29,16 +30,16 @@ - # add part add_subdirectory(part) -Index: ktexteditor-5.49.0git.20180818T165401~3d625891/src/buffer/katetextbuffer.cpp +Index: ktexteditor-5.56.0git.20190222T053445~699d2ec7/src/buffer/katetextbuffer.cpp =================================================================== ---- ktexteditor-5.49.0git.20180818T165401~3d625891.orig/src/buffer/katetextbuffer.cpp -+++ ktexteditor-5.49.0git.20180818T165401~3d625891/src/buffer/katetextbuffer.cpp -@@ -781,7 +781,7 @@ bool TextBuffer::save(const QString &fil - uint ownerId = -2; - uint groupId = -2; - QScopedPointer<QIODevice> temporaryBuffer; -- if (m_alwaysUseKAuthForSave || !saveFile->open(QIODevice::WriteOnly)) { -+ if (0 && m_alwaysUseKAuthForSave || !saveFile->open(QIODevice::WriteOnly)) { - /** - * Memorize owner and group. - */ +--- ktexteditor-5.56.0git.20190222T053445~699d2ec7.orig/src/buffer/katetextbuffer.cpp 2019-02-22 07:19:05.973460279 +0100 ++++ ktexteditor-5.56.0git.20190222T053445~699d2ec7/src/buffer/katetextbuffer.cpp 2019-02-22 07:22:36.151646704 +0100 +@@ -870,7 +870,7 @@ + + TextBuffer::SaveResult TextBuffer::saveBufferUnprivileged(const QString &filename) + { +- if (m_alwaysUseKAuthForSave) { ++ if (0 && m_alwaysUseKAuthForSave) { + // unit-testing mode, simulate we need privileges + return SaveResult::MissingPermissions; + } ++++++ ktexteditor-5.55.0.tar.xz -> ktexteditor-5.56.0.tar.xz ++++++ ++++ 59508 lines of diff (skipped)
