- Update to version 1.56.2: * [WRR] backport (gh#grpc/grpc#33694) to 1.56 (gh#grpc/grpc#33698) * [backport][iomgr][EventEngine] Improve server handling of file descriptor exhaustion (gh#grpc/grpc#33667) - Switch build to pip/wheel. Requires https://build.opensuse.org/request/show/1102481 OBS-URL: https://build.opensuse.org/request/show/1102482 OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio-tools?expand=0&rev=45
73 lines
2.2 KiB
RPMSpec
73 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package python-grpcio-tools
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
# PYTHON2 NOT SUPPORTED BY UPSTREAM
|
|
%define skip_python2 1
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-grpcio-tools
|
|
Version: 1.56.2
|
|
Release: 0
|
|
Summary: Protobuf code generator for gRPC
|
|
License: Apache-2.0
|
|
Group: Development/Languages/Python
|
|
URL: https://grpc.io
|
|
Source: https://files.pythonhosted.org/packages/source/g/grpcio-tools/grpcio-tools-%{version}.tar.gz
|
|
BuildRequires: %{python_module devel >= 3.7}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-grpcio >= %{version}
|
|
Requires: python-protobuf >= 3.5.0.post1
|
|
Requires: python-setuptools
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module grpcio >= %{version}}
|
|
BuildRequires: %{python_module protobuf >= 3.5.0.post1}
|
|
BuildRequires: %{python_module pytest}
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
This package provides a python-based Protobuf code generator for gRPC.
|
|
|
|
%prep
|
|
%setup -q -n grpcio-tools-%{version}
|
|
# Drop a hashbang from anon-exec script
|
|
sed -i "1{/\/usr\/bin\/env python/d}" grpc_tools/protoc.py
|
|
|
|
%build
|
|
%define _lto_cflags %{nil}
|
|
export CFLAGS="%{optflags}"
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
|
|
|
%check
|
|
%pytest_arch
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%{python_sitearch}/grpc_tools
|
|
%{python_sitearch}/grpcio_tools-%{version}.dist-info
|
|
|
|
%changelog
|