Hello community,

here is the log from the commit of package libsocketcan for openSUSE:Factory 
checked in at 2019-08-27 10:25:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libsocketcan (Old)
 and      /work/SRC/openSUSE:Factory/.libsocketcan.new.7948 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libsocketcan"

Tue Aug 27 10:25:12 2019 rev:7 rq:726109 version:0.0.11

Changes:
--------
--- /work/SRC/openSUSE:Factory/libsocketcan/libsocketcan.changes        
2014-08-11 10:08:28.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.libsocketcan.new.7948/libsocketcan.changes      
2019-08-27 10:25:14.163924088 +0200
@@ -1,0 +2,7 @@
+Mon Aug 26 08:54:41 UTC 2019 - Jan Engelhardt <[email protected]>
+
+- Update to upstream release 0.0.11
+  * Add interface to retrieve link statistics
+  * Update CAN netlink header
+
+-------------------------------------------------------------------

Old:
----
  libsocketcan-0.0.10.tar.bz2

New:
----
  libsocketcan-0.0.11.tar.bz2

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

Other differences:
------------------
++++++ libsocketcan.spec ++++++
--- /var/tmp/diff_new_pack.2Ui5bz/_old  2019-08-27 10:25:14.667924050 +0200
+++ /var/tmp/diff_new_pack.2Ui5bz/_new  2019-08-27 10:25:14.671924051 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libsocketcan
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -12,23 +12,22 @@
 # 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/
 #
 
 
 Name:           libsocketcan
 %define lname  libsocketcan2
-Version:        0.0.10
+Version:        0.0.11
 Release:        0
 Summary:        Library for SocketCAN
-License:        LGPL-2.1+
+License:        LGPL-2.1-or-later
 Group:          Development/Libraries/C and C++
-Url:            http://pengutronix.de/software/libsocketcan/download/
+URL:            https://public.pengutronix.de/software/libsocketcan/
 
 #Git-Clone:    git://git.pengutronix.de/git/tools/libsocketcan
-Source:         
http://pengutronix.de/software/libsocketcan/download/%name-%version.tar.bz2
+Source:         
https://public.pengutronix.de/software/libsocketcan/%name-%version.tar.bz2
 Patch3:         0003-build-avoid-overriding-user-s-CFLAGS.patch
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  autoconf >= 2.69
 BuildRequires:  automake
 BuildRequires:  libtool >= 2
@@ -61,29 +60,25 @@
 This package contains the libsocketcan development files.
 
 %prep
-%setup -q
-%patch -P 3 -p1
+%autosetup -p1
 
 %build
-./autogen.sh;
+./autogen.sh
 %configure --disable-static --docdir="%_docdir/%name"
-make %{?_smp_mflags};
+make %{?_smp_mflags}
 
 %install
-b="%buildroot";
-make install DESTDIR="$b";
-rm -f "$b/%_libdir"/*.la "$b/%_docdir/%name/INSTALL"
+%make_install
+rm -f "%buildroot/%_libdir"/*.la "%buildroot/%_docdir/%name/INSTALL"
 
 %post -n %lname -p /sbin/ldconfig
-
 %postun -n %lname -p /sbin/ldconfig
 
 %files -n %lname
-%defattr(-,root,root)
 %_libdir/libsocketcan.so.2*
+%license LICENSE
 
 %files devel
-%defattr(-,root,root)
 %_includedir/can_netlink.h
 %_includedir/libsocketcan.h
 %_libdir/libsocketcan.so

++++++ 0003-build-avoid-overriding-user-s-CFLAGS.patch ++++++
--- /var/tmp/diff_new_pack.2Ui5bz/_old  2019-08-27 10:25:14.687924049 +0200
+++ /var/tmp/diff_new_pack.2Ui5bz/_new  2019-08-27 10:25:14.691924048 +0200
@@ -13,10 +13,10 @@
  src/GNUmakefile.am |    1 +
  2 files changed, 5 insertions(+), 3 deletions(-)
 
-diff --git a/configure.ac b/configure.ac
-index fb9253b..f60a06d 100644
---- a/configure.ac
-+++ b/configure.ac
+Index: libsocketcan-0.0.11/configure.ac
+===================================================================
+--- libsocketcan-0.0.11.orig/configure.ac
++++ libsocketcan-0.0.11/configure.ac
 @@ -10,7 +10,7 @@ AC_CONFIG_AUX_DIR([config/autoconf])
  AC_CANONICAL_BUILD
  AC_CANONICAL_HOST
@@ -26,7 +26,7 @@
  
  #
  # libtool library versioning stuff
-@@ -99,11 +99,12 @@ AC_ARG_ENABLE(debug,
+@@ -92,11 +92,12 @@ AC_ARG_ENABLE(debug,
      [CONFIG_DEBUG=no])
  AC_MSG_RESULT([${CONFIG_DEBUG}])
  if test "${CONFIG_DEBUG}" = "yes"; then
@@ -40,11 +40,11 @@
 +AC_SUBST([my_CFLAGS])
  
  
- AC_CONFIG_FILES([
-diff --git a/src/GNUmakefile.am b/src/GNUmakefile.am
-index 1709bbe..32ff3a1 100644
---- a/src/GNUmakefile.am
-+++ b/src/GNUmakefile.am
+ #
+Index: libsocketcan-0.0.11/src/GNUmakefile.am
+===================================================================
+--- libsocketcan-0.0.11.orig/src/GNUmakefile.am
++++ libsocketcan-0.0.11/src/GNUmakefile.am
 @@ -1,5 +1,6 @@
  lib_LTLIBRARIES = libsocketcan.la
  
@@ -52,6 +52,3 @@
  AM_CPPFLAGS = \
        -I$(top_srcdir)/include \
        -I$(top_builddir)/include
--- 
-1.7.10.4
-

++++++ libsocketcan-0.0.10.tar.bz2 -> libsocketcan-0.0.11.tar.bz2 ++++++
++++ 25730 lines of diff (skipped)


Reply via email to