diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 15f3d05..0000000 --- a/.gitignore +++ /dev/null @@ -1,13 +0,0 @@ -pexpect-2.3.tar.gz -/pexpect-u-2.5.1.tar.gz -/pexpect-3.0.tar.gz -/pexpect-3.1.tar.gz -/pexpect-4.0.tar.gz -/pexpect-4.0.1.tar.gz -/pexpect-4.1.0.tar.gz -/pexpect-4.2.1.tar.gz -/pexpect-4.3.tar.gz -/pexpect-4.3.1.tar.gz -/pexpect-4.4.tar.gz -/pexpect-4.5.tar.gz -/pexpect-4.6.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..ead3fd2 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +package is already in RHEL diff --git a/python-pexpect.spec b/python-pexpect.spec deleted file mode 100644 index f709a12..0000000 --- a/python-pexpect.spec +++ /dev/null @@ -1,351 +0,0 @@ -%bcond_with check - -%global modname pexpect - -Name: python-%{modname} -Summary: Unicode-aware Pure Python Expect-like module -Version: 4.6 -Release: 1%{?dist} - -License: MIT -URL: https://github.com/pexpect/pexpect -Source0: %{url}/archive/%{version}/%{modname}-%{version}.tar.gz - -BuildRequires: %{_bindir}/man - -BuildArch: noarch - -%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 automate setup scripts for duplicating -software package installations on different servers. And 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. - -%package -n python2-%{modname} -Summary: %{summary} -%{?python_provide:%python_provide python2-%{modname}} -BuildRequires: python2-devel -BuildRequires: python2-pytest -BuildRequires: python2-ptyprocess -Requires: python2-ptyprocess -Provides: pexpect = %{version}-%{release} -Obsoletes: pexpect <= 2.3-20 - -%description -n python2-pexpect -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. This package contains the -python2 version of this module. - -Pexpect can be used for automating interactive applications such as ssh, ftp, -passwd, telnet, etc. It can be used to automate setup scripts for duplicating -software package installations on different servers. And 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. - -%package -n python3-%{modname} -Summary: %{summary} -BuildRequires: python34-devel -BuildRequires: python34-pytest -BuildRequires: python34-ptyprocess -Requires: python34-ptyprocess - -%description -n python3-%{modname} -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. This package contains the -python3 version of this module. - -Pexpect can be used for automating interactive applications such as ssh, ftp, -passwd, telnet, etc. It can be used to automate setup scripts for duplicating -software package installations on different servers. And 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 -%autosetup -c -mv %{modname}-%{version} python2 -chmod +x python2/tools/* -find python2/examples -type f | xargs chmod a-x -cp -pr python2 python3 - -find python2 -type f -name '*.py' | xargs sed -i '1s|^#!.*|#!%{__python2}|' -find python3 -type f -name '*.py' | xargs sed -i '1s|^#!.*|#!%{__python3}|' - -%build -pushd python2 - %py2_build -popd - -pushd python3 - %py3_build -popd - -%install -pushd python2 - %py2_install - rm -rf ${buildroot}%{python2_sitelib}/setuptools/tests - # Drop asyncio stuff from py2 - rm -f %{buildroot}%{python2_sitelib}/%{modname}/_async.py -popd - -pushd python3 - %py3_install - rm -rf %{buildroot}%{python3_sitelib}/pexpect/tests -popd - -%if %{with check} -%check -export PYTHONIOENCODING=UTF-8 -export LC_ALL="en_US.UTF-8" - -pushd python2 - %{__python2} ./tools/display-sighandlers.py - %{__python2} ./tools/display-terminalinfo.py - PYTHONPATH=%{buildroot}%{python2_sitelib} %{__python2} ./tools/display-maxcanon.py - py.test-2 --verbose -popd - -pushd python3 - %{__python3} ./tools/display-sighandlers.py - %{__python3} ./tools/display-terminalinfo.py - PYTHONPATH=%{buildroot}%{python3_sitelib} %{__python3} ./tools/display-maxcanon.py - py.test-3 --verbose -popd -%endif - -%files -n python2-%{modname} -%license python2/LICENSE -%doc python2/doc python2/examples -%{python2_sitelib}/%{modname}/ -%{python2_sitelib}/%{modname}-*.egg-info - -%files -n python3-%{modname} -%license python3/LICENSE -%doc python3/doc python3/examples -%{python3_sitelib}/%{modname}/ -%{python3_sitelib}/%{modname}-*.egg-info - -%changelog -* Wed Jul 25 2018 Dan Radez - 4.6-1 -- update to 4.6 - -* Sat Jul 14 2018 Fedora Release Engineering - 4.5-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Fri Jun 15 2018 Miro HronĨok - 4.5-2 -- Rebuilt for Python 3.7 - -* Wed May 23 2018 Igor Gnatenko - 4.5.0-1 -- Update to 4.5.0 - -* Mon Mar 12 2018 Igor Gnatenko - 4.4.0-1 -- Update to 4.4.0 - -* Fri Feb 09 2018 Fedora Release Engineering - 4.3.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Fri Dec 22 2017 Igor Gnatenko - 4.3.1-1 -- Update to 4.3.1 - -* Fri Nov 10 2017 Igor Gnatenko - 4.3-1 -- Update to 4.3 - -* Thu Jul 27 2017 Fedora Release Engineering - 4.2.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Tue Feb 14 2017 Igor Gnatenko - 4.2.1-1 -- Update to 4.2.1 - -* Sat Feb 11 2017 Fedora Release Engineering - 4.1.0-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Tue Dec 13 2016 Stratakis Charalampos - 4.1.0-3 -- Rebuild for Python 3.6 - -* Tue Jul 19 2016 Fedora Release Engineering - 4.1.0-2 -- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages - -* Thu Jun 30 2016 Igor Gnatenko - 4.1.0-1 -- Update to 4.1.0 -- Improve packaging - -* Thu Feb 04 2016 Fedora Release Engineering - 4.0.1-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Tue Nov 10 2015 Fedora Release Engineering - 4.0.1-5 -- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 - -* Sun Oct 18 2015 Kalev Lember - 4.0.1-4 -- Move pexpect provides to the right subpackage - -* Tue Oct 13 2015 Igor Gnatenko - 4.0.1-3 -- Fix asyncio issue (3.4.3+) - -* Thu Oct 08 2015 Igor Gnatenko - 4.0.1-2 -- Fix RPM macroses - -* Tue Oct 06 2015 Igor Gnatenko - 4.0.1-1 -- Update to 4.0.1 - -* Mon Oct 05 2015 Igor Gnatenko - 4.0-1 -- Update to 4.0 -- Follow modern RPM Packaging guidelines - -* Thu Jun 18 2015 Fedora Release Engineering - 3.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Sat Jun 07 2014 Fedora Release Engineering - 3.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Wed May 14 2014 Bohuslav Kabrda - 3.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 - -* Tue Apr 08 2014 Fabian Deutsch - 3.1-1 -- Update to 3.1 - -* Tue Nov 12 2013 Thomas Spura - 3.0-1 -- update to 3.0 - -* Wed Oct 30 2013 Thomas Spura - 3.0-0.1 -- new upstream is github/pexpect/pexpect -- update to rc3 -- build on noarch again -- consistently use %%{buildroot} everywhere -- be more explicit in %%files -- remove CFLAGS - -* Thu Sep 05 2013 Andrew McNabb - 2.5.1-11 -- Fix the name of the arm architecture in ExcludeArch - -* Thu Sep 05 2013 Andrew McNabb - 2.5.1-10 -- Remove noarch because of arm build problems (bug #999174) - -* Tue Aug 20 2013 Andrew McNabb - 2.5.1-9 -- Exclude the arm architecture (bug #999174) - -* Tue Aug 20 2013 Andrew McNabb - 2.5.1-8 -- Bump the obsoletes version - -* Sun Aug 04 2013 Fedora Release Engineering - 2.5.1-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Thu Feb 14 2013 Fedora Release Engineering - 2.5.1-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Tue Nov 20 2012 Andrew McNabb - 2.5.1-5 -- Exclude test scripts from the files list - -* Tue Nov 20 2012 Andrew McNabb - 2.5.1-4 -- Moved unit tests to a check section - -* Tue Nov 20 2012 Andrew McNabb - 2.5.1-3 -- Added unit tests and fixed metadata fields - -* Tue Nov 20 2012 Andrew McNabb - 2.5.1-2 -- Added versions to the obsoletes and provides fields - -* Tue Nov 20 2012 Andrew McNabb - 2.5.1-1 -- Updated to version 2.5.1 (pexpect-u fork) and added support for Python 3 - -* Wed Feb 09 2011 Fedora Release Engineering - 2.3-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Wed Jul 21 2010 David Malcolm - 2.3-5 -- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild - -* Sun Jul 26 2009 Fedora Release Engineering - 2.3-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Mon Feb 23 2009 Robert Scheck 2.3-3 -- Rebuild for gcc 4.4 and rpm 4.6 - -* Fri Dec 5 2008 Jeremy Katz - 2.3-2 -- Rebuild for python 2.6 - -* Tue Jan 08 2008 Robert Scheck 2.3-1 -- Upgrade to 2.3 -- Updated the source URL to match with the guidelines - -* Wed Aug 29 2007 Robert Scheck 2.1-5 -- Rebuilt (and some minor spec file tweaks) - -* Sat Dec 09 2006 Toshio Kuratomi - 2.1-4 -- Bump and rebuild because I forgot to cvs up before the last build. - -* Sat Dec 09 2006 Toshio Kuratomi - 2.1-3 -- Bump and rebuild for python 2.5 on devel. -- Add BR: python-devel as it provides a header necessary for python modules - on python 2.5. - -* Fri Sep 01 2006 Toshio Kuratomi - 2.1-2 -- Remove pyver define as it's not needed with the automatic python(abi). -- Stop ghosting .pyos. -- Let automatic python compilation take care of creating pyos. -- Rebuild for FC6. - -* Mon Jul 17 2006 Toshio Kuratomi - 2.1-1 -- Update to 2.1. - -* Thu Feb 16 2006 Toshio Kuratomi - 2.0-2 -- Bump and rebuild for FC5. -- Convert from python-abi to python(abi) requires. - -* Thu Nov 17 2005 Toshio Kuratomi - 2.0-1 -- Update to 2.0. - -* Sat Sep 3 2005 Toshio Kuratomi 0.99999b-2 -- Add LICENSE File. -- Make noarch. -- Remove executable permissions from the modules copied to examples. - -* Fri Sep 2 2005 Toshio Kuratomi 0.99999b -- Update to version 0.99999b. -- Add dist tag. - -* Thu Apr 7 2005 Michael Schwendt -- rebuilt - -* Thu Feb 03 2005 Toshio Kuratomi 0.999-2 -- Use python_sitelib macro to resolve build issues on x86_64. -- %%ghost *.pyo -- Install ANSI.py, screen.py, and FSM.py into the examples. These are intended - to suplement pexpect eventually but they are currently much less robust and - not installed to by default. But they are needed by some examples. -- Use __python macro in build/install for consistency. -- Add --skip-build to the invocation of setup.py in install. - -* Mon May 31 2004 Panu Matilainen 0.999-0.fdr.1 -- get rid of distrel munging, buildsys does that... -- update to 0.999 -- update doc and example tarballs -- fix build on python <> 2.2 -- use -O1 in install to generate .pyo files instead of manually creating the files -- require python-abi = pyver to get dependencies right - -* 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 deleted file mode 100644 index a900509..0000000 --- a/sources +++ /dev/null @@ -1,2 +0,0 @@ -SHA512 (pexpect-4.5.tar.gz) = db64dcded023696a8b447fa000a66600e402df0e62691dfad84a0073c0470a5c9b79c0266cc6f67d8b241d873e662963b37c577e9f47c4e1ec4702705baabbc3 -SHA512 (pexpect-4.6.tar.gz) = 20e6a91f159be1d4e0ef0a073247b3402e6193f3b167f1fd28238ef02ef605be055c1f19d40250b4989c637e75c30b693cf96a98ae81f3c7791b504476a467ab