Hello community,

here is the log from the commit of package capnproto for openSUSE:Leap:15.2 
checked in at 2020-04-28 20:12:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/capnproto (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.capnproto.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "capnproto"

Tue Apr 28 20:12:02 2020 rev:10 rq:798562 version:0.8.0

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/capnproto/capnproto.changes    2020-01-15 
14:49:29.573381320 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.capnproto.new.2738/capnproto.changes  
2020-04-28 20:12:05.912651520 +0200
@@ -1,0 +2,24 @@
+Mon Apr 27 14:58:38 UTC 2020 - Luigi Baldoni <aloi...@gmx.com>
+
+- Update to version 0.8
+  * Multi-stream Flow Control
+  * HTTP-over-Cap'n-Proto
+  * KJ improvements
+  * Lots and lots of minor tweaks and fixes.
+
+-------------------------------------------------------------------
+Thu Oct 17 15:24:33 UTC 2019 - Richard Brown <rbr...@suse.com>
+
+- Remove obsolete Groups tag (fate#326485)
+
+-------------------------------------------------------------------
+Fri Oct 12 14:14:20 UTC 2018 - Jan Engelhardt <jeng...@inai.de>
+
+- Remove bias from descriptions.
+
+-------------------------------------------------------------------
+Fri Oct 12 08:30:55 UTC 2018 - Luigi Baldoni <aloi...@gmx.com>
+
+- Update to version 0.7.0 (see https://capnproto.org/news)
+
+-------------------------------------------------------------------
@@ -20 +43,0 @@
-

Old:
----
  capnproto-c++-0.6.1.tar.gz

New:
----
  capnproto-c++-0.8.0.tar.gz

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

Other differences:
------------------
++++++ capnproto.spec ++++++
--- /var/tmp/diff_new_pack.lN50Kq/_old  2020-04-28 20:12:06.296652316 +0200
+++ /var/tmp/diff_new_pack.lN50Kq/_new  2020-04-28 20:12:06.300652325 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package capnproto
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,50 +12,47 @@
 # 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 _libver 0_8
 Name:           capnproto
-Version:        0.6.1
+Version:        0.8.0
 Release:        0
-Summary:        Cap'n Proto - Insanely Fast Data Serialization Format
+Summary:        A Data Serialization Format
 License:        MIT
-Group:          System/Libraries
-Url:            https://capnproto.org
+URL:            https://capnproto.org
 Source:         https://capnproto.org/capnproto-c++-%{version}.tar.gz
+BuildRequires:  cmake
+%if 0%{?suse_version} >= 1500
 BuildRequires:  gcc-c++
+%else
+BuildRequires:  gcc7-c++
+%endif
 BuildRequires:  pkgconfig
-Requires:       libcapnp-0_6 = %{version}
+Requires:       libcapnp-%{_libver} = %{version}
 
 %description
-Cap'n Proto is an insanely fast data interchange format and capability-based
-RPC system.  Think JSON, except binary.  Or think of Google's Protocol Buffers
-(http://protobuf.googlecode.com), except faster.  In fact, in benchmarks,
-Cap'n Proto is INFINITY TIMES faster than Protocol Buffers.
-
-%package     -n libcapnp-0_6
-Summary:        Cap'n Proto C++ library
-Group:          System/Libraries
-
-%description -n libcapnp-0_6
-Cap'n Proto is an insanely fast data interchange format and capability-based
-RPC system.  Think JSON, except binary.  Or think of Google's Protocol Buffers
-(http://protobuf.googlecode.com), except faster.  In fact, in benchmarks,
-Cap'n Proto is INFINITY TIMES faster than Protocol Buffers.
+Cap'n Proto is a binary data interchange format and capability-based
+RPC system.
+
+%package     -n libcapnp-%{_libver}
+Summary:        The Cap'n Proto data serialization library
+
+%description -n libcapnp-%{_libver}
+Cap'n Proto is a binary data interchange format and capability-based
+RPC system.
 
 This package provides runtime libraries for capnproto.
 
 %package     -n libcapnp-devel
-Summary:        Development headers for Cap'n Proto C++ Library
-Group:          Development/Libraries/C and C++
-Requires:       libcapnp-0_6 = %{version}
+Summary:        Development headers for the Cap'n Proto C++ Library
+Requires:       libcapnp-%{_libver} = %{version}
 
 %description -n libcapnp-devel
-Cap'n Proto is an insanely fast data interchange format and capability-based
-RPC system.  Think JSON, except binary.  Or think of Google's Protocol Buffers
-(http://protobuf.googlecode.com), except faster.  In fact, in benchmarks,
-Cap'n Proto is INFINITY TIMES faster than Protocol Buffers.
+Cap'n Proto is a binary data interchange format and capability-based
+RPC system.
 
 This package provides development headers for capnproto.
 
@@ -63,27 +60,27 @@
 %setup -q -n %{name}-c++-%{version}
 
 %build
+export CXX=g++
+test -x "$(type -p g++-7)" && export CXX=g++-7
 %configure
 make %{?_smp_mflags}
 
 %install
 %make_install
-find %{buildroot}%{_libdir} -name "*.a" -delete
-find %{buildroot} -type f -name "*.la" -delete -print
+find %{buildroot}%{_libdir} -type f \( -name "*.a" -o -name "*.la" \) -delete 
-print
 
-%post -n libcapnp-0_6 -p /sbin/ldconfig
-%postun -n libcapnp-0_6 -p /sbin/ldconfig
+%post -n libcapnp-%{_libver} -p /sbin/ldconfig
+%postun -n libcapnp-%{_libver} -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root,-)
-%doc README.txt LICENSE.txt
+%license LICENSE.txt
+%doc README.txt
 %{_bindir}/capnp
 %{_bindir}/capnpc
 %{_bindir}/capnpc-c++
 %{_bindir}/capnpc-capnp
 
-%files -n libcapnp-0_6
-%defattr(-,root,root,-)
+%files -n libcapnp-%{_libver}
 %{_libdir}/libcapnp-%{version}.so
 %{_libdir}/libcapnp-rpc-%{version}.so
 %{_libdir}/libcapnpc-%{version}.so
@@ -94,7 +91,6 @@
 %{_libdir}/libkj-http-%{version}.so
 
 %files -n libcapnp-devel
-%defattr(-,root,root,-)
 %{_includedir}/capnp
 %{_includedir}/kj
 %{_libdir}/libcapnp-rpc.so
@@ -105,9 +101,19 @@
 %{_libdir}/libkj-async.so
 %{_libdir}/libkj-http.so
 %{_libdir}/libkj.so
+%dir %{_libdir}/cmake/CapnProto
+%{_libdir}/cmake/CapnProto/CapnProtoConfig.cmake
+%{_libdir}/cmake/CapnProto/CapnProtoConfigVersion.cmake
+%{_libdir}/cmake/CapnProto/CapnProtoMacros.cmake
+%{_libdir}/cmake/CapnProto/CapnProtoTargets.cmake
 %{_libdir}/pkgconfig/capnp.pc
+%{_libdir}/pkgconfig/capnp-json.pc
 %{_libdir}/pkgconfig/capnp-rpc.pc
 %{_libdir}/pkgconfig/kj-async.pc
+%{_libdir}/pkgconfig/kj-gzip.pc
+%{_libdir}/pkgconfig/kj-http.pc
+%{_libdir}/pkgconfig/kj-test.pc
+%{_libdir}/pkgconfig/kj-tls.pc
 %{_libdir}/pkgconfig/kj.pc
 
 %changelog

++++++ capnproto-c++-0.6.1.tar.gz -> capnproto-c++-0.8.0.tar.gz ++++++
++++ 81227 lines of diff (skipped)


Reply via email to