Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package vnote for openSUSE:Factory checked 
in at 2021-12-07 00:00:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/vnote (Old)
 and      /work/SRC/openSUSE:Factory/.vnote.new.31177 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "vnote"

Tue Dec  7 00:00:17 2021 rev:6 rq:936052 version:3.10.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/vnote/vnote.changes      2020-09-06 
00:03:38.463291057 +0200
+++ /work/SRC/openSUSE:Factory/.vnote.new.31177/vnote.changes   2021-12-07 
00:02:01.212004635 +0100
@@ -1,0 +2,6 @@
+Sat Dec  4 20:14:58 UTC 2021 - Grover Chou <[email protected]>
+
+- update to version v3.10.1
+- for more details please visit https://github.com/vnotex/vnote/releases
+
+-------------------------------------------------------------------

Old:
----
  hoedown-e63d216.zip
  marked-f1ddca7.zip
  vnote-2.10.tar.gz

New:
----
  hunspell-efb0389.zip
  sonnet-403863f.zip
  syntax-highlighting-807895f.zip
  vnote-3.10.1.tar.gz
  vtextedit-08b440d.zip

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

Other differences:
------------------
++++++ vnote.spec ++++++
--- /var/tmp/diff_new_pack.Jcmjon/_old  2021-12-07 00:02:01.948002032 +0100
+++ /var/tmp/diff_new_pack.Jcmjon/_new  2021-12-07 00:02:01.952002018 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package vnote
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,16 +17,18 @@
 
 
 Name:           vnote
-Version:        2.10
+Version:        3.10.1
 Release:        0
 Summary:        A Vim-inspired note-taking application, especially for Markdown
-License:        MIT
+License:        LGPL-3.0-only
 Group:          Productivity/Text/Editors
 URL:            https://github.com/tamlok/vnote
-Source0:        %{name}-%{version}.tar.gz
-Source1:        hoedown-e63d216.zip
-Source2:        marked-f1ddca7.zip
-BuildRequires:  libqt5-qtbase-devel >= 5.9
+Source0:        
https://github.com/tamlok/vnote/archive/v%{version}.tar.gz#/vnote-%{version}.tar.gz
+Source1:        vtextedit-08b440d.zip
+Source2:        hunspell-efb0389.zip
+Source3:        sonnet-403863f.zip
+Source4:        syntax-highlighting-807895f.zip
+BuildRequires:  libqt5-qtbase-devel >= 5.12
 BuildRequires:  libqt5-qtsvg-devel
 BuildRequires:  libqt5-qtwebengine-devel
 BuildRequires:  unzip
@@ -38,35 +40,68 @@
 VNote is a note-taking application, designed especially for Markdown.
 VNote provides both note management and Markdown edit experience.
 
+%package -n libVSyntaxHighlighting1
+Summary:        Library files for vnote
+Group:          System/Libraries
+
+%description -n libVSyntaxHighlighting1
+This package provides library files for vnote.
+
+%package -n libVTextEdit1
+Summary:        Library files for vnote
+Group:          System/Libraries
+
+%description -n libVTextEdit1
+This package provides library files for vnote.
+
 %prep
 %setup -q
 
-cp %{_sourcedir}/hoedown-e63d216.zip .
-unzip hoedown-e63d216.zip
-rm hoedown-e63d216.zip
-
-cp %{_sourcedir}/marked-f1ddca7.zip .
-unzip marked-f1ddca7.zip
-rm marked-f1ddca7.zip
-mv marked src/utils
+cd libs
+rm -r vtextedit
+unzip %{_sourcedir}/vtextedit-08b440d.zip
+mv vtextedit-* vtextedit
+
+cd vtextedit/src/libs
+rm -r hunspell sonnet syntax-highlighting
+unzip %{_sourcedir}/hunspell-efb0389.zip
+mv hunspell-* hunspell
+unzip %{_sourcedir}/sonnet-403863f.zip
+mv sonnet-* sonnet
+unzip %{_sourcedir}/syntax-highlighting-807895f.zip
+mv syntax-highlighting-* syntax-highlighting
 
 %build
 mkdir build && cd build
-qmake-qt5 QMAKE_CFLAGS+="%{optflags}" QMAKE_CXXFLAGS+="%{optflags}" 
QMAKE_STRIP="/bin/true" ../VNote.pro
+qmake-qt5 QMAKE_CFLAGS+="%{optflags}" QMAKE_CXXFLAGS+="%{optflags}" 
QMAKE_STRIP="/bin/true" ../vnote.pro
 make %{?_smp_mflags}
 
 %install
 cd build
 make install INSTALL_ROOT="%{buildroot}"
+rm %{buildroot}%{_prefix}/lib/libVSyntaxHighlighting.so
+rm %{buildroot}%{_prefix}/lib/libVTextEdit.so
 %suse_update_desktop_file -r vnote Utility TextEditor
 
+%post -n libVSyntaxHighlighting1 -p /sbin/ldconfig
+%postun -n libVSyntaxHighlighting1 -p /sbin/ldconfig
+
+%post -n libVTextEdit1 -p /sbin/ldconfig
+%postun -n libVTextEdit1 -p /sbin/ldconfig
+
 %files
 %defattr(-,root,root)
-%{_bindir}/VNote
 %{_bindir}/vnote
+%{_bindir}/vnote_extra.rcc
 %{_datadir}/applications/vnote.desktop
 %{_datadir}/icons/hicolor
 %doc README.md changes.md
-%license LICENSE
+%license COPYING.LESSER
+
+%files -n libVSyntaxHighlighting1
+%{_prefix}/lib/libVSyntaxHighlighting.so*
+
+%files -n libVTextEdit1
+%{_prefix}/lib/libVTextEdit.so*
 
 %changelog

++++++ vnote-2.10.tar.gz -> vnote-3.10.1.tar.gz ++++++
++++ 506378 lines of diff (skipped)

++++++ vtextedit-08b440d.zip ++++++
++++ 7499 lines (skipped)

Reply via email to