Hello community, here is the log from the commit of package utfcpp for openSUSE:Factory checked in at 2020-12-12 20:30:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/utfcpp (Old) and /work/SRC/openSUSE:Factory/.utfcpp.new.2328 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "utfcpp" Sat Dec 12 20:30:18 2020 rev:4 rq:851290 version:3.1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/utfcpp/utfcpp.changes 2020-09-17 15:05:52.104768526 +0200 +++ /work/SRC/openSUSE:Factory/.utfcpp.new.2328/utfcpp.changes 2020-12-12 20:32:47.965879277 +0100 @@ -1,0 +2,6 @@ +Thu Nov 26 18:56:16 UTC 2020 - Dirk Mueller <dmuel...@suse.com> + +- update to 3.1.2: + * compilation fixes + +------------------------------------------------------------------- Old: ---- utfcpp-3.1.1.tar.gz New: ---- utfcpp-3.1.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ utfcpp.spec ++++++ --- /var/tmp/diff_new_pack.pIbNUJ/_old 2020-12-12 20:32:48.569879907 +0100 +++ /var/tmp/diff_new_pack.pIbNUJ/_new 2020-12-12 20:32:48.573879911 +0100 @@ -17,7 +17,7 @@ Name: utfcpp -Version: 3.1.1 +Version: 3.1.2 Release: 0 Summary: A library for handling UTF-8 encoded strings License: BSL-1.0 ++++++ utfcpp-3.1.1.tar.gz -> utfcpp-3.1.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/utfcpp-3.1.1/CMakeLists.txt new/utfcpp-3.1.2/CMakeLists.txt --- old/utfcpp-3.1.1/CMakeLists.txt 2020-03-15 18:32:45.000000000 +0100 +++ new/utfcpp-3.1.2/CMakeLists.txt 2020-09-27 20:26:57.000000000 +0200 @@ -1,5 +1,5 @@ cmake_minimum_required (VERSION 3.0.2) -project (utf8cpp VERSION 3.1 LANGUAGES CXX) +project (utf8cpp VERSION 3.1.2 LANGUAGES CXX) if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR) set(IS_ROOT_PROJECT ON) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/utfcpp-3.1.1/source/utf8/checked.h new/utfcpp-3.1.2/source/utf8/checked.h --- old/utfcpp-3.1.1/source/utf8/checked.h 2020-03-15 18:32:45.000000000 +0100 +++ new/utfcpp-3.1.2/source/utf8/checked.h 2020-09-27 20:26:57.000000000 +0200 @@ -42,7 +42,7 @@ uint32_t cp; public: invalid_code_point(uint32_t codepoint) : cp(codepoint) {} - virtual const char* what() const NOEXCEPT OVERRIDE { return "Invalid code point"; } + virtual const char* what() const UTF_CPP_NOEXCEPT UTF_CPP_OVERRIDE { return "Invalid code point"; } uint32_t code_point() const {return cp;} }; @@ -50,7 +50,7 @@ uint8_t u8; public: invalid_utf8 (uint8_t u) : u8(u) {} - virtual const char* what() const NOEXCEPT OVERRIDE { return "Invalid UTF-8"; } + virtual const char* what() const UTF_CPP_NOEXCEPT UTF_CPP_OVERRIDE { return "Invalid UTF-8"; } uint8_t utf8_octet() const {return u8;} }; @@ -58,13 +58,13 @@ uint16_t u16; public: invalid_utf16 (uint16_t u) : u16(u) {} - virtual const char* what() const NOEXCEPT OVERRIDE { return "Invalid UTF-16"; } + virtual const char* what() const UTF_CPP_NOEXCEPT UTF_CPP_OVERRIDE { return "Invalid UTF-16"; } uint16_t utf16_word() const {return u16;} }; class not_enough_room : public exception { public: - virtual const char* what() const NOEXCEPT OVERRIDE { return "Not enough space"; } + virtual const char* what() const UTF_CPP_NOEXCEPT UTF_CPP_OVERRIDE { return "Not enough space"; } }; /// The library API - functions intended to be called by the users diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/utfcpp-3.1.1/source/utf8/core.h new/utfcpp-3.1.2/source/utf8/core.h --- old/utfcpp-3.1.1/source/utf8/core.h 2020-03-15 18:32:45.000000000 +0100 +++ new/utfcpp-3.1.2/source/utf8/core.h 2020-09-27 20:26:57.000000000 +0200 @@ -39,11 +39,11 @@ #endif #if UTF_CPP_CPLUSPLUS >= 201103L // C++ 11 or later - #define OVERRIDE override - #define NOEXCEPT noexcept + #define UTF_CPP_OVERRIDE override + #define UTF_CPP_NOEXCEPT noexcept #else // C++ 98/03 - #define OVERRIDE - #define NOEXCEPT throw() + #define UTF_CPP_OVERRIDE + #define UTF_CPP_NOEXCEPT throw() #endif // C++ 11 or later _______________________________________________ openSUSE Commits mailing list -- commit@lists.opensuse.org To unsubscribe, email commit-le...@lists.opensuse.org List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette List Archives: https://lists.opensuse.org/archives/list/commit@lists.opensuse.org