2017-04-19 15:05:25 +02:00
#
# spec file for package grpc
#
# Copyright (c) 2017 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
# 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 http://bugs.opensuse.org/
#
%define lname libgrpc-1_2_3
Name : grpc
Version : 1.2.3
Release : 0
Summary : HTTP/2-based Remote Procedure Call implementation
License : BSD-3-Clause
Group : Development/Tools/Building
Url : http://grpc.io/
Source : https://github.com/grpc/grpc/archive/v%version.tar.gz
Patch1 : grpc-protobuf.diff
Patch2 : grpc-zlib.diff
Patch3 : grpc-versioning.diff
BuildRequires : cmake
BuildRequires : gcc-c++
BuildRequires : pkg-config
BuildRequires : pkgconfig(openssl) >= 1.0.1
BuildRequires : pkgconfig(protobuf) >= 3
BuildRequires : pkgconfig(zlib)
BuildRoot : %{_tmppath} /%{name} -%{version} -build
%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 %lname
Summary : HTTP/2-based Remote Procedure Call implementation
Group : System/Libraries
%description -n %lname
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 devel
Summary : Development files for grpc, a HTTP/2 Remote Procedure Call implementation
Group : Development/Tools/Building
Requires : %lname = %version
%description devel
This subpackage contains libraries and header files for developing
applications that want to make use of the gRPC reference implementation.
%prep
%setup -q
%patch -P 1 -P 2 -P 3 -p1
%build
make LIBDIR=x CONFIG=opt \
x/opt/pkgconfig/grpc.pc x/opt/pkgconfig/grpc_unsecure.pc \
x/opt/pkgconfig/grpc++.pc x/opt/pkgconfig/grpc++_unsecure.pc
%cmake \
-DgRPC_PROTOBUF_PROVIDER=package \
-DgRPC_SSL_PROVIDER=package \
-DgRPC_ZLIB_PROVIDER=package
#[ 36%] Running gRPC C++ protocol buffer compiler on src/proto/grpc/reflection/v1alpha/reflection.proto
#cd /home/abuild/rpmbuild/BUILD/grpc-1.2.3 && /usr/bin/protoc --grpc_out=/home/abuild/rpmbuild/BUILD/grpc-1.2.3/build/gens --cpp_out=/home/abuild/rpmbuild/BUILD/grpc-1.2.3/build/gens --plugin=protoc-gen-grpc=/home/abuild/rpmbuild/BUILD/grpc-1.2.3/build/grpc_cpp_plugin -I . src/proto/grpc/reflection/v1alpha/reflection.proto
#/home/abuild/rpmbuild/BUILD/grpc-1.2.3/build/grpc_cpp_plugin: error while loading shared libraries: libgrpc_plugin_support.so: cannot open shared object file: No such file or directory
#--grpc_out: protoc-gen-grpc: Plugin failed with status code 127.
export LD_LIBRARY_PATH=" $ P W D "
%make_jobs
%install
b=" % b u i l d r o o t "
mkdir -p " $ b / %_libdir / p k g c o n f i g "
cp x/opt/pkgconfig/*.pc " $ b / %_libdir / p k g c o n f i g / "
%cmake_install
for i in " $ b / %_libdir " /libg*-%version.so; do
ln -s " $ { i # # * / } " " $ { i % % - % v e r s i o n . s o } . s o "
done
%post -n libgrpc-1_2_3 -p /sbin/ldconfig
%postun -n libgrpc-1_2_3 -p /sbin/ldconfig
%files -n libgrpc-1_2_3
%defattr (-,root,root)
%_libdir /libg*-%version.so
%files devel
%defattr (-,root,root)
2017-04-19 19:27:18 +02:00
%doc LICENSE PATENTS
2017-04-19 15:05:25 +02:00
%_bindir /*
%_includedir /*
%_libdir /cmake/
%_libdir /pkgconfig/*.pc
%_libdir /libgpr.so
%_libdir /libgrpc++.so
%_libdir /libgrpc++_cronet.so
%_libdir /libgrpc++_reflection.so
%_libdir /libgrpc++_unsecure.so
%_libdir /libgrpc.so
%_libdir /libgrpc_cronet.so
%_libdir /libgrpc_csharp_ext.so
%_libdir /libgrpc_plugin_support.so
%_libdir /libgrpc_unsecure.so
%changelog