]> git.99rst.org Git - openwrt-packages.git/commitdiff
python-ptyprocess: add package
authorPhilip A. Prindeville <redacted>
Sun, 12 Jul 2026 17:35:17 +0000 (11:35 -0600)
committerPhilip Prindeville <redacted>
Mon, 13 Jul 2026 01:03:48 +0000 (19:03 -0600)
Requirement for python-pexpect.

Signed-off-by: Philip A. Prindeville <redacted>
lang/python/python-ptyprocess/Makefile [new file with mode: 0644]

diff --git a/lang/python/python-ptyprocess/Makefile b/lang/python/python-ptyprocess/Makefile
new file mode 100644 (file)
index 0000000..4c8b9c7
--- /dev/null
@@ -0,0 +1,38 @@
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=python-ptyprocess
+PKG_VERSION:=0.7.0
+PKG_RELEASE:=1
+
+PYPI_NAME:=ptyprocess
+PKG_HASH:=5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220
+
+PKG_LICENSE:=ISC
+PKG_LICENSE_FILES:=LICENSE
+PKG_MAINTAINER:=Philip Prindeville <philipp@redfish-solutions.com>, Alexandru Ardelean <alex@shruggie.ro>
+
+PKG_BUILD_DEPENDS:=python-setuptools/host
+
+include ../pypi.mk
+include $(INCLUDE_DIR)/package.mk
+include ../python3-package.mk
+
+define Package/python3-ptyprocess
+  SECTION:=lang
+  CATEGORY:=Languages
+  SUBMENU:=Python
+  TITLE:=Launch a subprocess in a pseudo terminal (pty), and interact with both the process and its pty.
+  URL:=https://github.com/pexpect/ptyprocess
+  DEPENDS:=+python3-light
+endef
+
+define Package/python3-ptyprocess/description
+  Launch a subprocess in a pseudo terminal (pty), and interact with both the process and its pty.
+endef
+
+$(eval $(call Py3Package,python3-ptyprocess))
+$(eval $(call BuildPackage,python3-ptyprocess))
+$(eval $(call BuildPackage,python3-ptyprocess-src))
git clone https://git.99rst.org/PROJECT