diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000..9ab217e7 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +python-django-sentry (1.5.1-0) testing; urgency=high + + * Initial Debian package + + -- Bruno Clermont Tue, 14 Dec 2010 16:25:00 -0500 diff --git a/debian/compat b/debian/compat new file mode 100644 index 00000000..7ed6ff82 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 00000000..9e1dddd4 --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: python-django-sentry +Section: python +Priority: optional +Maintainer: Bruno Clermont +Homepage: https://github.com/bclermont/django-sentry +Bugs: https://github.com/bclermont/sentry/issues +Build-Depends: debhelper, python-support + +Package: python-django-sentry +Architecture: all +Depends: ${python:Depends}, python-support, python-django +Provides: ${python:Provides} +Description: + Sentry provides you with a generic interface to view and interact with your + error logs. By default, it will catch any exception thrown by Django and store + it in a database. With this it allows you to interact and view near real-time + information to discover issues and more easily trace them in your application. diff --git a/debian/docs b/debian/docs new file mode 100644 index 00000000..a1320b1b --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README.rst diff --git a/debian/pyversions b/debian/pyversions new file mode 100644 index 00000000..8b253bc3 --- /dev/null +++ b/debian/pyversions @@ -0,0 +1 @@ +2.4- diff --git a/debian/rules b/debian/rules new file mode 100755 index 00000000..1a44f4e1 --- /dev/null +++ b/debian/rules @@ -0,0 +1,42 @@ +#!/usr/bin/make -f + +# Verbose mode +#export DH_VERBOSE=1 + +clean: + dh_testdir + dh_testroot + + rm -rf build django-sentry.egg-info +# find django-sentry/ -name *.pyc | xargs rm -f + + dh_clean + +build: + dh_testdir + + python setup.py build + +install: + dh_testdir + dh_installdirs + + python setup.py install --root $(CURDIR)/debian/python-django-sentry + +binary-indep: install + +binary-arch: install + dh_install + dh_installdocs +# dh_installchangelogs + dh_compress + dh_fixperms + dh_pysupport + dh_gencontrol + dh_installdeb + dh_md5sums + dh_builddeb -- -Z lzma -z9 + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary +