Hello community,

here is the log from the commit of package highlight for openSUSE:Factory 
checked in at 2020-11-17 21:21:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/highlight (Old)
 and      /work/SRC/openSUSE:Factory/.highlight.new.24930 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "highlight"

Tue Nov 17 21:21:20 2020 rev:32 rq:848512 version:3.59

Changes:
--------
--- /work/SRC/openSUSE:Factory/highlight/highlight.changes      2020-09-18 
14:22:39.922943816 +0200
+++ /work/SRC/openSUSE:Factory/.highlight.new.24930/highlight.changes   
2020-11-17 21:21:30.245105715 +0100
@@ -1,0 +2,26 @@
+Sat Nov 14 14:48:10 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 3.59:
+  * HTML output: Added `white-space: pre-wrap` to pre tag CSS.
+  * Updated mark_lines.lua plug-in accept a line range as input
+    parameter and output xterm256 terminal sequences.
+  * Improved Ruby code folding of the outhtml_codefold plug-in.
+  * Updated astyle lib to rev 672.
+  * Added support for reStructured Text (gl#saalen/highlight#170).
+  * Added support for Rego (openpolicyagent.org).
+  * Added `outhtml_copy_clipboard.lua` plugin.
+  * CLI: Adapted default xterm256/truecolor theme to terminal
+    background colour.
+  * CLI: Adapted ANSI line numbers to terminal background colour
+    (gl#saalen/highlight#172).
+  * CLI: Fixed segfault if the user home directory cannot be
+    determined (gl#saalen/highlight#171).
+  * GUI: Initial font set to Monospace.
+  * GUI: Replaced highlight.xpm by highlight.png icon.
+- Rebase optflags patch:
+  * Remove highlight-3.58-use_optflags.patch.
+  * Add highlight-3.59-use_optflags.patch.
+- Add hicolor-icon-themes as build requirement: Required since move
+  of highlight-gui icon.
+
+-------------------------------------------------------------------

Old:
----
  highlight-3.58-use_optflags.patch
  highlight-3.58.tar.bz2
  highlight-3.58.tar.bz2.asc

New:
----
  highlight-3.59-use_optflags.patch
  highlight-3.59.tar.bz2
  highlight-3.59.tar.bz2.asc

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

Other differences:
------------------
++++++ highlight.spec ++++++
--- /var/tmp/diff_new_pack.C3Qjm6/_old  2020-11-17 21:21:31.685107889 +0100
+++ /var/tmp/diff_new_pack.C3Qjm6/_new  2020-11-17 21:21:31.689107895 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without gui
 Name:           highlight
-Version:        3.58
+Version:        3.59
 Release:        0
 Summary:        Universal Source Code to Formatted Text Converter
 License:        GPL-3.0-or-later
@@ -29,8 +29,8 @@
 Source99:       highlight.keyring
 # PATCH-FIX-OPENSUSE highlight-3.45-fix-doc-dir.patch
 Patch0:         highlight-3.45-fix-doc-dir.patch
-# PATCH-FIX-OPENSUSE highlight-3.58-use_optflags.patch
-Patch1:         highlight-3.58-use_optflags.patch
+# PATCH-FIX-OPENSUSE highlight-3.59-use_optflags.patch
+Patch1:         highlight-3.59-use_optflags.patch
 BuildRequires:  dos2unix
 BuildRequires:  gcc-c++
 BuildRequires:  libboost_headers-devel
@@ -48,6 +48,7 @@
 %package gui
 Summary:        Graphical Interface for %{name}
 Group:          Development/Tools/Other
+BuildRequires:  hicolor-icon-theme
 BuildRequires:  libqt5-qtbase-devel
 BuildRequires:  update-desktop-files
 Requires:       %{name} = %{version}
@@ -100,7 +101,7 @@
 %dir %{_datadir}/%{name}/gui_files
 %dir %{_datadir}/%{name}/gui_files/ext
 %{_datadir}/%{name}/gui_files/ext/fileopenfilter.conf
-%{_datadir}/pixmaps/%{name}.xpm
+%{_datadir}/icons/hicolor/256x256/apps/%{name}.png
 
 %files gui-lang -f %{name}.lang
 %dir %{_datadir}/%{name}/gui_files/l10n

++++++ highlight-3.58-use_optflags.patch -> highlight-3.59-use_optflags.patch 
++++++
--- /work/SRC/openSUSE:Factory/highlight/highlight-3.58-use_optflags.patch      
2020-09-18 14:22:27.378931183 +0200
+++ 
/work/SRC/openSUSE:Factory/.highlight.new.24930/highlight-3.59-use_optflags.patch
   2020-11-17 21:21:28.533103129 +0100
@@ -1,20 +1,20 @@
-diff -up highlight-3.58/src/makefile.orig highlight-3.58/src/makefile
---- highlight-3.58/src/makefile.orig
-+++ highlight-3.58/src/makefile
-@@ -16,9 +16,10 @@
+diff -up highlight-3.59/src/makefile.orig highlight-3.59/src/makefile
+--- highlight-3.59/src/makefile.orig   2020-11-14 15:42:09.384134942 +0100
++++ highlight-3.59/src/makefile        2020-11-14 15:45:15.068143087 +0100
+@@ -15,9 +15,10 @@
+ #CXX ?= clang++
  CXX ?= g++
  
 -QMAKE ?= qmake
 +QMAKE ?= qmake-qt5
  
- # Added -std=c++11 because of auto_ptr to unique_ptr transition
 -CFLAGS:=-Wall -O2 ${CFLAGS} -DNDEBUG -std=c++11 -D_FILE_OFFSET_BITS=64
 +OPTFLAGS=-O2
 +CFLAGS:=-Wall -DNDEBUG -std=c++11 -D_FILE_OFFSET_BITS=64 $(OPTFLAGS)
  
  #CFLAGS:= -fPIC -O2 -g -pipe -Wall -Werror=format-security 
-Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions 
-fstack-protector-strong -grecord-gcc-switches -fasynchronous-unwind-tables 
-fstack-clash-protection
  
-@@ -117,7 +118,7 @@ gui-qt: highlight-gui
+@@ -116,7 +117,7 @@ gui-qt: highlight-gui
  
  highlight-gui: libhighlight.a ${GUI_OBJECTS}
        cd gui-qt && \

++++++ highlight-3.58.tar.bz2 -> highlight-3.59.tar.bz2 ++++++
++++ 3301 lines of diff (skipped)
_______________________________________________
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

Reply via email to