Some fixes to the deb packaging

Get the right name in the deb rules, and remove the thermsensor deps
from control
This commit is contained in:
Dave Jones
2015-11-15 19:50:08 +00:00
parent ef9e5802dc
commit 6c3b58870d
2 changed files with 4 additions and 4 deletions

4
debian/control vendored
View File

@@ -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

4
debian/rules vendored
View File

@@ -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!