- version update to 3.7.4 * deps: require protobuf <4.0.0dev (#395) (6747720) * fix changelog header to consistent size (#396) (d4d2825) * fix type in docstring for map fields (3b845d6) - added patches fix https://github.com/googleapis/python-translate/issues/403 + python-google-cloud-translate-no-mock.patch OBS-URL: https://build.opensuse.org/request/show/981476 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-google-cloud-translate?expand=0&rev=7
85 lines
3.1 KiB
RPMSpec
85 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package python-google-cloud-translate
|
|
#
|
|
# Copyright (c) 2022 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/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
%define skip_python2 1
|
|
Name: python-google-cloud-translate
|
|
Version: 3.7.4
|
|
Release: 0
|
|
Summary: Google Cloud Translation API client library
|
|
License: Apache-2.0
|
|
URL: https://github.com/googleapis/python-translate
|
|
Source: https://files.pythonhosted.org/packages/source/g/google-cloud-translate/google-cloud-translate-%{version}.tar.gz
|
|
# https://github.com/googleapis/python-translate/issues/403
|
|
Patch0: python-google-cloud-translate-no-mock.patch
|
|
BuildRequires: %{python_module google-api-core >= 1.31.5}
|
|
BuildRequires: %{python_module google-cloud-core >= 1.3.0}
|
|
BuildRequires: %{python_module proto-plus >= 1.15.0}
|
|
BuildRequires: %{python_module setuptools}
|
|
# START TESTING SECTION
|
|
BuildRequires: %{python_module pytest-asyncio}
|
|
BuildRequires: %{python_module pytest}
|
|
# END TESTING SECTION
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-google-api-core >= 1.31.5
|
|
Requires: python-google-cloud-core >= 1.3.0
|
|
Requires: python-proto-plus >= 1.15.0
|
|
Requires(post): update-alternatives
|
|
Requires(postun):update-alternatives
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
With `Google Cloud Translation`_, you can dynamically translate text between
|
|
thousands of language pairs. The Google Cloud Translation API lets websites
|
|
and programs integrate with Google Cloud Translation programmatically.
|
|
|
|
%prep
|
|
%autosetup -p1 -n google-cloud-translate-%{version}
|
|
# add shebangs to installed scripts
|
|
sed -i '1i\#!%{__python3}' scripts/fixup_translate_v3_keywords.py
|
|
sed -i '1i\#!%{__python3}' scripts/fixup_translate_v3beta1_keywords.py
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_clone -a %{buildroot}%{_bindir}/fixup_translate_v3_keywords.py
|
|
%python_clone -a %{buildroot}%{_bindir}/fixup_translate_v3beta1_keywords.py
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%post
|
|
%{python_install_alternative fixup_translate_v3_keywords.py fixup_translate_v3beta1_keywords.py}
|
|
|
|
%postun
|
|
%{python_uninstall_alternative fixup_translate_v3_keywords.py fixup_translate_v3beta1_keywords.py}
|
|
|
|
%check
|
|
%pytest tests/unit -k 'not test_extra_headers'
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%license LICENSE
|
|
%{python_sitelib}/*
|
|
%python_alternative %{_bindir}/fixup_translate_v3_keywords.py
|
|
%python_alternative %{_bindir}/fixup_translate_v3beta1_keywords.py
|
|
|
|
%changelog
|