From 6c3b58870d41a44c1131ad801f4b9a4b268167f7 Mon Sep 17 00:00:00 2001 From: Dave Jones Date: Sun, 15 Nov 2015 19:50:08 +0000 Subject: [PATCH] Some fixes to the deb packaging Get the right name in the deb rules, and remove the thermsensor deps from control --- debian/control | 4 ++-- debian/rules | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/debian/control b/debian/control index 601312a..a9e3bc9 100644 --- a/debian/control +++ b/debian/control @@ -10,7 +10,7 @@ X-Python3-Version: >= 3.2 Package: python-gpiozero Architecture: all -Depends: ${misc:Depends}, ${python:Depends}, python-rpi.gpio, python-w1thermsensor, python-spidev +Depends: ${misc:Depends}, ${python:Depends}, python-rpi.gpio, python-spidev Description: Simple API for controlling devices attached to the GPIO pins. gpiozero builds on RPi.GPIO to provide a set of classes designed to simplify interaction with devices connected to the GPIO pins, from simple buttons and @@ -21,7 +21,7 @@ Description: Simple API for controlling devices attached to the GPIO pins. Package: python3-gpiozero Architecture: all -Depends: ${misc:Depends}, ${python3:Depends}, python3-rpi.gpio, python3-w1thermsensor, python3-spidev +Depends: ${misc:Depends}, ${python3:Depends}, python3-rpi.gpio, python3-spidev Description: Simple API for controlling devices attached to the GPIO pins. gpiozero builds on RPi.GPIO to provide a set of classes designed to simplify interaction with devices connected to the GPIO pins, from simple buttons and diff --git a/debian/rules b/debian/rules index 4922cc2..01d0107 100755 --- a/debian/rules +++ b/debian/rules @@ -8,8 +8,8 @@ export DH_OPTIONS dh $@ --with python2,python3 --buildsystem=python_distutils override_dh_auto_install: - python setup.py install --root debian/python-picraft --install-layout=deb - python3 setup.py install --root debian/python3-picraft --install-layout=deb + python setup.py install --root debian/python-gpiozero --install-layout=deb + python3 setup.py install --root debian/python3-gpiozero --install-layout=deb #override_dh_auto_test: # # Don't run the tests!