From cb72c54a23c5b3ce7adc54956e8f4f93b6d128f2695d3f1a1e2ba3609775287b Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Wed, 21 Oct 2020 11:49:13 +0000 Subject: [PATCH] Accepting request 842830 from home:buschmann23:branches:devel:languages:python required by python-google-cloud-translate 3.0.0+ OBS-URL: https://build.opensuse.org/request/show/842830 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-proto-plus?expand=0&rev=1 --- .gitattributes | 23 ++++++++++++++ .gitignore | 1 + proto-plus-1.11.0.tar.gz | 3 ++ python-proto-plus.changes | 5 +++ python-proto-plus.spec | 66 +++++++++++++++++++++++++++++++++++++++ 5 files changed, 98 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 proto-plus-1.11.0.tar.gz create mode 100644 python-proto-plus.changes create mode 100644 python-proto-plus.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/proto-plus-1.11.0.tar.gz b/proto-plus-1.11.0.tar.gz new file mode 100644 index 0000000..23396d9 --- /dev/null +++ b/proto-plus-1.11.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:416a0f13987789333cd8760a0ee998f8eccd6d7165ee9f283d64ca2de3e8774d +size 44004 diff --git a/python-proto-plus.changes b/python-proto-plus.changes new file mode 100644 index 0000000..5997f05 --- /dev/null +++ b/python-proto-plus.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Tue Oct 20 11:42:01 UTC 2020 - Matthias Fehring + +- initial package version 1.11.0 + diff --git a/python-proto-plus.spec b/python-proto-plus.spec new file mode 100644 index 0000000..ef3389b --- /dev/null +++ b/python-proto-plus.spec @@ -0,0 +1,66 @@ +# +# spec file for package python-proto-plus +# +# Copyright (c) 2020 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 +%define modname proto-plus +Name: python-proto-plus +Version: 1.11.0 +Release: 0 +Summary: Pythonic Protocol Buffers +License: Apache-2.0 +URL: https://github.com/googleapis/proto-plus-python +Source0: https://files.pythonhosted.org/packages/source/p/%{modname}/%{modname}-%{version}.tar.gz +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module protobuf >= 3.12.0} +BuildRequires: python-rpm-macros +# SECTION test requirements +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module google-api-core >= 1.22.2} +# /SECTION +BuildRequires: fdupes +Requires: python-protobuf >= 3.12.0 +BuildArch: noarch +%python_subpackages + +%description +This is a wrapper around protocol buffers. Protocol buffers is +a specification format for APIs, such as those inside Google. +This library provides protocol buffer message classes and objects +that largely behave like native Python types. + +%prep +%setup -q -n %{modname}-%{version} + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%pytest + +%files %{python_files} +%license LICENSE +%doc README.rst +%{python_sitelib}/* + +%changelog