sentry-python (0.12.2-1) unstable; urgency=medium

* New upstream release

[dgit import unpatched sentry-python 0.12.2-1]
This commit is contained in:
William Grzybowski 2019-09-23 21:44:48 +02:00
commit 3ba2eb3302
11 changed files with 146 additions and 0 deletions

31
debian/changelog vendored Normal file
View File

@ -0,0 +1,31 @@
sentry-python (0.12.2-1) unstable; urgency=medium
* New upstream release
-- William Grzybowski <william@grzy.org> Mon, 23 Sep 2019 16:44:48 -0300
sentry-python (0.12.0-1) unstable; urgency=medium
* New upstream release
* d/control:
- Add new dependencies to Build-Depends
-- William Grzybowski <william@grzy.org> Wed, 18 Sep 2019 12:38:30 -0300
sentry-python (0.9.5-2) unstable; urgency=medium
* Upload to unstable
* d/control:
- Change Maintainer to DPMT
- Change Vcs-* to DPMT
- Update Standards-Version to 4.4.0
* d/gbp.conf: no longer needed in DPMT repository
* d/rules: do not hard-code python version
-- William Grzybowski <william@grzy.org> Mon, 16 Sep 2019 10:56:44 -0300
sentry-python (0.9.5-1) experimental; urgency=medium
* Initial release (Closes: #931461)
-- William Grzybowski <william@grzy.org> Thu, 04 Jul 2019 21:10:34 -0300

3
debian/clean vendored Normal file
View File

@ -0,0 +1,3 @@
.pytest_cache/*.md
.pytest_cache/v/cache/*
sentry_sdk.egg-info/*

38
debian/control vendored Normal file
View File

@ -0,0 +1,38 @@
Source: sentry-python
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <team+python-modules@tracker.debian.org>
Uploaders: William Grzybowski <william@grzy.org>
Build-Depends: debhelper-compat (= 12),
dh-python,
python3-all,
python3-blinker,
python3-certifi,
python3-eventlet,
python3-gevent,
python3-setuptools,
python3-flask-login,
python3-hypothesis,
python3-pytest,
python3-pytest-localserver,
python3-pytest-xdist,
python3-urllib3,
python3-werkzeug
Standards-Version: 4.4.0
Homepage: https://github.com/getsentry/sentry-python
Vcs-Browser: https://salsa.debian.org/python-team/modules/sentry-python
Vcs-Git: https://salsa.debian.org/python-team/modules/sentry-python.git
Testsuite: autopkgtest-pkg-python
Package: python3-sentry-sdk
Architecture: all
Depends: ${python3:Depends},
${misc:Depends},
python3-certifi,
python3-urllib3
Description: New Python SDK for Sentry.io (Python 3)
Python client for Sentry. It provides full out-of-the-box support for
many of the popular frameworks, including Django, and Flask. Raven also
includes drop-in support for any WSGI-compatible web application.
.
This package installs the library for Python 3.

34
debian/copyright vendored Normal file
View File

@ -0,0 +1,34 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: sentry-python
Upstream-Contact: Sentry <hello@getsentry.com>
Source: https://github.com/getsentry/sentry-python
Files: *
Copyright: 2018-2019 The Sentry Team and individual contributors
License: BSD-2-Clause
Files: debian/*
Copyright: 2019 William Grzybowski <william@grzy.org>
License: BSD-2-Clause
License: BSD-2-Clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE HOLDERS OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

1
debian/docs vendored Normal file
View File

@ -0,0 +1 @@
CONTRIBUTING.md README.md

1
debian/examples vendored Normal file
View File

@ -0,0 +1 @@
examples/basic.py

24
debian/rules vendored Executable file
View File

@ -0,0 +1,24 @@
#!/usr/bin/make -f
#export DH_VERBOSE = 1
export PYBUILD_NAME=sentry_sdk
# Disable tests failing mostly because of internet access (httpbin.org)
export PYBUILD_TEST_ARGS=-k '\
not test_basic and \
not test_403_not_captured and \
not test_half_initialized and \
not test_httplib_misuse and \
not test_crumb_capture and \
not test_errors and \
not test_proxy_bothselect_httpenv and \
not test_proxy_httpselect_httpsenv and \
not test_proxy_none_noenv and \
not test_proxy_http_fallback_http and \
not test_proxy_none_httpenv_fallback and \
not test_transport_works \
'
# Remove directory created while running tests on build
export PYBUILD_AFTER_INSTALL_python3=rm -rf {destdir}/usr/lib/python3*/dist-packages/.hypothesis
%:
dh $@ --with python3 --buildsystem=pybuild

4
debian/salsa-ci.yml vendored Normal file
View File

@ -0,0 +1,4 @@
---
include:
- https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
- https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (quilt)

5
debian/upstream/metadata vendored Normal file
View File

@ -0,0 +1,5 @@
Bug-Database: https://github.com/getsentry/sentry-python/issues
Bug-Submit: https://github.com/getsentry/sentry-python/issues/new
Name: sentry-python
Repository: https://github.com/getsentry/sentry-python.git
Repository-Browse: https://github.com/getsentry/sentry-python

4
debian/watch vendored Normal file
View File

@ -0,0 +1,4 @@
version=4
opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%sentry-python-$1.tar.gz%" \
https://github.com/getsentry/sentry-python/tags \
(?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian uupdate