From: Philip A. Prindeville Date: Sun, 12 Jul 2026 17:35:17 +0000 (-0600) Subject: python-ptyprocess: add package X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=592a4ac758859053d2ff3dfe79527ac37b445545;p=openwrt-packages.git python-ptyprocess: add package Requirement for python-pexpect. Signed-off-by: Philip A. Prindeville --- diff --git a/lang/python/python-ptyprocess/Makefile b/lang/python/python-ptyprocess/Makefile new file mode 100644 index 000000000..4c8b9c74a --- /dev/null +++ b/lang/python/python-ptyprocess/Makefile @@ -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 , Alexandru Ardelean + +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))