- Update to release 1.54
OBS-URL: https://build.opensuse.org/package/show/devel:tools/grpc?expand=0&rev=136
This commit is contained in:
parent
5f1ace30f1
commit
046581cc4f
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 14 11:07:33 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 1.54
|
||||||
|
* XDS: enable XDS federation by default
|
||||||
|
* TlsCreds: Support revocation of intermediate in chain
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 2 00:11:51 UTC 2022 - Jan Engelhardt <jengelh@inai.de>
|
Fri Dec 2 00:11:51 UTC 2022 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
45
grpc.spec
45
grpc.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package grpc
|
# spec file for package grpc
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,11 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define lver 29
|
%define lver 31
|
||||||
%define lverp 1_51
|
%define lverp 1_54
|
||||||
%define src_install_dir /usr/src/%name
|
%define src_install_dir /usr/src/%name
|
||||||
Name: grpc
|
Name: grpc
|
||||||
Version: 1.51.1
|
Version: 1.54.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: HTTP/2-based Remote Procedure Call implementation
|
Summary: HTTP/2-based Remote Procedure Call implementation
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@ -55,30 +55,24 @@ The reference implementation of the gRPC protocol, done on top of
|
|||||||
HTTP/2 with support for synchronous and asynchronous calls. gRPC uses
|
HTTP/2 with support for synchronous and asynchronous calls. gRPC uses
|
||||||
Protocol Buffers as the Interface Definition Language by default.
|
Protocol Buffers as the Interface Definition Language by default.
|
||||||
|
|
||||||
|
%package -n libgrpc%lverp
|
||||||
|
Summary: HTTP/2-based Remote Procedure Call implementation
|
||||||
|
Group: System/Libraries
|
||||||
|
|
||||||
|
%description -n libgrpc%lverp
|
||||||
|
The reference implementation of the gRPC protocol, done on top of
|
||||||
|
HTTP/2 with support for synchronous and asynchronous calls. gRPC uses
|
||||||
|
Protocol Buffers as the Interface Definition Language by default.
|
||||||
|
|
||||||
%package -n libgrpc++%lverp
|
%package -n libgrpc++%lverp
|
||||||
Summary: HTTP/2-based Remote Procedure Call implementation
|
Summary: HTTP/2-based Remote Procedure Call implementation
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
%if "%lverp" == "1"
|
|
||||||
# prior error in packaging
|
|
||||||
Conflicts: libgrpc6
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%description -n libgrpc++%lverp
|
%description -n libgrpc++%lverp
|
||||||
The reference implementation of the gRPC protocol, done on top of
|
The reference implementation of the gRPC protocol, done on top of
|
||||||
HTTP/2 with support for synchronous and asynchronous calls. gRPC uses
|
HTTP/2 with support for synchronous and asynchronous calls. gRPC uses
|
||||||
Protocol Buffers as the Interface Definition Language by default.
|
Protocol Buffers as the Interface Definition Language by default.
|
||||||
|
|
||||||
%package -n libgrpc_plugin_support%lverp
|
|
||||||
Summary: HTTP/2-based Remote Procedure Call implementation - plugin support
|
|
||||||
Group: System/Libraries
|
|
||||||
|
|
||||||
%description -n libgrpc_plugin_support%lverp
|
|
||||||
The reference implementation of the gRPC protocol, done on top of
|
|
||||||
HTTP/2 with support for synchronous and asynchronous calls. gRPC uses
|
|
||||||
Protocol Buffers as the Interface Definition Language by default.
|
|
||||||
|
|
||||||
This package provides the shared library to support plugins for grpc.
|
|
||||||
|
|
||||||
%package -n libupb%lver
|
%package -n libupb%lver
|
||||||
Summary: A small protobuf implementation in C
|
Summary: A small protobuf implementation in C
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
@ -94,8 +88,8 @@ in an arena (note: the arena can live in stack or static memory if desired).
|
|||||||
Summary: Development files for grpc, a HTTP/2 Remote Procedure Call implementation
|
Summary: Development files for grpc, a HTTP/2 Remote Procedure Call implementation
|
||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
Requires: libgrpc%lver = %version
|
Requires: libgrpc%lver = %version
|
||||||
|
Requires: libgrpc%lverp = %version
|
||||||
Requires: libgrpc++%lverp = %version
|
Requires: libgrpc++%lverp = %version
|
||||||
Requires: libgrpc_plugin_support%lverp = %version
|
|
||||||
Requires: libupb%lver = %version
|
Requires: libupb%lver = %version
|
||||||
Requires: pkgconfig(libcares)
|
Requires: pkgconfig(libcares)
|
||||||
Requires: pkgconfig(re2)
|
Requires: pkgconfig(re2)
|
||||||
@ -179,10 +173,10 @@ cp -r * "%buildroot/%src_install_dir"
|
|||||||
|
|
||||||
%post -n libgrpc%lver -p /sbin/ldconfig
|
%post -n libgrpc%lver -p /sbin/ldconfig
|
||||||
%postun -n libgrpc%lver -p /sbin/ldconfig
|
%postun -n libgrpc%lver -p /sbin/ldconfig
|
||||||
|
%post -n libgrpc%lverp -p /sbin/ldconfig
|
||||||
|
%postun -n libgrpc%lverp -p /sbin/ldconfig
|
||||||
%post -n libgrpc++%lverp -p /sbin/ldconfig
|
%post -n libgrpc++%lverp -p /sbin/ldconfig
|
||||||
%postun -n libgrpc++%lverp -p /sbin/ldconfig
|
%postun -n libgrpc++%lverp -p /sbin/ldconfig
|
||||||
%post -n libgrpc_plugin_support%lverp -p /sbin/ldconfig
|
|
||||||
%postun -n libgrpc_plugin_support%lverp -p /sbin/ldconfig
|
|
||||||
%post -n libupb%lver -p /sbin/ldconfig
|
%post -n libupb%lver -p /sbin/ldconfig
|
||||||
%postun -n libupb%lver -p /sbin/ldconfig
|
%postun -n libupb%lver -p /sbin/ldconfig
|
||||||
|
|
||||||
@ -191,13 +185,14 @@ cp -r * "%buildroot/%src_install_dir"
|
|||||||
%_libdir/libgpr*.so.%{lver}*
|
%_libdir/libgpr*.so.%{lver}*
|
||||||
%_libdir/libgrpc*.so.%{lver}*
|
%_libdir/libgrpc*.so.%{lver}*
|
||||||
|
|
||||||
|
%files -n libgrpc%lverp
|
||||||
|
%_libdir/libgrpc_authorization_provider.so.1.*
|
||||||
|
%_libdir/libgrpc_plugin_support.so.1.*
|
||||||
|
|
||||||
%files -n libgrpc++%lverp
|
%files -n libgrpc++%lverp
|
||||||
%_libdir/libgrpc++*.so.*
|
%_libdir/libgrpc++*.so.*
|
||||||
%_libdir/libgrpcpp_channelz.so.*
|
%_libdir/libgrpcpp_channelz.so.*
|
||||||
|
|
||||||
%files -n libgrpc_plugin_support%lverp
|
|
||||||
%_libdir/libgrpc_plugin_support.so.1.*
|
|
||||||
|
|
||||||
%files -n libupb%lver
|
%files -n libupb%lver
|
||||||
%_libdir/libupb*.so.%{lver}*
|
%_libdir/libupb*.so.%{lver}*
|
||||||
|
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b55696fb249669744de3e71acc54a9382bea0dce7cd5ba379b356b12b82d4229
|
|
||||||
size 8550112
|
|
3
v1.54.0.tar.gz
Normal file
3
v1.54.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5e53505a6c84030a26c4fddd71b3f46feec8e0a8eccff2a903b189d349ca6ff5
|
||||||
|
size 8900779
|
Loading…
Reference in New Issue
Block a user