Hello community,

here is the log from the commit of package serialdv for openSUSE:Factory 
checked in at 2019-08-05 10:35:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/serialdv (Old)
 and      /work/SRC/openSUSE:Factory/.serialdv.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "serialdv"

Mon Aug  5 10:35:26 2019 rev:2 rq:720095 version:1.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/serialdv/serialdv.changes        2019-07-26 
12:40:29.293903946 +0200
+++ /work/SRC/openSUSE:Factory/.serialdv.new.4126/serialdv.changes      
2019-08-05 10:35:49.475341837 +0200
@@ -1,0 +2,9 @@
+Tue Jul 30 19:02:41 UTC 2019 - Martin Hauke <[email protected]>
+
+- Update to version 1.1.1
+  * Added missing include causing trouble on some distributions.
+  * Set soversion
+- Remove patch:
+  * libserialdv-set-soversion.patch (fixed upstream)
+
+-------------------------------------------------------------------

Old:
----
  libserialdv-set-soversion.patch
  serialDV-1.1.0.tar.gz

New:
----
  serialDV-1.1.1.tar.gz

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

Other differences:
------------------
++++++ serialdv.spec ++++++
--- /var/tmp/diff_new_pack.rC2foW/_old  2019-08-05 10:35:50.215341419 +0200
+++ /var/tmp/diff_new_pack.rC2foW/_new  2019-08-05 10:35:50.215341419 +0200
@@ -1,6 +1,7 @@
 #
 # spec file for package serialdv
 #
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2019, Martin Hauke <[email protected]>
 #
 # All modifications and additions to the file contributed by third parties
@@ -12,14 +13,14 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %define sover   1
 %define libname libserialdv%{sover}
 Name:           serialdv
-Version:        1.1.0
+Version:        1.1.1
 Release:        0
 Summary:        Library for audio de-/encoding with ABME3000 based devices
 License:        GPL-3.0-only
@@ -27,7 +28,6 @@
 URL:            https://github.com/f4exb/serialDV
 #Git-Clone:     https://github.com/f4exb/serialDV.git
 Source:         
https://github.com/f4exb/serialDV/archive/v%{version}.tar.gz#/serialDV-%{version}.tar.gz
-Patch0:         libserialdv-set-soversion.patch
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 
@@ -57,7 +57,6 @@
 
 %prep
 %setup -q -n serialDV-%{version}
-%patch0 -p1
 
 %build
 %cmake

++++++ serialDV-1.1.0.tar.gz -> serialDV-1.1.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/serialDV-1.1.0/CMakeLists.txt 
new/serialDV-1.1.1/CMakeLists.txt
--- old/serialDV-1.1.0/CMakeLists.txt   2019-07-23 21:04:04.000000000 +0200
+++ new/serialDV-1.1.1/CMakeLists.txt   2019-07-29 11:15:30.000000000 +0200
@@ -2,6 +2,15 @@
 
 project(serialdv)
 
+set(MAJOR_VERSION 1)
+set(MINOR_VERSION 1)
+set(PATCH_VERSION 0)
+set(VERSION_STRING ${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION})
+set(VERSION ${VERSION_STRING})
+
+include(GNUInstallDirs)
+set(LIB_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}") # "lib" or "lib64"
+
 option(BUILD_TOOL "Build dvtest tool" ON)
 
 # use, i.e. don't skip the full RPATH for the build tree
@@ -66,10 +75,12 @@
     ${CMAKE_CURRENT_BINARY_DIR}
 )
 
+set_target_properties(serialdv PROPERTIES VERSION ${VERSION} SOVERSION 
${MAJOR_VERSION})
+
 target_link_libraries(dvtest serialdv)
 
 install(TARGETS dvtest DESTINATION bin)
 endif(BUILD_TOOL AND NOT WIN32)
 
-install(TARGETS serialdv DESTINATION lib)
+install(TARGETS serialdv LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE 
DESTINATION ${CMAKE_INSTALL_LIBDIR})
 install(FILES ${serialdv_HEADERS} DESTINATION include/${PROJECT_NAME})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/serialDV-1.1.0/udpdatacontroller.cpp 
new/serialDV-1.1.1/udpdatacontroller.cpp
--- old/serialDV-1.1.0/udpdatacontroller.cpp    2019-07-23 21:04:04.000000000 
+0200
+++ new/serialDV-1.1.1/udpdatacontroller.cpp    2019-07-29 11:15:30.000000000 
+0200
@@ -27,6 +27,7 @@
 #include <netinet/in.h>
 #include <arpa/inet.h>
 #include <unistd.h>
+#include <string.h>
 #endif
 
 #include "udpdatacontroller.h"


Reply via email to