From 5cede10f6596317a0d7c2ce654061e29a1a58fe3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 28 May 2020 17:32:02 +0200 Subject: [PATCH] misc: add debian packaging --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 19 +++++++++++++++++++ debian/rules | 7 +++++++ 4 files changed, 32 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..ace0abe --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +django-panik-emissions (0-0) stable; urgency=low + + * Initial version. + + -- Frederic Peters Thu, 28 May 2020 17:30:03 +0200 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 new file mode 100644 index 0000000..7d34956 --- /dev/null +++ b/debian/control @@ -0,0 +1,19 @@ +Source: django-panik-emissions +Section: python +Priority: optional +Maintainer: Frederic Peters +Build-Depends: debhelper (>= 10), + python3-all, + python3-django + python3-setuptools, + dh-python +Standards-Version: 3.9.1 + +Package: python3-django-panik-emissions +Architecture: all +Depends: ${python3:Depends} +Description: Emissions and episodes (Python 3) + django-panik-emissions holds models/views/etc. for emissions, episodes, + newsitems and more. + . + This is the Python 3 version of the package. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..aaef133 --- /dev/null +++ b/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +export PYBUILD_NAME=emissions +export PYBUILD_DISABLE=test + +%: + dh $@ --with python3 --buildsystem=pybuild -- GitLab