diff --git a/debian/control b/debian/control index d3e1959cbcbf429a603b01bd9971bc92e3818e91..8aca274b49ecd110ba321ee759cc1b10893162a9 100644 --- a/debian/control +++ b/debian/control @@ -2,10 +2,13 @@ Source: tempermonitor Maintainer: Michael Loipführer <ml@stusta.de> Section: python Priority: optional -Build-Depends: python3-setuptools, python3-all, debhelper (>= 7) -Standards-Version: 3.9.1 +Build-Depends: python3-setuptools, python3-all, debhelper (>= 11) +Standards-Version: 4.2.1 +Homepage: https://gitlab.stusta.de/stustanet/temperature-daemon +Vcs-Browser: https://gitlab.stusta.de/stustanet/temperature-daemon +Vcs-Git: https://gitlab.stusta.de/stustanet/temperature-daemon.git Package: python3-tempermonitor -Architecture: all +Architecture: any Depends: ${misc:Depends}, ${python3:Depends} Description: Tempermonitor sensor temperature reading deamon This is the StuStaNet Temperature Monitoring System. diff --git a/debian/rules b/debian/rules index 2a9ab808fd04f3d479ffa93278d9b20713fbb181..fe2a1ae78064a28380f4f541510d4c43948c70f4 100755 --- a/debian/rules +++ b/debian/rules @@ -6,26 +6,16 @@ %: dh $@ --with python3 --buildsystem=python_distutils - override_dh_auto_clean: python3 setup.py clean -a find . -name \*.pyc -exec rm {} \; - - override_dh_auto_build: python3 setup.py build --force - - override_dh_auto_install: python3 setup.py install --force --root=debian/python3-tempermonitor --no-compile -O0 --install-layout=deb - - override_dh_python2: dh_python2 --no-guessing-versions - - -