1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
Source: ols-tests
Section: python
Priority: optional
Standards-Version: 3.9.8
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
XSBC-Original-Maintainer: Vincent Ladeuil <vila+ols@canonical.com>
# Starting with ubuntu xenial, pep8 has been split between python-pep8 (module)
# and pep8 (script but for python3 !). We only need the module.
# For pyflakes, xenial split python-pyflakes and python3-pyflakes
Build-Depends: debhelper (>= 9),
dh-python,
python-pep8 | pep8 (<< 1.6.2-0.1ubuntu2),
python3-pyflakes | pyflakes,
python-pyflakes | pyflakes,
python-all,
python-subunit,
python-testtools,
python-setuptools,
python3-all,
python3-pep8,
python3-setuptools,
python3-subunit,
python3-testtools,
Package: python-ols-tests
Architecture: all
# Same remark as above regarding python2 pep8
Depends: python-pep8 | pep8 (<< 1.6.2-0.1ubuntu2),
python-pyflakes | pyflakes,
python-subunit,
python-testtools,
${misc:Depends},
${python:Depends}
Description: Online Services test tools.
Package: python3-ols-tests
Architecture: all
# Either the python3 pyflakes library is its own package or is provided as
# part of pyflakes (pyflakes3 was introduced later for the python3 script but
# we don't need nor use it)
Depends: python3-pyflakes | pyflakes,
python3-pep8,
python3-subunit,
python3-testtools,
${misc:Depends},
${python3:Depends}
Description: Online Services test tools.
|