Hello community,

here is the log from the commit of package libvmime for openSUSE:Leap:15.2 
checked in at 2020-03-19 08:36:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/libvmime (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.libvmime.new.3160 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libvmime"

Thu Mar 19 08:36:16 2020 rev:11 rq:786288 version:0.9.2.85

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/libvmime/libvmime.changes      2020-01-15 
15:25:38.986584209 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.libvmime.new.3160/libvmime.changes    
2020-03-19 08:36:18.637848074 +0100
@@ -1,0 +2,23 @@
+Tue May 28 10:38:46 UTC 2019 - Jan Engelhardt <[email protected]>
+
+- Update to Kopano branch of vmime, 0.9.2k2
+  * Unbreak own hostname qualification on POSIX systems
+
+-------------------------------------------------------------------
+Mon Jun 25 12:21:09 UTC 2018 - [email protected]
+
+- Update to new git snapshot v0.9.2-50-ga9b8221
+  * Dropped support for boost::shared_ptr<>, enabled exclusive
+    C++11 use of std::shared_ptr.
+  * Handle parsing of (RFC-nonconforming) address lines containing
+    bare at signs, like "[email protected] <[email protected]>" or
+    "[email protected]=29?= <[email protected]>".
+  * Add SMTPS with AUTH PLAIN without SASL.
+
+-------------------------------------------------------------------
+Mon Apr 23 07:58:00 UTC 2018 - [email protected]
+
+- Add no-override-cflags.diff so that vmime becomes externally
+  buildable with other -O/-g levels.
+
+-------------------------------------------------------------------

Old:
----
  v0.9.2.tar.gz

New:
----
  _service
  vmime-0.9.2.85.tar.xz

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

Other differences:
------------------
++++++ libvmime.spec ++++++
--- /var/tmp/diff_new_pack.BRfDIB/_old  2020-03-19 08:36:19.377848527 +0100
+++ /var/tmp/diff_new_pack.BRfDIB/_new  2020-03-19 08:36:19.381848529 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libvmime
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,16 @@
 
 
 Name:           libvmime
-%define lname  libvmime1
-Summary:        Library for working with RFC 2822, MIME messages and 
IMAP/POP/SMTP
-License:        GPL-3.0+
+%define lname  libvmime-kopano2
+Summary:        Library for working with RFC 5322, MIME messages and 
IMAP/POP/SMTP
+License:        GPL-3.0-or-later
 Group:          Development/Libraries/C and C++
-Version:        0.9.2
+Version:        0.9.2.85
 Release:        0
 Url:            http://vmime.org/
 
-Source:         https://github.com/kisli/vmime/archive/v%version.tar.gz
+#Source:         https://github.com/kisli/vmime/archive/v%%version.tar.gz
+Source:         vmime-%version.tar.xz
 Patch1:         libvmime-nodatetime.diff
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  ImageMagick
@@ -58,7 +59,7 @@
 BuildRequires:  xz
 
 %description
-VMime is a C++ class library for working with RFC2822 and
+VMime is a C++ class library for working with RFC5322 and
 MIME-conforming messages (RFC2045–2049), as well as Internet
 messaging services like IMAP, POP or SMTP.
 
@@ -71,7 +72,7 @@
 Group:          System/Libraries
 
 %description -n %lname
-VMime is a C++ class library for working with RFC2822 and
+VMime is a C++ class library for working with RFC5322 and
 MIME-conforming messages (RFC2045–2049), as well as Internet
 messaging services like IMAP, POP or SMTP.
 
@@ -85,7 +86,7 @@
 Requires:       %lname = %version
 
 %description devel
-VMime is a C++ class library for working with RFC2822 and
+VMime is a C++ class library for working with RFC5322 and
 MIME-conforming messages (RFC2045–2049), as well as Internet
 messaging services like IMAP, POP or SMTP.
 
@@ -103,7 +104,13 @@
 %endif
 
 cf="%optflags -DVMIME_ALWAYS_GENERATE_7BIT_PARAMETER=1"
-cmake . \
+%cmake \
+        -DCMAKE_INSTALL_PREFIX:PATH="%_prefix" \
+        -DINCLUDE_INSTALL_DIR:PATH="%_includedir" \
+        -DLIB_INSTALL_DIR:PATH="%_libdir" \
+        -DSYSCONF_INSTALL_DIR:PATH="%_sysconfdir" \
+        -DSHARE_INSTALL_PREFIX:PATH="%_datadir" \
+        -DCMAKE_INSTALL_LIBDIR:PATH="%_libdir" \
        -DVMIME_SENDMAIL_PATH:STRING="%_sbindir/sendmail" \
        -DVMIME_BUILD_SAMPLES:BOOL=OFF \
 %if 0%{?sle_version}
@@ -112,14 +119,10 @@
        -DVMIME_HAVE_TLS_SUPPORT:BOOL=ON \
        -DVMIME_BUILD_STATIC_LIBRARY:BOOL=OFF \
        -DCMAKE_BUILD_TYPE:STRING="RelWithDebInfo" \
-       -DCMAKE_INSTALL_PREFIX:PATH="%_prefix" \
-       -DCMAKE_CXX_FLAGS_DEBUG:STRING="-g" \
-%if 0%{?suse_version} >= 1310
-       -DCMAKE_CXX_FLAGS:STRING="$cf -std=gnu++11" \
-%else
-       -DCMAKE_CXX_FLAGS:STRING="$cf -std=gnu++0x" \
-%endif
-       -DCMAKE_C_FLAGS:STRING="$cf"
+       -DCMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING="$cf" \
+       -DCMAKE_CXX_FLAGS:STRING=" " \
+       -DCMAKE_C_FLAGS_RELWITHDEBINFO:STRING="$cf" \
+       -DCMAKE_C_FLAGS:STRING=" "
 make %{?_smp_mflags} VERBOSE=1
 
 %install
@@ -128,8 +131,10 @@
 mkdir -p "$b/%_docdir/%name"
 cp -a doc/book/book.pdf "$b/%_docdir/%name/"
 %endif
-make install DESTDIR="$b"
+%cmake_install
 find "$b" -type f -name "*.la" -delete
+mkdir -p "$b/%_datadir"
+mv "$b/%_prefix/cmake" "$b/%_datadir/"
 
 %post   -n %lname -p /sbin/ldconfig
 %postun -n %lname -p /sbin/ldconfig
@@ -137,13 +142,15 @@
 %files -n %lname
 %defattr(-,root,root)
 %doc COPYING
-%_libdir/%name.so.1*
+%_libdir/libvmime-kopano.so.2*
 
 %files devel
 %defattr(-,root,root)
 %_includedir/vmime
 %_libdir/libvmime.so
+%_libdir/libvmime-kopano.so
 %_libdir/pkgconfig/*.pc
+%_datadir/cmake/
 %if 0%{?with_pdf}
 %_docdir/%name
 %endif

++++++ _service ++++++
<services>
        <service name="tar_scm" mode="disabled">
                <param name="scm">git</param>
                <param name="url">https://github.com/kopano-dev/vmime</param>
                <param name="revision">v0.9.2k2</param>
                <param name="parent-tag">v0.9.2</param>
                <param name="versionformat">0.9.2.@TAG_OFFSET@</param>
        </service>
        <service name="recompress" mode="disabled">
                <param name="file">*.tar</param>
                <param name="compression">xz</param>
        </service>
        <service name="set_version" mode="disabled"/>
</services>

Reply via email to