diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000..e7fedcd0 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +gunicorn (0.5.1-1) karmic; urgency=low + + * First release. + + -- Benoit Chesneau Mon, 22 Feb 2010 08:44:36 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 00000000..7f8f011e --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 00000000..032077f4 --- /dev/null +++ b/debian/control @@ -0,0 +1,21 @@ +Source: gunicorn +Maintainer: Benoit Chesneau +Section: python +Priority: optional +Build-Depends: python-setuptools (>= 0.6b3), debhelper (>= 7), python-support (>= 0.8.4) +Standards-Version: 3.7.2 +XS-Python-Version: current + +Package: gunicorn +Architecture: all +Depends: ${python:Depends} +XB-Python-Version: ${python:Versions} +Provides: ${python:Provides} +Description: WSGI HTTP Server for UNIX + About + ----- + . + gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and nothing else. + . + This is a port of Unicorn (http://unicorn.bogomips.org/) in Python. Meet us on `#gunicorn irc channel `_ on `Freenode`_. + . diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000..e37db420 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,28 @@ +Gunicorn + +2009,2010 (c) BenoƮt Chesneau +2009,2010 (c) Paul J. Davis + +Gunicorn is released under the MIT license. + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + diff --git a/debian/gunicorn-preinst b/debian/gunicorn-preinst new file mode 100644 index 00000000..096bfdde --- /dev/null +++ b/debian/gunicorn-preinst @@ -0,0 +1,14 @@ +#! /bin/sh + +set -e + +# This was added by stdeb to workaround Debian #479852. In a nutshell, +# pycentral does not remove normally remove its symlinks on an +# upgrade. Since we're using python-support, however, those symlinks +# will be broken. This tells python-central to clean up any symlinks. +if [ -e /var/lib/dpkg/info/gunicorn.list ] && which pycentral >/dev/null 2>&1 +then + pycentral pkgremove gunicorn +fi + +#DEBHELPER# diff --git a/debian/rules b/debian/rules new file mode 100755 index 00000000..bf290844 --- /dev/null +++ b/debian/rules @@ -0,0 +1,22 @@ +#!/usr/bin/make -f + +# This file was automatically generated by stdeb 0.5.1+git at +# Mon, 22 Feb 2010 08:44:36 +0100 + +# Unset the environment variables set by dpkg-buildpackage. (This is +# necessary because distutils is brittle with compiler/linker flags +# set. Specifically, packages using f2py will break without this.) +unexport CPPFLAGS +unexport CFLAGS +unexport CXXFLAGS +unexport FFLAGS +unexport LDFLAGS + +#exports specified using stdeb Setup-Env-Vars: +export DH_OPTIONS=--buildsystem=python_distutils + + +%: + dh $@ + +