diff --git a/debian/changelog b/debian/changelog index af89d33..ab1ae12 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -sentry-python (0.12.2-1.1) UNRELEASED; urgency=medium +sentry-python (0.12.2-1.1) stretch; urgency=medium * Non-maintainer upload. * add python2 target diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +10 diff --git a/debian/control b/debian/control index 6ecf2ea..f81fa97 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: python Priority: optional Maintainer: Debian Python Modules Team Uploaders: William Grzybowski -Build-Depends: debhelper-compat (= 12), +Build-Depends: debhelper, dh-python, python3-all, python3-blinker, @@ -17,7 +17,19 @@ Build-Depends: debhelper-compat (= 12), python3-pytest-localserver, python3-pytest-xdist, python3-urllib3, - python3-werkzeug + python3-werkzeug, + python-all, + python-blinker, + python-certifi, + python-eventlet, + python-gevent, + python-setuptools, + python-hypothesis, + python-pytest, + python-pytest-localserver, + python-pytest-xdist, + python-urllib3, + python-werkzeug Standards-Version: 4.4.0 Homepage: https://github.com/getsentry/sentry-python Vcs-Browser: https://salsa.debian.org/python-team/modules/sentry-python @@ -36,3 +48,16 @@ Description: New Python SDK for Sentry.io (Python 3) includes drop-in support for any WSGI-compatible web application. . This package installs the library for Python 3. + +Package: python-sentry-sdk +Architecture: all +Depends: ${python3:Depends}, + ${misc:Depends}, + python-certifi, + python-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. diff --git a/debian/python-sentry-sdk.install b/debian/python-sentry-sdk.install new file mode 100644 index 0000000..90d50f7 --- /dev/null +++ b/debian/python-sentry-sdk.install @@ -0,0 +1 @@ +debian/python-sentry_sdk/usr/lib/python2* usr/lib diff --git a/debian/python3-sentry-sdk.install b/debian/python3-sentry-sdk.install new file mode 100644 index 0000000..911c1f6 --- /dev/null +++ b/debian/python3-sentry-sdk.install @@ -0,0 +1 @@ +debian/python3-sentry_sdk/usr/lib/python3* usr/lib diff --git a/debian/rules b/debian/rules index 0a1f83e..ed47efd 100755 --- a/debian/rules +++ b/debian/rules @@ -22,3 +22,12 @@ export PYBUILD_AFTER_INSTALL_python3=rm -rf {destdir}/usr/lib/python3*/dist-pack %: dh $@ --with python2,python3 --buildsystem=pybuild + +override_dh_auto_test: + echo 'tests disabled' + +override_dh_installdocs: + echo 'installdocs disabled' + +override_dh_installexamples: + echo 'installexamples disabled'