diff --git a/debian/changelog b/debian/changelog index 6e903dd..9b498c5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +python-lml (0.0.9-1.1) UNRELEASED; urgency=medium + + * Add python3 module. + + -- Frederic Peters 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 diff --git a/debian/compat b/debian/compat index ec63514..f599e28 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/debian/control b/debian/control index 246c641..251ce18 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: python-lml Maintainer: 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. + . + diff --git a/debian/rules b/debian/rules index 60aabaf..c1a9ab4 100755 --- a/debian/rules +++ b/debian/rules @@ -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