Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package molsketch for openSUSE:Factory 
checked in at 2026-08-09 21:41:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/molsketch (Old)
 and      /work/SRC/openSUSE:Factory/.molsketch.new.16738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "molsketch"

Sun Aug  9 21:41:00 2026 rev:11 rq:1370207 version:0.8.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/molsketch/molsketch.changes      2024-12-26 
12:24:16.535454675 +0100
+++ /work/SRC/openSUSE:Factory/.molsketch.new.16738/molsketch.changes   
2026-08-09 21:41:07.510094004 +0200
@@ -1,0 +2,18 @@
+Fri Jul 31 19:13:22 UTC 2026 - andy great <[email protected]>
+
+- Update to version 0.8.4:
+  * Fix vector normalization (led to crashes when drawing arrows).
+  * Initialize arrows with scene default color.
+  * Initialize frames/brackets with scene default color.
+  * Use grid color for hint points during drawing and default color
+    for lines.
+  * Fix export via OpenBabel, including crashes when trying to open
+    or save.
+- Add molsketch-link-mskcore.patch: Link libmolsketch against the
+  new libmskcore library.
+- Changes from version 0.8.3:
+  * Fix accidental color change, e.g. when inserting fused rings.
+- Changes from version 0.8.2:
+  * Fix placement of icons in settings dialog sidebar.
+
+-------------------------------------------------------------------
@@ -203 +220,0 @@
-

Old:
----
  Molsketch-0.8.1-src.tar.gz

New:
----
  Molsketch-0.8.4-src.tar.gz
  molsketch-link-mskcore.patch

----------(New B)----------
  New:    or save.
- Add molsketch-link-mskcore.patch: Link libmolsketch against the
  new libmskcore library.
----------(New E)----------

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

Other differences:
------------------
++++++ molsketch.spec ++++++
--- /var/tmp/diff_new_pack.cPMwkz/_old  2026-08-09 21:41:08.078113411 +0200
+++ /var/tmp/diff_new_pack.cPMwkz/_new  2026-08-09 21:41:08.078113411 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package molsketch
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,13 +26,14 @@
 %define sover 1
 %define soname %{sover}
 Name:           molsketch
-Version:        0.8.1
+Version:        0.8.4
 Release:        0
 Summary:        2D molecular structures editor
 License:        GPL-2.0-or-later
 Group:          Productivity/Scientific/Chemistry
 URL:            https://molsketch.sourceforge.net
 Source0:        
https://downloads.sourceforge.net/molsketch/Molsketch-%{version}-src.tar.gz
+Patch0:         molsketch-link-mskcore.patch
 BuildRequires:  cmake
 BuildRequires:  fdupes
 BuildRequires:  gcc%{?gcc_ver}-c++
@@ -121,6 +122,7 @@
 
 %files devel
 %{_includedir}/lib%{name}/
+%{_includedir}/libmskcore/
 
 %files doc
 %{_docdir}/%{name}/

++++++ Molsketch-0.8.1-src.tar.gz -> Molsketch-0.8.4-src.tar.gz ++++++
++++ 2613 lines of diff (skipped)

++++++ molsketch-link-mskcore.patch ++++++
Index: Molsketch-0.8.4/libmolsketch/CMakeLists.txt
===================================================================
--- Molsketch-0.8.4.orig/libmolsketch/CMakeLists.txt
+++ Molsketch-0.8.4/libmolsketch/CMakeLists.txt
@@ -19,7 +19,7 @@ if(MSK_QT6)
   else(MSK_STATIC_LIB)
     qt_add_library(libmolsketch SHARED ${libmolsketch_SRCS} 
${libmolsketch_UIS_H} ${libmolsketch_QM})
   endif(MSK_STATIC_LIB)
-  target_link_libraries(libmolsketch ${QT_LIBRARIES})
+  target_link_libraries(libmolsketch mskcore ${QT_LIBRARIES})
 else(MSK_QT6)
   message(STATUS "Building Qt5")
   if(MSK_STATIC_LIB)
@@ -28,7 +28,7 @@ else(MSK_QT6)
     add_library(libmolsketch SHARED ${libmolsketch_SRCS} ${libmolsketch_UIS_H} 
${libmolsketch_QM})
   endif(MSK_STATIC_LIB)
   # target_link_libraries(libmolsketch ${package})
-  target_link_libraries(libmolsketch ${QT_LIBRARIES})
+  target_link_libraries(libmolsketch mskcore ${QT_LIBRARIES})
 endif(MSK_QT6)
 set_target_properties(libmolsketch PROPERTIES OUTPUT_NAME "molsketch")
 

Reply via email to