Add debian package configurations

This commit is contained in:
Bruno Clermont 2010-12-14 16:34:06 -05:00
parent aba7b68450
commit 999b9a1447
6 changed files with 67 additions and 0 deletions

5
debian/changelog vendored Normal file
View File

@ -0,0 +1,5 @@
python-django-sentry (1.5.1-0) testing; urgency=high
* Initial Debian package
-- Bruno Clermont <bruno.clermont@gmail.com> Tue, 14 Dec 2010 16:25:00 -0500

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
5

17
debian/control vendored Normal file
View File

@ -0,0 +1,17 @@
Source: python-django-sentry
Section: python
Priority: optional
Maintainer: Bruno Clermont <bruno.clermont@gmail.com>
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.

1
debian/docs vendored Normal file
View File

@ -0,0 +1 @@
README.rst

1
debian/pyversions vendored Normal file
View File

@ -0,0 +1 @@
2.4-

42
debian/rules vendored Executable file
View File

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