216 lines
6.7 KiB
RPMSpec
216 lines
6.7 KiB
RPMSpec
#
|
|
# spec file for package grpc
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define lver 36
|
|
%define lverp 1_59
|
|
%define src_install_dir /usr/src/%name
|
|
Name: grpc
|
|
Version: 1.59.2
|
|
Release: 0
|
|
Summary: HTTP/2-based Remote Procedure Call implementation
|
|
License: Apache-2.0
|
|
Group: Development/Tools/Building
|
|
URL: https://grpc.io/
|
|
Source: https://github.com/grpc/grpc/archive/v%version.tar.gz
|
|
Source2: %name-rpmlintrc
|
|
BuildRequires: abseil-cpp-devel
|
|
BuildRequires: cmake
|
|
BuildRequires: fdupes
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: opencensus-proto-source
|
|
BuildRequires: pkg-config
|
|
BuildRequires: pkgconfig(libcares) >= 1.19.1
|
|
BuildRequires: pkgconfig(openssl) >= 1.0.1
|
|
BuildRequires: pkgconfig(protobuf) >= 22
|
|
BuildRequires: pkgconfig(re2)
|
|
BuildRequires: pkgconfig(zlib)
|
|
|
|
%description
|
|
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%lver
|
|
Summary: HTTP/2-based Remote Procedure Call implementation
|
|
Group: System/Libraries
|
|
|
|
%description -n libgrpc%lver
|
|
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
|
|
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
|
|
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 libupb%lver
|
|
Summary: A small protobuf implementation in C
|
|
Group: System/Libraries
|
|
|
|
%description -n libupb%lver
|
|
μpb (often written 'upb') is a small protobuf implementation written in C.
|
|
|
|
upb generates a C API for creating, parsing, and serializing messages as
|
|
declared in .proto files. upb is heavily arena-based: all messages always live
|
|
in an arena (note: the arena can live in stack or static memory if desired).
|
|
|
|
%package devel
|
|
Summary: Development files for grpc, a HTTP/2 Remote Procedure Call implementation
|
|
Group: Development/Tools/Building
|
|
Requires: libgrpc%lver = %version
|
|
Requires: libgrpc%lverp = %version
|
|
Requires: libgrpc++%lverp = %version
|
|
Requires: libupb%lver = %version
|
|
Requires: pkgconfig(libcares)
|
|
Requires: pkgconfig(re2)
|
|
|
|
%description devel
|
|
This subpackage contains libraries and header files for developing
|
|
applications that want to make use of the gRPC reference implementation.
|
|
|
|
%package -n upb-devel
|
|
Summary: Developmnt files for upb
|
|
Group: Development/Tools/Building
|
|
Requires: libupb%lver = %version
|
|
|
|
%description -n upb-devel
|
|
μpb (often written 'upb') is a small protobuf implementation written in C.
|
|
|
|
upb generates a C API for creating, parsing, and serializing messages as
|
|
declared in .proto files. upb is heavily arena-based: all messages always live
|
|
in an arena (note: the arena can live in stack or static memory if desired).
|
|
|
|
This package provides development files for upb.
|
|
|
|
%package source
|
|
Summary: Source code of gRPC
|
|
Group: Development/Sources
|
|
BuildArch: noarch
|
|
|
|
%description -n grpc-source
|
|
This subpackage contains source code of the gRPC reference implementation.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
rm -Rf third_party/abseil-cpp/
|
|
|
|
%build
|
|
%define _lto_cflags %nil
|
|
# protoc is invoked strangely; make it happy with this dir or it will assert()
|
|
mkdir -p third_party/protobuf/src
|
|
|
|
cp -a /usr/src/opencensus-proto third_party/
|
|
export CFLAGS="%optflags -Wno-error"
|
|
export CXXFLAGS="$CFLAGS"
|
|
%cmake -DgRPC_INSTALL=ON \
|
|
-DgRPC_INSTALL_LIBDIR:PATH="%_lib" \
|
|
-DgRPC_INSTALL_CMAKEDIR:PATH="%_libdir/cmake/grpc" \
|
|
-DgRPC_ABSL_PROVIDER=package \
|
|
-DgRPC_CARES_PROVIDER=package \
|
|
-DgRPC_PROTOBUF_PROVIDER=package \
|
|
-DgRPC_RE2_PROVIDER=package \
|
|
-DgRPC_SSL_PROVIDER=package \
|
|
-DZLIB_LIBRARY=%{_libdir}/libz.so \
|
|
-DgRPC_ZLIB_PROVIDER=package \
|
|
-DCMAKE_CXX_STANDARD=17
|
|
%cmake_build
|
|
|
|
%install
|
|
b="%buildroot"
|
|
%cmake_install
|
|
|
|
pushd "$b/usr"
|
|
rm -fv lib/*.a share/grpc/*.pem
|
|
popd
|
|
|
|
# Install sources
|
|
pushd %__builddir
|
|
rm -fv CMakeFiles/*.log
|
|
make clean
|
|
find . -type f "(" -name "*.so" -o -name "*.o" -o -name ".git*" -o \
|
|
-name "*.bin" -o -name "*.out" ")" -exec rm -Rfv {} +
|
|
popd
|
|
# Don't include abseil-cpp in sources
|
|
rm -fr third_party/abseil-cpp/*
|
|
# Don't include non-deterministic log in sources
|
|
rm -f build/CMakeFiles/CMakeConfigureLog.yaml
|
|
|
|
mkdir -p "%buildroot/%src_install_dir"
|
|
cp -r * "%buildroot/%src_install_dir"
|
|
|
|
%fdupes %buildroot/%_prefix
|
|
|
|
# Checks cannot be run because of `make clean` above
|
|
#%%check
|
|
|
|
%post -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
|
|
%postun -n libgrpc++%lverp -p /sbin/ldconfig
|
|
%post -n libupb%lver -p /sbin/ldconfig
|
|
%postun -n libupb%lver -p /sbin/ldconfig
|
|
|
|
%files -n libgrpc%lver
|
|
%_libdir/libaddress_sorting.so.%{lver}*
|
|
%_libdir/libgpr*.so.%{lver}*
|
|
%_libdir/libgrpc*.so.%{lver}*
|
|
%_libdir/libutf8_range_lib.so.%{lver}*
|
|
|
|
%files -n libgrpc%lverp
|
|
%_libdir/libgrpc_authorization_provider.so.1.*
|
|
%_libdir/libgrpc_plugin_support.so.1.*
|
|
|
|
%files -n libgrpc++%lverp
|
|
%_libdir/libgrpc++*.so.*
|
|
%_libdir/libgrpcpp_channelz.so.*
|
|
|
|
%files -n libupb%lver
|
|
%_libdir/libupb*.so.%{lver}*
|
|
|
|
%files devel
|
|
%license LICENSE
|
|
%_bindir/*
|
|
%_includedir/*
|
|
%_libdir/pkgconfig/*.pc
|
|
%_libdir/*.so
|
|
%_libdir/cmake/grpc/
|
|
|
|
%files -n upb-devel
|
|
%_libdir/libupb*.so
|
|
|
|
%files source
|
|
%src_install_dir
|
|
|
|
%changelog
|