- aiocontextvars is only needed for older Python 3.6. Python 3.7 and beyond provide everything in stdlib contextvars. See upstreams' setup.cfg. Use rpm boolean dependencies to pull in aiocontextvars only for python36 if available (TW) or python3 if python3-base < 3.7 (Leap) OBS-URL: https://build.opensuse.org/request/show/866014 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-opentelemetry-api?expand=0&rev=9
64 lines
1.9 KiB
RPMSpec
64 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package python-opentelemetry-api
|
|
#
|
|
# Copyright (c) 2021 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-opentelemetry-api
|
|
Version: 0.17b0
|
|
Release: 0
|
|
Summary: OpenTelemetry Python API
|
|
License: Apache-2.0
|
|
URL: https://github.com/open-telemetry/opentelemetry-python/tree/master/opentelemetry-api
|
|
Source: https://files.pythonhosted.org/packages/source/o/opentelemetry-api/opentelemetry-api-%{version}.tar.gz
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: ((python3-aiocontextvars and python3-base < 3.7) or (python36-aiocontextvars and python36-base))
|
|
BuildArch: noarch
|
|
Requires: python-setuptools
|
|
%if %{python_version_nodots} < 37
|
|
Requires: python-aiocontextvars
|
|
%endif
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module pytest}
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
OpenTelemetry Python API
|
|
|
|
%prep
|
|
%setup -q -n opentelemetry-api-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%pytest
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%license LICENSE
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|