Skip to content

Commit 7f7df12

Browse files
committed
Merge remote-tracking branch 'pimoroni/master'
2 parents ef34015 + 36a84bb commit 7f7df12

13 files changed

Lines changed: 125 additions & 1 deletion

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ eggs/
99
*.egg-info/
1010
.installed.cfg
1111
*.egg
12+
*.deb
13+
*.dsc
14+
*.build
15+
*.changes
1216

1317
pip-log.txt
1418
pip-delete-this-directory.txt

library/CHANGELOG.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
##0.1.1
2+
3+
* Increased delay in polling loop to avoid CPU hogging
4+
15
##0.0.2
26

37
* Many little bugfixes, for an actually working library

library/debian/changelog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
cap1xxx (0.1.2) UNRELEASED; urgency=low
2+
3+
* Initial commit to Raspbian apt repository
4+
5+
-- Rogue Marechal <hal@pimoroni.com> Fri, 01 Jul 2016 00:00:00 +0000
6+
7+
cap1xxx (0.1.1) UNRELEASED; urgency=low
8+
9+
* Increased delay in polling loop to avoid CPU hogging
10+
11+
-- Phil Howard <phil@pimoroni.com> Tue, 16 Feb 2016 00:00:00 +0000
12+
13+
cap1xxx (0.0.2) UNRELEASED; urgency=low
14+
15+
* Many little bugfixes, for an actually working library
16+
17+
-- Phil Howard <phil@pimoroni.com> Fri, 05 Jun 2015 00:00:00 +0000

library/debian/clean

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.egg-info/*

library/debian/compat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
9
2+

library/debian/control

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Source: cap1xxx
2+
Maintainer: Rogue Marechal <hal@pimoroni.com>
3+
Homepage: https://github.com/pimoroni/cap1xxx
4+
Section: python
5+
Priority: optional
6+
Build-Depends: debhelper (>= 9.0.0), dh-python, python-all (>= 2.7), python-setuptools, python3-all (>= 3.4), python3-setuptools
7+
Standards-Version: 3.9.6
8+
X-Python-Version: >= 2.7
9+
X-Python3-Version: >= 3.4
10+
11+
Package: python-cap1xxx
12+
Architecture: all
13+
Section: python
14+
Depends: ${misc:Depends}, ${python:Depends}, python-rpi.gpio, python-smbus
15+
Suggests: i2c-tools
16+
Description: python library designed to drive various Microchip CAP1xxx touch ICs.
17+
Cap-touch Driver Library for Microchip CAP1xxx ICs.
18+
Supports communication over i2c only.
19+
.
20+
This is the Python 2 version of the package.
21+
22+
Package: python3-cap1xxx
23+
Architecture: all
24+
Section: python
25+
Depends: ${misc:Depends}, ${python3:Depends}, python3-rpi.gpio, python3-smbus
26+
Suggests: i2c-tools
27+
Description: python library designed to drive various Microchip CAP1xxx touch ICs.
28+
Cap-touch Driver Library for Microchip CAP1xxx ICs.
29+
Supports communication over i2c only.
30+
.
31+
This is the Python 3 version of the package.

library/debian/copyright

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
Upstream-Name: cap1xxx
3+
Source: https://github.com/pimoroni/cap1xxx
4+
5+
Files: *
6+
Copyright: 2016 Pimoroni Ltd <phil@pimoroni.com>
7+
License: MIT
8+
9+
License: MIT
10+
Permission is hereby granted, free of charge, to any person obtaining a copy
11+
of this software and associated documentation files (the "Software"), to deal
12+
in the Software without restriction, including without limitation the rights
13+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14+
copies of the Software, and to permit persons to whom the Software is
15+
furnished to do so, subject to the following conditions:
16+
.
17+
The above copyright notice and this permission notice shall be included in
18+
all copies or substantial portions of the Software.
19+
.
20+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26+
THE SOFTWARE.

library/debian/docs

Whitespace-only changes.

library/debian/rules

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/make -f
2+
# -*- makefile -*-
3+
4+
#export DH_VERBOSE=1
5+
export DH_OPTIONS
6+
7+
%:
8+
dh $@ --with python2,python3 --buildsystem=python_distutils
9+
10+
override_dh_auto_install:
11+
python setup.py install --root debian/python-cap1xxx --install-layout=deb
12+
python3 setup.py install --root debian/python3-cap1xxx --install-layout=deb

library/debian/source/format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0 (native)

0 commit comments

Comments
 (0)