Hello community, here is the log from the commit of package grpc for openSUSE:Factory checked in at 2019-12-24 14:30:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/grpc (Old) and /work/SRC/openSUSE:Factory/.grpc.new.6675 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "grpc" Tue Dec 24 14:30:28 2019 rev:21 rq:759048 version:1.25.0 Changes: -------- --- /work/SRC/openSUSE:Factory/grpc/grpc.changes 2019-11-12 11:58:17.871527162 +0100 +++ /work/SRC/openSUSE:Factory/.grpc.new.6675/grpc.changes 2019-12-24 14:30:46.066599164 +0100 @@ -1,0 +2,10 @@ +Mon Dec 16 23:36:51 UTC 2019 - Jan Engelhardt <[email protected]> + +- Update to release 1.25 + * Change RR to consider a subchannel in TF if it has failed + since it was READY. + * Do not create streams after a GOAWAY has been received. + * Prevent HTTP2 parser from queueing a lot of induced frames. +- Drop gettid.patch + +------------------------------------------------------------------- Old: ---- gettid.patch v1.23.1.tar.gz New: ---- v1.25.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ grpc.spec ++++++ --- /var/tmp/diff_new_pack.x3mZNf/_old 2019-12-24 14:30:47.918600106 +0100 +++ /var/tmp/diff_new_pack.x3mZNf/_new 2019-12-24 14:30:47.926600110 +0100 @@ -1,7 +1,7 @@ # # spec file for package grpc # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,22 +16,20 @@ # -%define lver 7 +%define lver 8 %define lverp 1 %define src_install_dir /usr/src/%name %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: grpc -Version: 1.23.1 +Version: 1.25.0 Release: 0 -%define rver 1.23.1 Summary: HTTP/2-based Remote Procedure Call implementation License: Apache-2.0 Group: Development/Tools/Building URL: https://grpc.io/ -Source0: https://github.com/grpc/grpc/archive/v%rver.tar.gz -Source1: %{name}-rpmlintrc -Patch1: gettid.patch -Patch2: 0001-bazel-Replace-boringssl-with-openssl.patch +Source: https://github.com/grpc/grpc/archive/v%version.tar.gz +Source2: %name-rpmlintrc +Patch1: 0001-bazel-Replace-boringssl-with-openssl.patch BuildRequires: %{python_module Cython} BuildRequires: %{python_module devel} BuildRequires: %{python_module setuptools} @@ -114,8 +112,8 @@ This subpackage contains the python3 bindings. %prep -%autosetup -n grpc-%rver -p1 -sed -i -e "s|%%LIBDIR%%|%{_libdir}|" bazel/grpc_deps.bzl +%autosetup -p1 +sed -i -e "s|%%LIBDIR%%|%_libdir|" bazel/grpc_deps.bzl %build %define _lto_cflags %nil ++++++ 0001-bazel-Replace-boringssl-with-openssl.patch ++++++ --- /var/tmp/diff_new_pack.x3mZNf/_old 2019-12-24 14:30:47.942600118 +0100 +++ /var/tmp/diff_new_pack.x3mZNf/_new 2019-12-24 14:30:47.942600118 +0100 @@ -5,16 +5,16 @@ Signed-off-by: Michal Rostecki <[email protected]> --- - BUILD | 8 ++------ - WORKSPACE | 18 ++++++++++++++++++ - bazel/grpc_deps.bzl | 14 -------------- - 3 files changed, 20 insertions(+), 20 deletions(-) + BUILD | 8 ++------ + WORKSPACE | 18 ++++++++++++++++++ + bazel/grpc_deps.bzl | 13 ------------- + 3 files changed, 20 insertions(+), 19 deletions(-) -diff --git a/BUILD b/BUILD -index 2e03ed86c0..4c6c0f4dd2 100644 ---- a/BUILD -+++ b/BUILD -@@ -1886,15 +1886,13 @@ grpc_cc_library( +Index: grpc-1.25.0/BUILD +=================================================================== +--- grpc-1.25.0.orig/BUILD ++++ grpc-1.25.0/BUILD +@@ -1915,15 +1915,13 @@ grpc_cc_library( "src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h", "src/core/tsi/transport_security_grpc.h", ], @@ -31,7 +31,7 @@ ], ) -@@ -1978,9 +1976,6 @@ grpc_cc_library( +@@ -1982,9 +1980,6 @@ grpc_cc_library( "src/core/tsi/ssl_types.h", "src/core/tsi/transport_security_grpc.h", ], @@ -41,7 +41,7 @@ language = "c++", deps = [ "alts_frame_protector", -@@ -1990,6 +1985,7 @@ grpc_cc_library( +@@ -1994,6 +1989,7 @@ grpc_cc_library( "grpc_shadow_boringssl", "grpc_transport_chttp2_client_insecure", "tsi_interface", @@ -49,11 +49,11 @@ ], ) -diff --git a/WORKSPACE b/WORKSPACE -index 6cfa9d67b7..7258626215 100644 ---- a/WORKSPACE -+++ b/WORKSPACE -@@ -4,6 +4,24 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") +Index: grpc-1.25.0/WORKSPACE +=================================================================== +--- grpc-1.25.0.orig/WORKSPACE ++++ grpc-1.25.0/WORKSPACE +@@ -4,6 +4,24 @@ load("@bazel_tools//tools/build_defs/rep load("//bazel:grpc_deps.bzl", "grpc_deps", "grpc_test_only_deps") load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") @@ -78,38 +78,34 @@ grpc_deps() grpc_test_only_deps() -diff --git a/bazel/grpc_deps.bzl b/bazel/grpc_deps.bzl -index cce2f88fe8..2465a223e7 100644 ---- a/bazel/grpc_deps.bzl -+++ b/bazel/grpc_deps.bzl -@@ -26,11 +26,6 @@ def grpc_deps(): - actual = "@com_google_absl//absl/time:time", +Index: grpc-1.25.0/bazel/grpc_deps.bzl +=================================================================== +--- grpc-1.25.0.orig/bazel/grpc_deps.bzl ++++ grpc-1.25.0/bazel/grpc_deps.bzl +@@ -23,11 +23,6 @@ def grpc_deps(): ) -- native.bind( + native.bind( - name = "libssl", - actual = "@boringssl//:ssl", - ) - - native.bind( +- native.bind( name = "madler_zlib", actual = "@zlib//:zlib", -@@ -101,15 +96,6 @@ def grpc_deps(): + ) +@@ -97,14 +92,6 @@ def grpc_deps(): actual = "@io_opencensus_cpp//opencensus/stats:test_utils", ) - if "boringssl" not in native.existing_rules(): - http_archive( - name = "boringssl", -- # on the chromium-stable-with-bazel branch - # NOTE: This URL generates a tarball containing dynamic date - # information, so the sha256 is not consistent. -- url = "https://boringssl.googlesource.com/boringssl/+archive/afc30d43eef92979b05776ec0963c9cede5fb80f.tar.gz", +- url = "https://boringssl.googlesource.com/boringssl/+archive/83da28a68f32023fd3b95a8ae94991a07b1f6c62.tar.gz", - ) - if "zlib" not in native.existing_rules(): http_archive( name = "zlib", --- -2.16.4 - ++++++ v1.23.1.tar.gz -> v1.25.0.tar.gz ++++++ /work/SRC/openSUSE:Factory/grpc/v1.23.1.tar.gz /work/SRC/openSUSE:Factory/.grpc.new.6675/v1.25.0.tar.gz differ: char 12, line 1
