summaryrefslogtreecommitdiffstats
path: root/rules/pyserial3.in
diff options
context:
space:
mode:
authorBernhard Walle <bernhard@bwalle.de>2015-01-25 19:11:56 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2015-01-26 15:10:37 +0100
commitfc4a6d579307356f9ab7c4edd1118deee5ad31d0 (patch)
tree4d7726c52c604b10fbfa1f94c5f4d8b160b42abd /rules/pyserial3.in
parent5ccd874a5602c236f71d9b68f365374b7c5b2aa0 (diff)
downloadptxdist-fc4a6d579307356f9ab7c4edd1118deee5ad31d0.tar.gz
ptxdist-fc4a6d579307356f9ab7c4edd1118deee5ad31d0.tar.xz
pyserial3: Provide pyserial package for Python 3
This upstream package can be used for both Python 2.7 and Python 3. I'm providing the python 3 variant as 'pyserial3'. The package is designed so that it can be built and installed in parallel to pyserial (Python 2 installation). So I renamed the miniterm.py to miniterm3.py. The other example are not installed as renaming all of them wasn't worth the effort in my opinion. Signed-off-by: Bernhard Walle <bernhard@bwalle.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/pyserial3.in')
-rw-r--r--rules/pyserial3.in26
1 files changed, 26 insertions, 0 deletions
diff --git a/rules/pyserial3.in b/rules/pyserial3.in
new file mode 100644
index 000000000..3cb83e515
--- /dev/null
+++ b/rules/pyserial3.in
@@ -0,0 +1,26 @@
+## SECTION=python3
+
+menuconfig PYSERIAL3
+ tristate
+ select PYTHON3
+ prompt "pyserial "
+ help
+ This module encapsulates the access for the serial port. It provides
+ backends for Python running on Windows, Linux, BSD (possibly any
+ POSIX compliant system), Jython and IronPython (.NET and Mono). The
+ module named "serial" automatically selects the appropriate backend.
+
+ - Project Homepage: http://pyserial.sourceforge.net
+ - Project page on SourceForge: http://sourceforge.net/projects/pyserial/
+ - SVN repository: http://sourceforge.net/svn/?group_id=46487
+ - Download Page: http://sourceforge.net/project/showfiles.php?group_id=46487
+
+if PYSERIAL3
+
+config PYSERIAL3_MINITERM
+ bool
+ prompt "Install 'miniterm'"
+ help
+ Install the miniterm script coming with this package.
+
+endif