diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..d4ed754 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +python-elementpath (1.3.0-1) unstable; urgency=medium + + * Packaging upstream version 1.3.0 + + -- 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..bd90f77 --- /dev/null +++ b/debian/control @@ -0,0 +1,27 @@ +Source: python-elementpath +Maintainer: Benjamin Dauvergne +Section: python +Priority: optional +Build-Depends: debhelper (>= 9), + dh-python (>= 1.20130901-1~), + python, + python-setuptools, + python3, + python3-setuptools +Standards-Version: 4.1.3 +Homepage: https://github.com/sissaschool/elementpath +X-Python-Version: >= 2.6 + +Package: python-elementpath +Architecture: all +Depends: ${misc:Depends}, + ${python:Depends} +Description: XML Schema validator and data conversion library for Python + This package is targeting Python version 2. + +Package: python3-elementpath +Architecture: all +Depends: ${misc:Depends}, + ${python3:Depends} +Description: XML Schema validator and data conversion library for Python + This package is targeting Python version 2. 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..4a286ce --- /dev/null +++ b/debian/rules @@ -0,0 +1,13 @@ +#!/usr/bin/make -f + +export PYBUILD_NAME := elementpath +export PYBUILD_DISABLE_python2=test +export PYBUILD_DISABLE_python3=test + +%: + dh $@ --with python2,python3 --buildsystem=pybuild + +override_dh_auto_clean: + rm -rf $(PACKAGE_NAME).egg-info + rm -rf PKG-INFO + dh_auto_clean 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)