Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package sqlitebrowser for openSUSE:Factory 
checked in at 2024-12-09 21:12:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/sqlitebrowser (Old)
 and      /work/SRC/openSUSE:Factory/.sqlitebrowser.new.29675 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "sqlitebrowser"

Mon Dec  9 21:12:30 2024 rev:17 rq:1229224 version:3.13.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/sqlitebrowser/sqlitebrowser.changes      
2022-01-07 12:47:45.187902615 +0100
+++ /work/SRC/openSUSE:Factory/.sqlitebrowser.new.29675/sqlitebrowser.changes   
2024-12-09 21:13:37.738130537 +0100
@@ -1,0 +2,11 @@
+Mon Nov  4 17:44:01 UTC 2024 - Mariusz Fik <[email protected]>
+
+- Update to 3.13.1:
+  * Docked data browsers
+  * Better support for HiDPI and new svg icons
+  * Theme updates
+  * Import/Export enhancements
+  * Built with qcustomplot and qhexedit
+- Add switch_case_return.patch: fix compilation.
+
+-------------------------------------------------------------------

Old:
----
  v3.12.2.tar.gz

New:
----
  switch_case_return.patch
  v3.13.1.tar.gz

BETA DEBUG BEGIN:
  New:  * Built with qcustomplot and qhexedit
- Add switch_case_return.patch: fix compilation.
BETA DEBUG END:

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

Other differences:
------------------
++++++ sqlitebrowser.spec ++++++
--- /var/tmp/diff_new_pack.Q9O1ft/_old  2024-12-09 21:13:38.258152293 +0100
+++ /var/tmp/diff_new_pack.Q9O1ft/_new  2024-12-09 21:13:38.262152461 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sqlitebrowser
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,16 @@
 
 
 Name:           sqlitebrowser
-Version:        3.12.2
+Version:        3.13.1
 Release:        0
 Summary:        Spreadsheet-like interface to SQLite databases
 License:        GPL-3.0-or-later AND MPL-2.0
 Group:          Productivity/Office/Organizers
-URL:            http://sqlitebrowser.org
+URL:            https://sqlitebrowser.org
 Source0:        https://github.com/%{name}/%{name}/archive/v%{version}.tar.gz
 Source1:        sqlitebrowser.1
+# PATCH-FIX-UPSTREAM switch_case_return.patch -- [email protected]
+Patch0:         switch_case_return.patch
 BuildRequires:  gcc-c++
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libqscintilla_qt5-devel
@@ -39,6 +41,8 @@
 BuildRequires:  pkgconfig(Qt5Widgets)
 BuildRequires:  pkgconfig(Qt5Xml)
 BuildRequires:  pkgconfig(glib-2.0)
+BuildRequires:  pkgconfig(qcustomplot)
+BuildRequires:  pkgconfig(qhexedit2)
 BuildRequires:  pkgconfig(sqlcipher)
 BuildRequires:  pkgconfig(sqlite3)
 # not on SLE-12
@@ -65,12 +69,15 @@
 
 %prep
 %setup -qn %{name}-%{version}
+%patch -P 0 -p1
 
 %build
 %cmake \
   -DQSCINTILLA_INCLUDE_DIR=%{_includedir}/qt5/Qsci \
   -DQSCINTILLA_LIBRARY=%{_libdir}/libqscintilla2_qt5.so \
-  -DBUILD_SHARED_LIBS=OFF \
+  -DBUILD_STABLE_VERSION=ON \
+  -DFORCE_INTERNAL_QCUSTOMPLOT=OFF \
+  -DFORCE_INTERNAL_QHEXEDIT=OFF \
 %if 0%{?suse_version} && 0%{?suse_version} <= 1500
   -DFORCE_INTERNAL_QSCINTILLA=ON \
 %endif
@@ -100,11 +107,12 @@
 %files
 %doc README.md currentrelease
 %license LICENSE
-%{_mandir}/man1/%{name}.1%{ext_man}
+%{_mandir}/man1/%{name}.1%{?ext_man}
 %{_bindir}/%{name}
 %{_datadir}/applications/*
 %dir %{_datadir}/metainfo
 %{_datadir}/metainfo/%{name}.desktop.appdata.xml
 %{_datadir}/pixmaps/*
 %{_datadir}/icons/hicolor/*/apps/sqlitebrowser.png
+%{_datadir}/icons/hicolor/scalable/apps/sqlitebrowser.svg
 

++++++ switch_case_return.patch ++++++
Index: sqlitebrowser-3.13.1/src/sql/ObjectIdentifier.cpp
===================================================================
--- sqlitebrowser-3.13.1.orig/src/sql/ObjectIdentifier.cpp
+++ sqlitebrowser-3.13.1/src/sql/ObjectIdentifier.cpp
@@ -49,6 +49,8 @@ std::string escapeIdentifier(const std::
         // default branch is removed, even though we have covered all 
possibilities in the
         // switch statement.
         return '"' + duplicate_char(id, '"') + '"';
+    default:
+        return id;
     }
 }
 

++++++ v3.12.2.tar.gz -> v3.13.1.tar.gz ++++++
++++ 269323 lines of diff (skipped)

Reply via email to