1
0
python-sentry-sdk/python-sentry-sdk.spec

91 lines
3.0 KiB
RPMSpec

#
# spec file for package python-sentry-sdk
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-sentry-sdk
Version: 0.10.2
Release: 0
Summary: Python SDK for Sentry.io
License: BSD-2-Clause
Group: Development/Languages/Python
Url: https://github.com/getsentry/sentry-python
Source0: https://github.com/getsentry/sentry-python/archive/%{version}/%{name}-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: python-rpm-macros
BuildRequires: %{python_module urllib3}
BuildRequires: %{python_module certifi}
BuildRequires: %{python_module Flask >= 0.8}
BuildRequires: %{python_module blinker >= 1.1}
BuildRequires: %{python_module bottle >= 0.12.13}
BuildRequires: %{python_module falcon >= 1.4}
# SECTION test requirements
BuildRequires: %{python_module hypothesis}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module pytest-django}
BuildRequires: %{python_module pytest-xdist}
BuildRequires: %{python_module pytest-localserver}
BuildRequires: %{python_module pytest-cov}
BuildRequires: %{python_module tox}
BuildRequires: %{python_module Werkzeug}
#BuildRequires: %%{python_module Django}
BuildRequires: %{python_module rq}
BuildRequires: %{python_module pyramid}
BuildRequires: %{python_module tornado}
BuildRequires: %{python_module aiohttp}
# /SECTION
Requires: python-urllib3
Requires: python-certifi
Requires: python-Flask >= 0.8
Requires: python-blinker >= 1.1
Requires: python-bottle >= 0.12.13
Requires: python-falcon >= 1.4
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%python_subpackages
%description
The new Python SDK for Sentry.io.
https://sentry.io/for/python/
%prep
%setup -q -n sentry-python-%{version}
%build
# Remove export CFLAGS=... for noarch packages (unneeded)
export CFLAGS="%{optflags}"
%python_build
%install
%python_install
%check
export DJANGO_SETTINGS_MODULE=tests.integrations.django.myapp.settings
# skip integrations
#%%python_expand $python setup.py test
%files %{python_files}
%defattr(-,root,root)
%doc
%{python_sitelib}/*
%pycache_only %{python_sitelib}/sentry_sdk/__pycache__/*
%pycache_only %{python_sitelib}/sentry_sdk/integrations/__pycache__/serverless.*
%changelog