mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
add py-pexpect 0.95
A Pure Python Expect-like module
This commit is contained in:
parent
02c4890c4b
commit
e3e539b358
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=72910
6 changed files with 42 additions and 0 deletions
|
@ -264,6 +264,7 @@
|
||||||
SUBDIR += projectionlib
|
SUBDIR += projectionlib
|
||||||
SUBDIR += proxyper
|
SUBDIR += proxyper
|
||||||
SUBDIR += py-distutils
|
SUBDIR += py-distutils
|
||||||
|
SUBDIR += py-pexpect
|
||||||
SUBDIR += pybliographer
|
SUBDIR += pybliographer
|
||||||
SUBDIR += pypanda
|
SUBDIR += pypanda
|
||||||
SUBDIR += qbrew
|
SUBDIR += qbrew
|
||||||
|
|
22
misc/py-pexpect/Makefile
Normal file
22
misc/py-pexpect/Makefile
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
# ex:ts=8
|
||||||
|
# Ports collection makefile for: pexpect
|
||||||
|
# Date created: Jan 11, 2003
|
||||||
|
# Whom: ijliao
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= pexpect
|
||||||
|
PORTVERSION= 0.95
|
||||||
|
CATEGORIES= misc python
|
||||||
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||||
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||||
|
EXTRACT_SUFX= .tgz
|
||||||
|
|
||||||
|
MAINTAINER= ports@FreeBSD.org
|
||||||
|
|
||||||
|
USE_PYTHON= yes
|
||||||
|
USE_PYDISTUTILS= yes
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
misc/py-pexpect/distinfo
Normal file
1
misc/py-pexpect/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (pexpect-0.95.tgz) = 3f353c310333cdf4c49b79483a6faf0c
|
1
misc/py-pexpect/pkg-comment
Normal file
1
misc/py-pexpect/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
A Pure Python Expect-like module
|
14
misc/py-pexpect/pkg-descr
Normal file
14
misc/py-pexpect/pkg-descr
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
Pexpect makes Python a better glue for controlling child applications.
|
||||||
|
|
||||||
|
Pexpect is a pure Python module for spawning child applications; controlling
|
||||||
|
them; and responding to expected patterns in their output. Pexpect works like
|
||||||
|
Don Libes' Expect. Pexpect allows your script to spawn a child application
|
||||||
|
and control it as if a human were typing commands.
|
||||||
|
|
||||||
|
Pexpect can be used for automating interactive applications such as ssh, ftp,
|
||||||
|
passwd, telnet, etc. It can be used to a automate setup scripts for duplicating
|
||||||
|
software package installations on different servers. It can be used for
|
||||||
|
automated software testing. Pexpect is in the spirit of Don Libes' Expect, but
|
||||||
|
Pexpect is pure Python. The Pexpect interface was designed to be easy to use.
|
||||||
|
|
||||||
|
WWW: http://pexpect.sourceforge.net/
|
3
misc/py-pexpect/pkg-plist
Normal file
3
misc/py-pexpect/pkg-plist
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
%%PYTHON_SITELIBDIR%%/pexpect.py
|
||||||
|
%%PYTHON_SITELIBDIR%%/pexpect.pyc
|
||||||
|
%%PYTHON_SITELIBDIR%%/pexpect.pyo
|
Loading…
Add table
Reference in a new issue