add python3 package

This commit is contained in:
Frédéric Péters 2020-06-12 11:52:53 +02:00
parent c6acb91c26
commit 67bf455927
4 changed files with 22 additions and 6 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
python-lml (0.0.9-1.1) UNRELEASED; urgency=medium
* Add python3 module.
-- Frederic Peters <fpeters@entrouvert.com> Fri, 12 Jun 2020 11:53:30 +0200
python-lml (0.0.9-1) unstable; urgency=low
* source package created by stdeb 0.8.5

2
debian/compat vendored
View File

@ -1 +1 @@
9
10

13
debian/control vendored
View File

@ -2,7 +2,7 @@ Source: python-lml
Maintainer: tobald@debian.org <tobald@debian.org>
Section: python
Priority: optional
Build-Depends: dh-python, python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 9)
Build-Depends: dh-python, python-setuptools, python-all, debhelper (>= 10), python3-setuptools, python3-all
Standards-Version: 3.9.6
Homepage: https://github.com/chfw/lml
@ -17,3 +17,14 @@ Description: Load me later. A lazy plugin management system.
plugin interface is on your shoulder.
.
Package: python3-lml
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: Load me later. A lazy plugin management system. (Python 3)
lml seamlessly finds the lml based plugins from your current python
environment but loads your plugins on demand. It is designed to support
plugins that have external dependencies, especially bulky and/or
memory hungry ones. lml provides the plugin management system only and the
plugin interface is on your shoulder.
.

7
debian/rules vendored
View File

@ -1,8 +1,7 @@
#!/usr/bin/make -f
# This file was automatically generated by stdeb 0.8.5 at
# Wed, 13 Feb 2019 10:48:31 +0100
export PYBUILD_NAME=lml
%:
dh $@ --with python2 --buildsystem=pybuild
%:
dh $@ --with python2,python3 --buildsystem=pybuild