From 6ee8856b3a2609f6dc45b4cd1d13e4ec4ae1f5cf Mon Sep 17 00:00:00 2001 From: cvsextras Date: Mon, 8 Nov 2004 05:12:14 +0000 Subject: auto-import changelog data from pexpect-0.98-0.fdr.3.rh80.src.rpm Sun Jul 27 2003 Panu Matilainen 0.98-0.fdr.3 - own .pyo files too as suggested by Ville (#517) Sat Jul 26 2003 Panu Matilainen 0.98-0.fdr.2 - fixes by Ville (bug #517) applied Sat Jul 26 2003 Panu Matilainen - Initial Fedora packaging --- .cvsignore | 3 +++ pexpect.spec | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 3 +++ 3 files changed, 83 insertions(+) create mode 100644 pexpect.spec diff --git a/.cvsignore b/.cvsignore index e69de29..e75b2cd 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1,3 @@ +pexpect-0.98.tgz +pexpect-doc.tgz +pexpect-examples.tgz diff --git a/pexpect.spec b/pexpect.spec new file mode 100644 index 0000000..e5462af --- /dev/null +++ b/pexpect.spec @@ -0,0 +1,77 @@ +%{!?rhrel:%define rhrel %(cut -d' ' -f5 /etc/redhat-release )} +%if "%{rhrel}" == "9" +%define distrel rh90 +%else +%define distrel rh%(echo %{rhrel} | sed 's/\\.//') +%endif + +Summary: Expect module for Python +Name: pexpect +Version: 0.98 +Release: 0.fdr.3.%{distrel} +License: PSFL +Group: Development/Languages +URL: http://pexpect.sourceforge.net +Source: http://download.sourceforge.net/pexpect/%{name}-%{version}.tgz +Source1: http://download.sourceforge.net/pexpect/pexpect-doc.tgz +Source2: http://download.sourceforge.net/pexpect/pexpect-examples.tgz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +Requires: python >= 0:2.2 +BuildRequires: python-devel >= 0:2.2 + +%description +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. Unlike other Expect-like modules for +Python, Pexpect does not require TCL or Expect nor does it require C +extensions to be compiled. It should work on any platform that supports the +standard Python pty module. + +%prep +%setup -q -a1 -a2 +rm -rf $(find . -type d -name CVS) + +%build +python setup.py build + +%install +python setup.py install --root $RPM_BUILD_ROOT + +touch %{name}-ghost.files +for file in $(find $RPM_BUILD_ROOT -type f -name "*.py"); do + for suffix in c o; do + if [ ! -e "$file$suffix" ]; then + touch "$file$suffix" + echo "%ghost $file$suffix" | sed "s|$RPM_BUILD_ROOT||" \ + >> %{name}-ghost.files + fi + done +done + +%clean +rm -rf $RPM_BUILD_ROOT + +%files -f %{name}-ghost.files +%defattr(-,root,root,-) +%{_libdir}/python2.2/site-packages/pexpect.py +%{_libdir}/python2.2/site-packages/pexpect.pyc + +%doc README.txt doc examples + +%changelog +* Sun Jul 27 2003 Panu Matilainen 0.98-0.fdr.3 +- own .pyo files too as suggested by Ville (#517) + +* Sat Jul 26 2003 Panu Matilainen 0.98-0.fdr.2 +- fixes by Ville (bug #517) applied + +* Sat Jul 26 2003 Panu Matilainen +- Initial Fedora packaging + diff --git a/sources b/sources index e69de29..4e69cf8 100644 --- a/sources +++ b/sources @@ -0,0 +1,3 @@ +914c2a5225e37dd6c0c73914db2fa4f1 pexpect-0.98.tgz +de9f0ed8a563fc0ea566055d000779ce pexpect-doc.tgz +be0086d3f55dd8690cba7381f9e9be14 pexpect-examples.tgz -- cgit