Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package scite for openSUSE:Factory checked 
in at 2022-02-23 16:26:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/scite (Old)
 and      /work/SRC/openSUSE:Factory/.scite.new.1958 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "scite"

Wed Feb 23 16:26:09 2022 rev:35 rq:956999 version:5.2.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/scite/scite.changes      2021-12-29 
21:11:19.338303563 +0100
+++ /work/SRC/openSUSE:Factory/.scite.new.1958/scite.changes    2022-02-23 
16:26:58.279509949 +0100
@@ -1,0 +2,33 @@
+Thu Feb 17 10:44:41 UTC 2022 - Atri Bhattacharya <[email protected]>
+
+- Revert to defining tar_ver macro literally to allow source
+  validators and other services to work with the source URL.
+
+-------------------------------------------------------------------
+Mon Feb 14 21:15:45 UTC 2022 - Atri Bhattacharya <[email protected]>
+
+- Update to version 5.2.0:
+  * Fix bug where autocomplete did not display for last character
+    of the document. Bug #2307.
+  * Fix Export as HTML default style when export.html.wysiwyg=0.
+    Bug #2311.
+  * Lexilla 5.1.5:
+    - Bash: Treat \r\n line ends the same as \n. This makes
+      testing easier. Issue #57.
+    - Batch: Recognise "::" comments when second command on line.
+      Bug #2304.
+    - F#: Recognise format specifiers in interpolated strings and
+      %B for binary. Issue #46.
+    - F#: More accurate line-based folding. Issue #56.
+    - HTML: Fix folding inside script blocks. Issue #47, Issue
+      #53.
+    - Inno Setup: Fix multiline comments in code. Issue #44.
+    - Python: Add attribute style with properties
+      lexer.python.identifier.attributes and
+      lexer.python.decorator.attributes. Pull request #49.
+    - Allow choice of object file directory with makefile by
+      setting DIR_O. Issue #50.
+- Rebase scite-use-system-scintilla.patch to apply without fuzz.
+- Bump scintilla required version to 5.2.0.
+
+-------------------------------------------------------------------

Old:
----
  scite516.tgz

New:
----
  scite520.tgz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ scite.spec ++++++
--- /var/tmp/diff_new_pack.mwgehr/_old  2022-02-23 16:26:58.939509973 +0100
+++ /var/tmp/diff_new_pack.mwgehr/_new  2022-02-23 16:26:58.943509972 +0100
@@ -17,10 +17,10 @@
 #
 
 
-%define tar_ver 516
+%define tar_ver 520
 
 Name:           scite
-Version:        5.1.6
+Version:        5.2.0
 Release:        0
 Summary:        Source Code Editor based on Scintilla
 License:        MIT
@@ -30,7 +30,7 @@
 Patch0:         scite-use-system-scintilla.patch
 BuildRequires:  gcc-c++
 BuildRequires:  pkgconfig
-BuildRequires:  libscintilla-devel >= 5.1.3
+BuildRequires:  libscintilla-devel >= 5.2.0
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(gail-3.0)
 BuildRequires:  pkgconfig(gdk-3.0)

++++++ scite-use-system-scintilla.patch ++++++
--- /var/tmp/diff_new_pack.mwgehr/_old  2022-02-23 16:26:58.963509974 +0100
+++ /var/tmp/diff_new_pack.mwgehr/_new  2022-02-23 16:26:58.967509973 +0100
@@ -1,7 +1,7 @@
-Index: scite-5.1.6/scite/gtk/makefile
+Index: scite-5.2.0/scite/gtk/makefile
 ===================================================================
---- scite-5.1.6.orig/scite/gtk/makefile
-+++ scite-5.1.6/scite/gtk/makefile
+--- scite-5.2.0.orig/scite/gtk/makefile
++++ scite-5.2.0/scite/gtk/makefile
 @@ -8,6 +8,7 @@
  
  srcdir ?= .
@@ -33,7 +33,7 @@
 -      $(CXX) $(BASE_FLAGS) $(LDFLAGS) -rdynamic -Wl,--as-needed 
-Wl,-rpath,'$${ORIGIN}' -Wl,--version-script $(srcdir)/lua.vers 
-Wl,-rpath,$(libdir) $^ -o $@ $(CONFIGLIB) $(LIBS) -L ../../scintilla/bin 
-lscintilla $(LDLIBS)
 +      $(CXX) $(BASE_FLAGS) $(LDFLAGS) -rdynamic -Wl,--as-needed 
-Wl,-rpath,'$${ORIGIN}' -Wl,--version-script $(srcdir)/lua.vers 
-Wl,-rpath,$(libdir) $^ -o $@ $(CONFIGLIB) $(LIBS) -lscintilla $(LDLIBS)
  
- # Automatically generate header dependencies with "make deps"
+ # Automatically generate header dependencies with "make depend"
  include deps.mak
 @@ -168,7 +169,6 @@ install:
        $(INSTALL) -m 755 -d $(DESTDIR)$(libdir)
@@ -51,11 +51,11 @@
        rm -f $(DESTDIR)$(libdir)/liblexilla.so
        rm -rf $(DESTDIR)$(SYSCONF_PATH)
  ifdef gnomeprefix
-Index: scite-5.1.6/lexilla/src/makefile
+Index: scite-5.2.0/lexilla/src/makefile
 ===================================================================
---- scite-5.1.6.orig/lexilla/src/makefile
-+++ scite-5.1.6/lexilla/src/makefile
-@@ -37,6 +37,7 @@ else
+--- scite-5.2.0.orig/lexilla/src/makefile
++++ scite-5.2.0/lexilla/src/makefile
+@@ -38,6 +38,7 @@ else
      BASE_FLAGS += -fvisibility=hidden
  endif
  
@@ -63,7 +63,7 @@
  LEXILLA=$(DIR_BIN)/$(SHARED_NAME).$(SHAREDEXTENSION)
  LIBLEXILLA=$(DIR_BIN)/liblexilla.a
  
-@@ -72,15 +73,13 @@ endif
+@@ -73,15 +74,13 @@ endif
  
  RANLIB ?= ranlib
  

++++++ scite516.tgz -> scite520.tgz ++++++
++++ 7477 lines of diff (skipped)

Reply via email to