1
0
mirror of https://github.com/xtacocorex/CHIP_IO synced 2025-07-20 12:53:22 +00:00

First stab as getting a capability to dump out .deb files for both Python2 and Python3.

This commit is contained in:
Robert Wolterman
2017-02-19 10:06:22 -06:00
parent 6bd2e61450
commit fa3108544b
7 changed files with 48 additions and 0 deletions

View File

@ -9,6 +9,10 @@ clean:
rm -f *.pyo *.pyc rm -f *.pyo *.pyc
rm -f *.egg rm -f *.egg
rm -f overlays/*.pyo overlays/*.pyc rm -f overlays/*.pyo overlays/*.pyc
rm -rf __pycache__
rm -rf debian/python-chip-io*
rm -rf debian/python3-chip-io*
tests: tests:
py.test py.test
@ -17,3 +21,6 @@ build:
install: build install: build
python setup.py install --force python setup.py install --force
debfile:
dpkg-buildpackage -rfakeroot -uc -b

5
debian/changelog vendored Normal file
View File

@ -0,0 +1,5 @@
chip-io (0.4.0-1) unstable; urgency=low
* source package automatically created by stdeb 0.8.2
-- Robert Wolterman <robert.wolterman@gmail.com> Sat, 18 Feb 2017 23:58:48 +0000

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
9

23
debian/control vendored Normal file
View File

@ -0,0 +1,23 @@
Source: chip-io
Maintainer: Robert Wolterman <robert.wolterman@gmail.com>
Section: python
Priority: optional
Build-Depends: python-setuptools (>= 0.6b3), python-all-dev (>= 2.6.6-3), debhelper (>= 9), dh-python,
python3-all (>=3.2), python3-setuptools
Standards-Version: 3.9.1
Package: python-chip-io
Architecture: any
Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}
Description: A module to control CHIP IO channels
CHIP_IO
============================
A CHIP GPIO library
Package: python3-chip-io
Architecture: any
Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends}
Description: A module to control CHIP IO channels
CHIP_IO
============================
A CHIP GPIO library

2
debian/files vendored Normal file
View File

@ -0,0 +1,2 @@
python-chip-io_0.4.0-1_armhf.deb python optional
python3-chip-io_0.4.0-1_armhf.deb python optional

9
debian/rules vendored Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/make -f
# This file was automatically generated by stdeb 0.8.2 at
# Sat, 18 Feb 2017 23:58:48 +0000
export PYBUILD_NAME=chip-io
%:
dh $@ --with python2,python3 --buildsystem=pybuild

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (quilt)