Codebase list lazr.config / 745f417
Drop python2 support; Closes: #936820 Sandro Tosi 4 years ago
5 changed file(s) with 9 addition(s) and 30 deletion(s). Raw diff Collapse all Expand all
1111 * Convert git repository from git-dpm to gbp layout
1212 * Use debhelper-compat instead of debian/compat.
1313
14 -- Barry Warsaw <barry@debian.org> Sun, 27 Aug 2017 18:58:38 -0400
14 [ Sandro Tosi ]
15 * Drop python2 support; Closes: #936820
16
17 -- Sandro Tosi <morph@debian.org> Sat, 26 Oct 2019 12:41:20 -0400
1518
1619 lazr.config (2.2-1) unstable; urgency=medium
1720
55 Priority: optional
66 Build-Depends: debhelper-compat (= 9),
77 dh-python,
8 python-all (>= 2.6.6-3~),
9 python-docutils,
10 python-lazr.delegates,
11 python-nose,
12 python-setuptools,
13 python-sphinx (>= 1.0.7+dfsg-1~),
14 python-zope.interface,
8 python3-docutils,
9 python3-sphinx (>= 1.0.7+dfsg-1~),
1510 python3-all,
1611 python3-lazr.delegates,
1712 python3-nose,
2015 Standards-Version: 4.0.0
2116 Vcs-Git: https://salsa.debian.org/python-team/modules/lazr.config.git
2217 Vcs-Browser: https://salsa.debian.org/python-team/modules/lazr.config
23
24 Package: python-lazr.config
25 Architecture: all
26 Depends: ${misc:Depends}, ${python:Depends}
27 Suggests: python-lazr.config-doc
28 Description: ini-file format handling supporting schemas and inheritance
29 The LAZR config system is typically used to manage process configuration.
30 Process configuration is for saying how things change when we run systems on
31 different machines, or under different circumstances.
32 .
33 This system uses ini-like file format of section, keys, and values. The
34 config file supports inheritance to minimize duplication of information across
35 files. The format supports schema validation.
36 .
37 This is the Python 2 version.
3818
3919 Package: python3-lazr.config
4020 Architecture: all
44 #export DH_VERBOSE=1
55
66 %:
7 dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
7 dh $@ --with python3,sphinxdoc --buildsystem=pybuild
88
99 override_dh_installdocs:
10 python setup.py build_sphinx
10 python3 setup.py build_sphinx
1111 dh_installdocs
1212
1313 # 2015-06-05 barry@debian.org. It's not clear to me why we have to find and
0 Tests: smoketest-2 smoketest-3
0 Tests: smoketest-3
11 Depends: @
+0
-4
debian/tests/smoketest-2 less more
0 #!/usr/bin/python
1
2 import lazr.config
3 print lazr.config.__file__, lazr.config.__version__