This commit is contained in:
root 2025-08-06 15:14:17 +02:00
parent 206067cb4f
commit d75e6c51bd
5 changed files with 45 additions and 0 deletions

10
debian/afancontrol.postinst.debhelper vendored Normal file
View File

@ -0,0 +1,10 @@
# Automatically added by dh_python3
if command -v py3compile >/dev/null 2>&1; then
py3compile -p afancontrol
fi
if command -v pypy3compile >/dev/null 2>&1; then
pypy3compile -p afancontrol || true
fi
# End automatically added section

12
debian/afancontrol.postrm.debhelper vendored Normal file
View File

@ -0,0 +1,12 @@
# Automatically added by dh_installsystemd/13.24.2
if [ "$1" = remove ] && [ -d /run/systemd/system ] ; then
systemctl --system daemon-reload >/dev/null || true
fi
# End automatically added section
# Automatically added by dh_installsystemd/13.24.2
if [ "$1" = "purge" ]; then
if [ -x "/usr/bin/deb-systemd-helper" ]; then
deb-systemd-helper purge 'afancontrol.service' >/dev/null || true
fi
fi
# End automatically added section

10
debian/afancontrol.prerm.debhelper vendored Normal file
View File

@ -0,0 +1,10 @@
# Automatically added by dh_python3
if command -v py3clean >/dev/null 2>&1; then
py3clean -p afancontrol
else
dpkg -L afancontrol | sed -En -e '/^(.*)\/(.+)\.py$/s,,rm "\1/__pycache__/\2".*,e'
find /usr/lib/python3/dist-packages/ -type d -name __pycache__ -empty -print0 | xargs --null --no-run-if-empty rmdir
fi
# End automatically added section

3
debian/afancontrol.substvars vendored Normal file
View File

@ -0,0 +1,3 @@
python3:Depends=python3-click, python3:any
misc:Depends=
misc:Pre-Depends=

10
debian/changelog vendored
View File

@ -1,3 +1,13 @@
afancontrol (3.1.1-1) UNRELEASED; urgency=medium
[ Mario Fetka ]
* Imported Upstream version 3.1.0
[ root ]
* New upstream version 3.1.1
-- root <mario.fetka@disconnected-by-peer.at> Wed, 06 Aug 2025 15:01:06 +0200
afancontrol (3.1.0-1) unstable; urgency=medium
[ Juha Yrjölä ]