From 690f35e0d32ccd087d8c5da84aa60b9c33c38a79 Mon Sep 17 00:00:00 2001 From: Serghei MIHAI Date: Mon, 31 Mar 2014 14:57:10 +0200 Subject: [PATCH] initial files for deb packaging --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 12 ++++++++++++ debian/rules | 6 ++++++ 4 files changed, 24 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..33ddc55 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +gadjo (0.1-1) unstable; urgency=low + + * source package automatically created by stdeb 0.6.0+git + + -- Frederic Peters Mon, 31 Mar 2014 14:49:45 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..2912223 --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: gadjo +Maintainer: Frederic Peters +Section: python +Priority: optional +Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 7), python-django +Standards-Version: 3.9.1 + +Package: python-gadjo +Architecture: all +Depends: ${misc:Depends}, ${python:Depends}, python-django +Description: Base templates for management interfaces + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..46f5b5d --- /dev/null +++ b/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f + +%: + dh $@ --with python2 + +