grpc/grpc.spec

195 lines
6.0 KiB
RPMSpec
Raw Normal View History

2019-12-25 18:06:46 +08:00
Name: grpc
2020-08-28 17:37:35 +08:00
Version: 1.31.0
2022-10-20 06:45:40 +00:00
Release: 7
2019-12-25 18:06:46 +08:00
Summary: A modern, open source high performance RPC framework that can run in any environment
License: ASL 2.0
URL: https://www.grpc.io
Source0: https://github.com/grpc/grpc/archive/v%{version}/%{name}-%{version}.tar.gz
2020-08-28 17:37:35 +08:00
Patch0000: Copy-channel-args-hash-before-appending-ruby-user-ag.patch
Patch0001: Ran-generate_proto_ruby.sh-to-update-generated-files.patch
Patch0002: Add-ABSL_RANDOM_HWAES_FLAGS.patch
Patch0003: Fix-destruction-race-between-subchannel-and-client_c.patch
Patch0004: Fix-use-after-free-by-removing-stream-from-transport.patch
Patch0005: repair-gflags-compile-error-with-cmake.patch
Patch0006: repair-pkgconfig-path.patch
Patch0007: add-secure-compile-option-in-Makefile.patch
2020-12-31 10:56:33 +08:00
Patch0008: fix-re2-build-error.patch
Patch0009: allow-grpcio-to-be-build-against-system-re2.patch
Patch0010: grpc-1.31.0-python-grpcio-use-system-abseil.patch
Patch0011: backport-Upgrade-Abseil-to-LTS-2020923.patch
Patch0012: backport-Generating-projects.patch
2019-12-25 18:06:46 +08:00
2020-03-20 11:44:40 +08:00
BuildRequires: gcc-c++ pkgconfig protobuf-devel protobuf-compiler gdb
2020-12-31 10:56:33 +08:00
BuildRequires: openssl-devel c-ares-devel gflags-devel gtest-devel zlib-devel gperftools-devel
2019-12-25 18:06:46 +08:00
BuildRequires: python3-devel python3-setuptools python3-Cython
2020-08-28 17:37:35 +08:00
BuildRequires: cmake >= 3.13.0
2020-12-31 10:56:33 +08:00
BuildRequires: pkgconfig(re2)
BuildRequires: abseil-cpp-devel
Requires: protobuf-compiler gflags abseil-cpp
2019-12-25 18:06:46 +08:00
Provides: %{name}-plugins = %{version}-%{release}
Obsoletes: %{name}-plugins < %{version}-%{release}
2019-09-30 10:51:59 -04:00
%description
gRPC is a modern open source high performance RPC framework that can run in any environment.
It can efficiently connect services in and across data centers with pluggable support for
load balancing, tracing, health checking and authentication. It is also applicable in last
mile of distributed computing to connect devices, mobile applications and browsers to backend services.
2019-12-25 18:06:46 +08:00
%package devel
Summary: gRPC library development files
Requires: %{name} = %{version}-%{release}
2020-12-31 10:56:33 +08:00
Requires: pkgconfig(re2)
2019-09-30 10:51:59 -04:00
2019-12-25 18:06:46 +08:00
%description devel
2019-09-30 10:51:59 -04:00
Development headers and files for gRPC libraries.
%package -n python3-grpcio
2019-12-25 18:06:46 +08:00
Summary: Python3 language bindings for gRPC
Requires: %{name} = %{version}-%{release}
2019-09-30 10:51:59 -04:00
%{?python_provide:%python_provide python3-%{pypi_name}}
%description -n python3-grpcio
Python3 bindings for gRPC.
%prep
2020-08-28 17:37:35 +08:00
%autosetup -p1 -n %{name}-%{version}
2019-12-25 18:06:46 +08:00
sed -i 's:^prefix ?= .*:prefix ?= %{_prefix}:' Makefile
sed -i 's:$(prefix)/lib:$(prefix)/%{_lib}:' Makefile
sed -i 's:^GTEST_LIB =.*::' Makefile
2019-09-30 10:51:59 -04:00
%build
2020-08-28 17:37:35 +08:00
mkdir -p cmake/build
cd cmake/build
cmake ../../ -DgRPC_INSTALL=ON\
-DgRPC_CARES_PROVIDER=package \
-DgRPC_PROTOBUF_PROVIDER=package \
-DgRPC_SSL_PROVIDER=package \
-DgRPC_ZLIB_PROVIDER=package \
2020-12-31 10:56:33 +08:00
-DgRPC_RE2_PROVIDER=package \
-DgRPC_ABSL_PROVIDER=package \
2020-08-28 17:37:35 +08:00
-DgRPC_GFLAGS_PROVIDER=package \
-DgRPC_INSTALL_LIBDIR=%{buildroot}%{_libdir} \
-DgRPC_INSTALL_BINDIR=%{buildroot}%{_bindir} \
-DgRPC_INSTALL_INCLUDEDIR=%{buildroot}%{_includedir} \
-DgRPC_INSTALL_CMAKEDIR=%{buildroot}%{_prefix}/lib/cmake/%{name} \
-DgRPC_INSTALL_SHAREDIR=%{buildroot}%{_datadir}/%{name} \
-DgRPC_INSTALL_PKGCONFIGDIR=%{buildroot}%{_libdir}/pkgconfig \
-DCMAKE_INSTALL_PREFIX=%{_prefix} \
2022-10-20 06:45:40 +00:00
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_VERBOSE_MAKEFILE=ON
2020-12-31 10:56:33 +08:00
make -j24 V=1
2019-09-30 10:51:59 -04:00
2019-12-25 18:06:46 +08:00
# build python module
2019-09-30 10:51:59 -04:00
export GRPC_PYTHON_BUILD_WITH_CYTHON=True
export GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=True
export GRPC_PYTHON_BUILD_SYSTEM_ZLIB=True
export GRPC_PYTHON_BUILD_SYSTEM_CARES=True
2020-12-31 10:56:33 +08:00
export GRPC_PYTHON_BUILD_SYSTEM_RE2=True
export GRPC_PYTHON_BUILD_SYSTEM_ABSL=True
2019-09-30 10:51:59 -04:00
export CFLAGS="%optflags"
2020-12-31 10:56:33 +08:00
cd ../..
2019-09-30 10:51:59 -04:00
%py3_build
%install
2020-08-28 17:37:35 +08:00
cd cmake/build
make install/local
rm -rf %{buildroot}%{_prefix}/lib
2019-09-30 10:51:59 -04:00
%delete_la_and_a
2020-12-31 10:56:33 +08:00
cd ../..
2019-09-30 10:51:59 -04:00
%py3_install
2019-12-25 18:06:46 +08:00
%ldconfig_scriptlets
2019-09-30 10:51:59 -04:00
%files
2019-12-25 18:06:46 +08:00
%defattr(-,root,root)
2019-09-30 10:51:59 -04:00
%doc README.md
%license LICENSE
%{_bindir}/grpc_*_plugin
2019-12-25 18:06:46 +08:00
%{_libdir}/*.so.1*
2020-08-28 17:37:35 +08:00
%{_datadir}/%{name}
2019-09-30 10:51:59 -04:00
%files devel
2019-12-25 18:06:46 +08:00
%defattr(-,root,root)
2019-09-30 10:51:59 -04:00
%{_libdir}/*.so
%{_libdir}/pkgconfig/*
%{_includedir}/grpc
%{_includedir}/grpc++
%{_includedir}/grpcpp
%files -n python3-grpcio
2019-12-25 18:06:46 +08:00
%defattr(-,root,root)
2019-09-30 10:51:59 -04:00
%{python3_sitearch}/grpc
%{python3_sitearch}/grpcio-%{version}-py?.?.egg-info
%changelog
2022-10-20 06:45:40 +00:00
* Thu Oct 20 2022 zhouyihang <zhouyihang3@h-partners.com> - 1.31.0-7
- Type:bugfix
- ID:NA
- SUG:NA
- DESC:add some secure compilation options
* Tue Oct 11 2022 gaihuiying <eaglegai@163.com> - 1.31.0-6
- Type:bugfix
- ID:NA
- SUG:NA
- DESC:fix adjust to abseil-cpp 20210324,since it dont provides absl_dynamic_annotations library anymore
* Tue Oct 19 2021 gaihuiying <gaihuiying1@huawei.com> - 1.31.0-5
- Type:requirement
- ID:NA
- SUG:NA
- DESC:separate abseil-cpp from grpc source
* Thu Jun 10 2021 gaihuiying <gaihuiying1@huawei.com> - 1.31.0-4
- Type:requirement
- ID:NA
- SUG:NA
- DESC:delete benchmark and googletest sources in grpc
* Fri Mar 26 2021 liulong <liulong20@huawei.com> - 1.31.0-3
- Type:requirement
- ID:NA
- SUG:NA
- DESC:rebuild version to 1.31.0-3
2020-12-31 10:56:33 +08:00
* Wed Dec 09 2020 gaihuiying <gaihuiying1@huawei.com> - 1.31.0-2
- Type:requirement
- ID:NA
- SUG:NA
- DESC:separate re2 from grpc source
2020-08-28 17:37:35 +08:00
* Mon Aug 28 2020 liuxin <liuxin264@huawei.com> - 1.31.0-1
- Type:requirement
- ID:NA
- SUG:NA
- DESC:update grpc version to 1.31.0
2020-08-18 21:58:42 +08:00
* Tue Aug 18 2020 chenyaqiang <chenyaqiang@huawei.com> - 1.28.1-3
- rebuild for package build and clarify last changelog info
2020-08-18 21:22:10 +08:00
* Mon May 11 2020 openEuler Buildteam <buildteam@openeuler.org> - 1.28.1-2
- Type:rebuild
- ID:NA
- SUG:NA
- DESC:update to 1.28.2
2020-05-11 18:25:38 +08:00
* Mon May 11 2020 openEuler Buildteam <buildteam@openeuler.org> - 1.28.1-1
- Type:requirement
- ID:NA
- SUG:NA
- DESC:update to 1.28.1
2020-03-20 11:44:40 +08:00
* Fri Mar 20 2020 songnannan <songnannan2@huawei.com> - 1.22.0-3
- add gdb in buildrequires
2020-01-11 16:45:03 +08:00
* Sat Jan 11 2020 openEuler Buildteam <buildteam@openeuler.org> - 1.22.0-2
- Delete unused patch
2019-12-25 18:06:46 +08:00
* Sat Dec 21 2019 openEuler Buildteam <buildteam@openeuler.org> - 1.22.0-1
2020-08-29 14:22:38 +08:00
- Package init