-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
missing: wait for FD ready, trio only
- Loading branch information
Showing
22 changed files
with
71 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[run] | ||
branch=True | ||
source=trio_gpio | ||
source=asyncgpio | ||
|
||
[report] | ||
precision = 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
trio-gpio | ||
asyncgpio | ||
========= | ||
|
||
Trio-GPIO allows easy access to the GPIO pins on your Raspberry Pi or | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
/*.debhelper-build-stamp | ||
/*.substvars | ||
/debhelper-build-stamp | ||
/python3-trio-gpio | ||
/python3-asyncgpio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
trio-gpio (0.2.4-1) unstable; urgency=medium | ||
asyncgpio (0.2.4-1) unstable; urgency=medium | ||
|
||
* New release | ||
|
||
-- Matthias Urlichs <[email protected]> Mon, 11 Jun 2018 21:29:33 +0200 | ||
|
||
trio-gpio (0.2.3-2) unstable; urgency=medium | ||
asyncgpio (0.2.3-2) unstable; urgency=medium | ||
|
||
* TL;DR: didn't RTFM | ||
|
||
-- Matthias Urlichs <[email protected]> Mon, 11 Jun 2018 09:08:30 +0200 | ||
|
||
trio-gpio (0.2.2-1) unstable; urgency=medium | ||
asyncgpio (0.2.2-1) unstable; urgency=medium | ||
|
||
* Access errno | ||
|
||
-- Matthias Urlichs <[email protected]> Mon, 11 Jun 2018 08:29:53 +0200 | ||
|
||
trio-gpio (0.2.1-1) unstable; urgency=medium | ||
asyncgpio (0.2.1-1) unstable; urgency=medium | ||
|
||
* Allow (and prefer) the GPIO chip label instead of its number. | ||
|
||
-- Matthias Urlichs <[email protected]> Mon, 11 Jun 2018 04:48:44 +0200 | ||
|
||
trio-gpio (0.1.1-2) unstable; urgency=medium | ||
asyncgpio (0.1.1-2) unstable; urgency=medium | ||
|
||
* Cleanup 2 | ||
|
||
-- Matthias Urlichs <[email protected]> Mon, 28 May 2018 02:35:07 +0200 | ||
|
||
trio-gpio (0.1.1-1) unstable; urgency=medium | ||
asyncgpio (0.1.1-1) unstable; urgency=medium | ||
|
||
* Cleanup | ||
|
||
-- Matthias Urlichs <[email protected]> Sat, 10 Mar 2018 18:36:19 +0100 | ||
|
||
trio-gpio (0.1.0-1) unstable; urgency=low | ||
asyncgpio (0.1.0-1) unstable; urgency=low | ||
|
||
* source package automatically created by stdeb 0.8.5 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,18 @@ | ||
Source: trio-gpio | ||
Source: asyncgpio | ||
Maintainer: Matthias Urlichs <[email protected]> | ||
Section: python | ||
Priority: optional | ||
Build-Depends: dh-python, python3-setuptools, python3-all, debhelper (>= 9), | ||
libgpiod-dev, | ||
python3-cffi, | ||
python3-trio-amqp, | ||
python3-trio-click, | ||
python3-trio-gpio, | ||
python3-yaml, | ||
Standards-Version: 3.9.6 | ||
Homepage: https://github.com/M-o-a-T/trio-gpio | ||
Homepage: https://github.com/M-o-a-T/asyncgpio | ||
|
||
Package: python3-trio-gpio | ||
Package: python3-asyncgpio | ||
Architecture: all | ||
Depends: ${misc:Depends}, ${python3:Depends}, | ||
libgpiod1, | ||
python3-cffi, | ||
python3-trio-amqp, | ||
python3-trio-click, | ||
python3-trio-gpio, | ||
python3-yaml, | ||
Standards-Version: 3.9.6 | ||
Description: GPIO access via Trio and libgpiod | ||
Trio-GPIO allows easy access to the GPIO pins on your Raspberry Pi or | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# please also check http://pypi.debian.net/trio-gpio/watch | ||
# please also check http://pypi.debian.net/asyncgpio/watch | ||
version=3 | ||
opts=uversionmangle=s/(rc|a|b|c)/~$1/ \ | ||
http://pypi.debian.net/trio-gpio/trio-gpio-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) | ||
http://pypi.debian.net/asyncgpio/asyncgpio-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Release history | ||
=============== | ||
|
||
.. currentmodule:: trio_gpio | ||
.. currentmodule:: asyncgpio | ||
|
||
.. towncrier release notes start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.