Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kcodecs for openSUSE:Factory checked in at 2021-06-16 20:33:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kcodecs (Old) and /work/SRC/openSUSE:Factory/.kcodecs.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kcodecs" Wed Jun 16 20:33:42 2021 rev:92 rq:899715 version:5.83.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kcodecs/kcodecs.changes 2021-05-10 15:36:48.274173853 +0200 +++ /work/SRC/openSUSE:Factory/.kcodecs.new.32437/kcodecs.changes 2021-06-16 20:35:07.387149074 +0200 @@ -1,0 +2,11 @@ +Sat Jun 5 11:58:33 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 5.83.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.83.0 +- Changes since 5.82.0: + * Bump required CMake version to 3.16 + * Fix cmake warning + +------------------------------------------------------------------- Old: ---- kcodecs-5.82.0.tar.xz kcodecs-5.82.0.tar.xz.sig New: ---- kcodecs-5.83.0.tar.xz kcodecs-5.83.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kcodecs.spec ++++++ --- /var/tmp/diff_new_pack.FZrDNr/_old 2021-06-16 20:35:08.527151020 +0200 +++ /var/tmp/diff_new_pack.FZrDNr/_new 2021-06-16 20:35:08.527151020 +0200 @@ -17,14 +17,14 @@ %define lname libKF5Codecs5 -%define _tar_path 5.82 +%define _tar_path 5.83 # 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: kcodecs -Version: 5.82.0 +Version: 5.83.0 Release: 0 Summary: Method collection to manipulate strings using various encodings License: LGPL-2.1-or-later ++++++ kcodecs-5.82.0.tar.xz -> kcodecs-5.83.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcodecs-5.82.0/.gitignore new/kcodecs-5.83.0/.gitignore --- old/kcodecs-5.82.0/.gitignore 2021-05-01 14:29:49.000000000 +0200 +++ new/kcodecs-5.83.0/.gitignore 2021-06-05 11:13:45.000000000 +0200 @@ -25,3 +25,4 @@ .clangd .idea /cmake-build* +.cache diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcodecs-5.82.0/CMakeLists.txt new/kcodecs-5.83.0/CMakeLists.txt --- old/kcodecs-5.82.0/CMakeLists.txt 2021-05-01 14:29:49.000000000 +0200 +++ new/kcodecs-5.83.0/CMakeLists.txt 2021-06-05 11:13:45.000000000 +0200 @@ -1,10 +1,10 @@ -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.82.0") # handled by release scripts +set(KF_VERSION "5.83.0") # handled by release scripts project(KCodecs VERSION ${KF_VERSION}) include(FeatureSummary) -find_package(ECM 5.82.0 NO_MODULE) +find_package(ECM 5.83.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) @@ -42,7 +42,6 @@ ecm_install_po_files_as_qm(po) add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f00) -add_definitions(-DQT_NO_FOREACH) add_subdirectory(src) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcodecs-5.82.0/autotests/CMakeLists.txt new/kcodecs-5.83.0/autotests/CMakeLists.txt --- old/kcodecs-5.82.0/autotests/CMakeLists.txt 2021-05-01 14:29:49.000000000 +0200 +++ new/kcodecs-5.83.0/autotests/CMakeLists.txt 2021-06-05 11:13:45.000000000 +0200 @@ -10,7 +10,7 @@ ecm_add_tests( kcharsetstest.cpp kencodingprobertest.cpp - rfc2047test + rfc2047test.cpp codectest.cpp kemailaddresstest.cpp LINK_LIBRARIES KF5::Codecs Qt5::Test diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcodecs-5.82.0/po/zh_CN/kcodecs5_qt.po new/kcodecs-5.83.0/po/zh_CN/kcodecs5_qt.po --- old/kcodecs-5.82.0/po/zh_CN/kcodecs5_qt.po 2021-05-01 14:29:49.000000000 +0200 +++ new/kcodecs-5.83.0/po/zh_CN/kcodecs5_qt.po 2021-06-05 11:13:45.000000000 +0200 @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" -"PO-Revision-Date: 2021-04-24 15:42\n" +"PO-Revision-Date: 2021-06-03 16:05\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcodecs-5.82.0/src/CMakeLists.txt new/kcodecs-5.83.0/src/CMakeLists.txt --- old/kcodecs-5.82.0/src/CMakeLists.txt 2021-05-01 14:29:49.000000000 +0200 +++ new/kcodecs-5.83.0/src/CMakeLists.txt 2021-06-05 11:13:45.000000000 +0200 @@ -1,7 +1,12 @@ +add_library(KF5Codecs) +add_library(KF5::Codecs ALIAS KF5Codecs) + +ecm_create_qm_loader(KF5Codecs kcodecs5_qt) -ecm_create_qm_loader(kcodecs_QM_LOADER kcodecs5_qt) +ecm_gperf_generate(kentities.gperf ${CMAKE_CURRENT_BINARY_DIR}/kentities.h KF5Codecs + GENERATION_FLAGS "--key-positions=* -D -s 2") -set(kcodecs_SRCS +target_sources(KF5Codecs PRIVATE kcharsets.cpp kcodecs.cpp kcodecsbase64.cpp @@ -36,14 +41,9 @@ probers/nsSBCharSetProber.cpp probers/nsSJISProber.cpp probers/nsUniversalDetector.cpp - ${kcodecs_QM_LOADER} ) -ecm_gperf_generate(kentities.gperf ${CMAKE_CURRENT_BINARY_DIR}/kentities.h kcodecs_SRCS - GENERATION_FLAGS "--key-positions=* -D -s 2") - -set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/kentities.h PROPERTIES SKIP_AUTOMOC ON) -ecm_qt_declare_logging_category(kcodecs_SRCS +ecm_qt_declare_logging_category(KF5Codecs HEADER kcodecs_debug.h IDENTIFIER KCODECS_LOG CATEGORY_NAME kf.codecs @@ -52,8 +52,6 @@ EXPORT KCODECS ) -add_library(KF5Codecs ${kcodecs_SRCS}) -add_library(KF5::Codecs ALIAS KF5Codecs) ecm_generate_export_header(KF5Codecs BASE_NAME KCodecs GROUP_BASE_NAME KF @@ -67,7 +65,7 @@ target_link_libraries(KF5Codecs PUBLIC Qt5::Core) -set_target_properties(KF5Codecs PROPERTIES VERSION ${KCODECS_VERSION_STRING} +set_target_properties(KF5Codecs PROPERTIES VERSION ${KCODECS_VERSION} SOVERSION ${KCODECS_SOVERSION} EXPORT_NAME Codecs ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcodecs-5.82.0/src/kcodecs.h new/kcodecs-5.83.0/src/kcodecs.h --- old/kcodecs-5.82.0/src/kcodecs.h 2021-05-01 14:29:49.000000000 +0200 +++ new/kcodecs-5.83.0/src/kcodecs.h 2021-06-05 11:13:45.000000000 +0200 @@ -137,8 +137,9 @@ * @return uuencoded string. * @deprecated Not implemented, always returns an empty bytearray. */ +KCODECS_EXPORT KCODECS_DEPRECATED_VERSION(5, 56, "Not implemented") -KCODECS_EXPORT QByteArray uuencode(const QByteArray &in); +QByteArray uuencode(const QByteArray &in); #endif #if KCODECS_ENABLE_DEPRECATED_SINCE(5, 56) @@ -158,8 +159,9 @@ * @param out an empty byte array * @deprecated Not implemented, always set @p out to an empty bytearray. */ +KCODECS_EXPORT KCODECS_DEPRECATED_VERSION(5, 56, "Not implemented") -KCODECS_EXPORT void uuencode(const QByteArray &in, QByteArray &out); +void uuencode(const QByteArray &in, QByteArray &out); #endif /** @@ -217,8 +219,9 @@ * KCodecs::base64Encode(QByteArray) * @deprecated Since 5.5, use KCodecs::base64Encode(QByteArray) instead. */ +KCODECS_EXPORT KCODECS_DEPRECATED_VERSION(5, 5, "Use QByteArray base64Encode(const QByteArray &)") -KCODECS_EXPORT QByteArray base64Encode(const QByteArray &in, bool insertLFs); +QByteArray base64Encode(const QByteArray &in, bool insertLFs); #endif /**
