From ebf80591d5d0a458dc7aac939e15519276885799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 20 Aug 2019 20:36:41 +0200 Subject: [PATCH] debian: add python3-gadjo package (#35494) --- debian/control | 7 ++++++- debian/py3dist-overrides | 4 ++++ debian/pydist-overrides | 3 +++ debian/rules | 4 +++- 4 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 debian/py3dist-overrides diff --git a/debian/control b/debian/control index 570d156..dc1bf21 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: gadjo Maintainer: Frederic Peters Section: python Priority: optional -Build-Depends: python-setuptools (>= 33), python-pkg-resources (>= 33), dh-python, dpkg-dev, python-all (>= 2.6.6-3), python2.7-dev, python-all-dev, debhelper (>= 9), python-django, inkscape, python-imaging, libjpeg-dev, zlib1g-dev, ruby-sass (>= 3.4) +Build-Depends: python-setuptools (>= 33), python-pkg-resources (>= 33), dh-python, dpkg-dev, python-all (>= 2.6.6-3), python2.7-dev, python-all-dev, python3-all, debhelper (>= 9), python-django, python3-django, inkscape, python-imaging, python3-imaging, libjpeg-dev, zlib1g-dev, ruby-sass (>= 3.4) Standards-Version: 3.9.1 Package: python-gadjo @@ -10,3 +10,8 @@ Architecture: all Depends: ${misc:Depends}, ${python:Depends}, python-django, libjs-jquery Description: Base templates for management interfaces +Package: python3-gadjo +Architecture: all +Depends: ${misc:Depends}, ${python3:Depends}, python3-django, libjs-jquery +Description: Base templates for management interfaces (Python 3) + diff --git a/debian/py3dist-overrides b/debian/py3dist-overrides new file mode 100644 index 0000000..75c7887 --- /dev/null +++ b/debian/py3dist-overrides @@ -0,0 +1,4 @@ +xstatic_font_awesome python3-xstatic-font-awesome +xstatic_opensans python3-xstatic-opensans +xstatic_jquery python3-xstatic-jquery +xstatic_jquery_ui python3-xstatic-jquery-ui diff --git a/debian/pydist-overrides b/debian/pydist-overrides index 4d8ce82..2964ede 100644 --- a/debian/pydist-overrides +++ b/debian/pydist-overrides @@ -1 +1,4 @@ +xstatic_font_awesome python-xstatic-font-awesome xstatic_opensans python-xstatic-opensans +xstatic_jquery python-xstatic-jquery +xstatic_jquery_ui python-xstatic-jquery-ui diff --git a/debian/rules b/debian/rules index 46f5b5d..5e00127 100755 --- a/debian/rules +++ b/debian/rules @@ -1,6 +1,8 @@ #!/usr/bin/make -f +export PYBUILD_NAME=gadjo + %: - dh $@ --with python2 + dh $@ --with python2,python3 --buildsystem=pybuild