summaryrefslogtreecommitdiff
path: root/package/python-ptyprocess
diff options
context:
space:
mode:
authorJan Viktorin <viktorin@rehivetech.com>2016-03-27 03:31:22 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-04-15 22:41:30 +0200
commit9b937ad0e679cc6bb42a398205d13affde69fdda (patch)
treec27acfe9c6a8e5d1fb907dadf5ed2aa29cfc4f35 /package/python-ptyprocess
parent90fbac29e2d0d87a7e1ae764f05fd18dea04df31 (diff)
python-ptyprocess: new package
Signed-off-by: Jan Viktorin <viktorin@rehivetech.com> [Thomas: - fix hash file - fix <pkg>_SITE variable.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/python-ptyprocess')
-rw-r--r--package/python-ptyprocess/Config.in7
-rw-r--r--package/python-ptyprocess/python-ptyprocess.hash3
-rw-r--r--package/python-ptyprocess/python-ptyprocess.mk14
3 files changed, 24 insertions, 0 deletions
diff --git a/package/python-ptyprocess/Config.in b/package/python-ptyprocess/Config.in
new file mode 100644
index 000000000..b95dacbd3
--- /dev/null
+++ b/package/python-ptyprocess/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PYTHON_PTYPROCESS
+ bool "python-ptyprocess"
+ help
+ Launch a subprocess in a pseudo terminal (pty), and interact
+ with both the process and its pty.
+
+ https://github.com/pexpect/ptyprocess
diff --git a/package/python-ptyprocess/python-ptyprocess.hash b/package/python-ptyprocess/python-ptyprocess.hash
new file mode 100644
index 000000000..0e2e0aeda
--- /dev/null
+++ b/package/python-ptyprocess/python-ptyprocess.hash
@@ -0,0 +1,3 @@
+# md5 from https://pypi.python.org, sha256 locally computed
+md5 94e537122914cc9ec9c1eadcd36e73a1 ptyprocess-0.5.1.tar.gz
+sha256 0530ce63a9295bfae7bd06edc02b6aa935619f486f0f1dc0972f516265ee81a6 ptyprocess-0.5.1.tar.gz
diff --git a/package/python-ptyprocess/python-ptyprocess.mk b/package/python-ptyprocess/python-ptyprocess.mk
new file mode 100644
index 000000000..59329d01e
--- /dev/null
+++ b/package/python-ptyprocess/python-ptyprocess.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# python-ptyprocess
+#
+################################################################################
+
+PYTHON_PTYPROCESS_VERSION = 0.5.1
+PYTHON_PTYPROCESS_SITE = https://pypi.python.org/packages/source/p/ptyprocess
+PYTHON_PTYPROCESS_SOURCE = ptyprocess-$(PYTHON_PTYPROCESS_VERSION).tar.gz
+PYTHON_PTYPROCESS_LICENSE = ISC
+PYTHON_PTYPROCESS_LICENSE_FILES = LICENSE
+PYTHON_PTYPROCESS_SETUP_TYPE = distutils
+
+$(eval $(python-package))