From 0a36ac10c716a9c1096291aefc214c0754d55d4e Mon Sep 17 00:00:00 2001 From: William Grzybowski Date: Mon, 23 Sep 2019 21:44:48 +0200 Subject: [PATCH] Import sentry-python_0.12.2-1.debian.tar.xz [dgit import tarball sentry-python 0.12.2-1 sentry-python_0.12.2-1.debian.tar.xz] --- changelog | 31 +++++++++++++++++++++++++++++++ clean | 3 +++ control | 38 ++++++++++++++++++++++++++++++++++++++ copyright | 34 ++++++++++++++++++++++++++++++++++ docs | 1 + examples | 1 + rules | 24 ++++++++++++++++++++++++ salsa-ci.yml | 4 ++++ source/format | 1 + upstream/metadata | 5 +++++ watch | 4 ++++ 11 files changed, 146 insertions(+) create mode 100644 changelog create mode 100644 clean create mode 100644 control create mode 100644 copyright create mode 100644 docs create mode 100644 examples create mode 100755 rules create mode 100644 salsa-ci.yml create mode 100644 source/format create mode 100644 upstream/metadata create mode 100644 watch diff --git a/changelog b/changelog new file mode 100644 index 0000000..e81150f --- /dev/null +++ b/changelog @@ -0,0 +1,31 @@ +sentry-python (0.12.2-1) unstable; urgency=medium + + * New upstream release + + -- William Grzybowski 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 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 Mon, 16 Sep 2019 10:56:44 -0300 + +sentry-python (0.9.5-1) experimental; urgency=medium + + * Initial release (Closes: #931461) + + -- William Grzybowski Thu, 04 Jul 2019 21:10:34 -0300 diff --git a/clean b/clean new file mode 100644 index 0000000..dfcc161 --- /dev/null +++ b/clean @@ -0,0 +1,3 @@ +.pytest_cache/*.md +.pytest_cache/v/cache/* +sentry_sdk.egg-info/* diff --git a/control b/control new file mode 100644 index 0000000..6ecf2ea --- /dev/null +++ b/control @@ -0,0 +1,38 @@ +Source: sentry-python +Section: python +Priority: optional +Maintainer: Debian Python Modules Team +Uploaders: William Grzybowski +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. diff --git a/copyright b/copyright new file mode 100644 index 0000000..c7a8edb --- /dev/null +++ b/copyright @@ -0,0 +1,34 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: sentry-python +Upstream-Contact: Sentry +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 +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. diff --git a/docs b/docs new file mode 100644 index 0000000..40c176b --- /dev/null +++ b/docs @@ -0,0 +1 @@ +CONTRIBUTING.md README.md diff --git a/examples b/examples new file mode 100644 index 0000000..937cfff --- /dev/null +++ b/examples @@ -0,0 +1 @@ +examples/basic.py diff --git a/rules b/rules new file mode 100755 index 0000000..6309272 --- /dev/null +++ b/rules @@ -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 diff --git a/salsa-ci.yml b/salsa-ci.yml new file mode 100644 index 0000000..33c3a64 --- /dev/null +++ b/salsa-ci.yml @@ -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 diff --git a/source/format b/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/upstream/metadata b/upstream/metadata new file mode 100644 index 0000000..66f3714 --- /dev/null +++ b/upstream/metadata @@ -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 diff --git a/watch b/watch new file mode 100644 index 0000000..1327d68 --- /dev/null +++ b/watch @@ -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