Projet

Général

Profil

0001-debian-add-python3-django-mellon-use-pybuild-30494.patch

Christophe Siraut, 08 février 2019 15:54

Télécharger (1,56 ko)

Voir les différences:

Subject: [PATCH] debian: add python3-django-mellon; use pybuild (#30494)

 debian/control | 11 ++++++++++-
 debian/rules   |  5 ++---
 2 files changed, 12 insertions(+), 4 deletions(-)
debian/control
3 3
Section: python
4 4
Priority: optional
5 5
Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.7), debhelper (>= 7.4.3),
6
 python-django (>= 1.5)
6
 python-django (>= 1.5), dh-python, python3-all, python3-setuptools, python3-django,
7
 python-lasso, python3-lasso
7 8
Standards-Version: 3.9.1
8 9
X-Python-Version: >= 2.7
10
X-Python3-Version: >= 3.4
9 11

  
10 12
Package: python-django-mellon
11 13
Architecture: all
......
17 19
Breaks: python-hobo (<< 0.34.5)
18 20
Description: SAML authentication for Django
19 21

  
22
Package: python3-django-mellon
23
Architecture: all
24
Depends: ${misc:Depends}, ${python:Depends},
25
    python3-django (>= 1.5),
26
    python3-isodate,
27
    python3-lasso
28
Description: SAML authentication for Django
debian/rules
1 1
#!/usr/bin/make -f
2
export PYBUILD_NAME = django-mellon
2 3

  
3 4
%:
4
	dh $@ --with python2 --buildsystem=python_distutils
5

  
6

  
5
	dh $@ --with python2,python3 --buildsystem=pybuild
7
-