Accepting request 722104 from home:jberry:python-sentry-sdk

Python SDK for Sentry.io

OBS-URL: https://build.opensuse.org/request/show/722104
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sentry-sdk?expand=0&rev=1
This commit is contained in:
Tomáš Chvátal 2019-08-12 14:18:35 +00:00 committed by Git OBS Bridge
commit ac61aefd54
5 changed files with 131 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -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

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b18f002dde09bb2986893dd7bb42a410f76d4c105cd02ce6f5723252869859ec
size 124485

14
python-sentry-sdk.changes Normal file
View File

@ -0,0 +1,14 @@
-------------------------------------------------------------------
Fri Aug 9 22:36:25 UTC 2019 - Jimmy Berry <jberry@suse.com>
- Set BuildArch to noarch.
-------------------------------------------------------------------
Fri Aug 9 22:30:15 UTC 2019 - Jimmy Berry <jberry@suse.com>
- Update to 0.10.2.
-------------------------------------------------------------------
Fri Jun 7 10:19:06 UTC 2019 - ecsos@opensuse.org
- initial version 0.9.0

90
python-sentry-sdk.spec Normal file
View File

@ -0,0 +1,90 @@
#
# 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