Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package scite for openSUSE:Factory checked in at 2023-04-16 16:07:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/scite (Old) and /work/SRC/openSUSE:Factory/.scite.new.19717 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "scite" Sun Apr 16 16:07:03 2023 rev:43 rq:1079604 version:5.3.5 Changes: -------- --- /work/SRC/openSUSE:Factory/scite/scite.changes 2023-02-15 13:41:27.359076007 +0100 +++ /work/SRC/openSUSE:Factory/.scite.new.19717/scite.changes 2023-04-16 16:07:10.468851270 +0200 @@ -1,0 +2,8 @@ +Sat Apr 15 14:32:13 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Update to version 5.3.5: + * C++: Fix failure to recognize keywords containing upper case. + * GDScript: Support % and $ node paths. +- Add scite-fix-missing-include.patch: Add missing includes. + +------------------------------------------------------------------- Old: ---- scite533.tgz New: ---- scite-fix-missing-include.patch scite535.tgz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ scite.spec ++++++ --- /var/tmp/diff_new_pack.DMeRhO/_old 2023-04-16 16:07:11.352856366 +0200 +++ /var/tmp/diff_new_pack.DMeRhO/_new 2023-04-16 16:07:11.356856388 +0200 @@ -17,10 +17,10 @@ # -%define tar_ver 533 +%define tar_ver 535 Name: scite -Version: 5.3.3 +Version: 5.3.5 Release: 0 Summary: Source Code Editor based on Scintilla License: MIT @@ -28,6 +28,9 @@ Source0: http://download.sourceforge.net/scintilla/%{name}%{tar_ver}.tgz # PATCH-FEATURE-OPENSUSE scite-use-system-scintilla.patch badshah...@gmail.com -- Compile against system scintilla library Patch0: scite-use-system-scintilla.patch +# PATCH-FIX-UPSTREAM scite-fix-missing-include.patch -- Fix missing include +Patch1: scite-fix-missing-include.patch + BuildRequires: gcc-c++ BuildRequires: pkgconfig BuildRequires: libscintilla-devel >= 5.3.0 ++++++ scite-fix-missing-include.patch ++++++ Index: scite-5.3.5/scintilla/include/Scintilla.h =================================================================== --- scite-5.3.5.orig/scintilla/include/Scintilla.h +++ scite-5.3.5/scintilla/include/Scintilla.h @@ -27,6 +27,7 @@ int Scintilla_ReleaseResources(void); // Include header that defines basic numeric types. #include <stdint.h> +#include <cstdint> // Define uptr_t, an unsigned integer type large enough to hold a pointer. typedef uintptr_t uptr_t; Index: scite-5.3.5/scintilla/include/ScintillaCall.h =================================================================== --- scite-5.3.5.orig/scintilla/include/ScintillaCall.h +++ scite-5.3.5/scintilla/include/ScintillaCall.h @@ -8,6 +8,8 @@ /* Most of this file is automatically generated from the Scintilla.iface interface definition * file which contains any comments about the definitions. APIFacer.py does the generation. */ +#include <cstdint> + #ifndef SCINTILLACALL_H #define SCINTILLACALL_H Index: scite-5.3.5/scintilla/include/ScintillaTypes.h =================================================================== --- scite-5.3.5.orig/scintilla/include/ScintillaTypes.h +++ scite-5.3.5/scintilla/include/ScintillaTypes.h @@ -8,6 +8,8 @@ /* Most of this file is automatically generated from the Scintilla.iface interface definition * file which contains any comments about the definitions. ScintillaAPIFacer.py does the generation. */ +#include <cstdint> + #ifndef SCINTILLATYPES_H #define SCINTILLATYPES_H Index: scite-5.3.5/scite/src/Extender.h =================================================================== --- scite-5.3.5.orig/scite/src/Extender.h +++ scite-5.3.5/scite/src/Extender.h @@ -7,6 +7,7 @@ #ifndef EXTENDER_H #define EXTENDER_H +#include <cstdint> class StyleWriter; Index: scite-5.3.5/scite/src/SciTEProps.cxx =================================================================== --- scite-5.3.5.orig/scite/src/SciTEProps.cxx +++ scite-5.3.5/scite/src/SciTEProps.cxx @@ -68,6 +68,7 @@ const GUI::gui_char menuAccessIndicator[ #include "Searcher.h" #include "SciTEBase.h" #include "IFaceTable.h" +#include <stdexcept> void SciTEBase::SetImportMenu() { for (int i = 0; i < importMax; i++) { Index: scite-5.3.5/scite/src/SciTEBase.cxx =================================================================== --- scite-5.3.5.orig/scite/src/SciTEBase.cxx +++ scite-5.3.5/scite/src/SciTEBase.cxx @@ -18,6 +18,7 @@ #include <tuple> #include <string> #include <string_view> +#include <iostream> #include <vector> #include <map> #include <set> ++++++ scite533.tgz -> scite535.tgz ++++++ ++++ 8549 lines of diff (skipped)