From d19d4ce939bac1031b05d2fb2c7a9ccca278ff28 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Mon, 3 Feb 2020 21:43:40 +0100 Subject: [PATCH] add debian packaging --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 19 +++++++++++++++++++ debian/copyright | 1 + debian/rules | 6 ++++++ debian/source/format | 1 + 6 files changed, 33 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..63ca547 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +python-facturx (1.0.14-1) unstable; urgency=medium + + * Packaging upstream version 1.0.14 + + -- Benjamin Dauvergne Sat, 12 Oct 2019 20:49:00 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..6caea42 --- /dev/null +++ b/debian/control @@ -0,0 +1,19 @@ +Source: python-facturx +Maintainer: Benjamin Dauvergne +Section: python +Priority: optional +Build-Depends: debhelper (>= 9), + dh-python, + python3-all, + python3-setuptools, + python3-lxml, +Standards-Version: 4.1.3 +Homepage: https://github.com/akretion/factur-x + +Package: python3-facturx +Architecture: all +Depends: ${misc:Depends}, + ${python3:Depends}, + python3-lxml, + python3-pypdf4, +Description: Factur-X: electronic invoicing standard for Germany & France diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..a22a2da --- /dev/null +++ b/debian/copyright @@ -0,0 +1 @@ +MIT diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..5701f47 --- /dev/null +++ b/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f + +export PYBUILD_DISABLE_python3=test + +%: + dh $@ --with python3 --buildsystem=pybuild diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)