From 4469c75b165e6a0a43bdd1bba7a4df50d1abf4de Mon Sep 17 00:00:00 2001 From: rhatto Date: Sun, 28 Dec 2008 17:21:11 +0000 Subject: pexpect: adding pexpect git-svn-id: svn+slack://slack.fluxo.info/var/svn/mkbuilds@330 18ef50b8-d735-4ccd-97c1-689132df3dd9 --- dev/python/pexpect/Manifest | 3 ++ dev/python/pexpect/pexpect.mkbuild | 105 +++++++++++++++++++++++++++++++++++++ 2 files changed, 108 insertions(+) create mode 100644 dev/python/pexpect/Manifest create mode 100644 dev/python/pexpect/pexpect.mkbuild (limited to 'dev') diff --git a/dev/python/pexpect/Manifest b/dev/python/pexpect/Manifest new file mode 100644 index 0000000..b81526b --- /dev/null +++ b/dev/python/pexpect/Manifest @@ -0,0 +1,3 @@ +DIST pexpect-2.3.tar.gz 150868 MD5 bf107cf54e67bc6dec5bea1f3e6a65c3 SHA1 ee1e2770bfe49e7651bab78357179c28ed99a55b SHA256 d315e7f3a8544fd85034d7e17fd7c5854e8f0828f5791f83cf313f8fa5740b75 SHA512 84c75d09cd59b46579fd737e7042860760a39ff1501941705b247a9194527146eada2b97312adce1e75ab6517be9cd9aec9ea92c54d7eb4e85d7aaedf85e122d RMD160 74adfd7e91152d64907f1a685b5dd0161cf4bf82 +MKBUILD pexpect.mkbuild 3080 MD5 63a343840b5a60cf38a4b9b9ac1d0e19 SHA1 fd2f9a789de1cb39e34a509dec9920a2802a79f5 SHA256 dbfd9d688f3c3ba9384cf7283658a4c9a4e3fee2263297f82d6a21c8846dcac1 SHA512 efede885cefab197c858264e4a6bc38cd6db1676bd552e65335ea64ff0c74170a4c93dd2aa11ee48cf1210d85b9bf1fdd62b59de85a71344537a7a439f87bdfc RMD160 f0d793750820639f0747f92a59f5fca0a919f5ca +SLACKBUILD pexpect.SlackBuild 6608 MD5 a239e309e58811bd30267d678730b1d3 SHA1 a4978135916063c10b5b61fb6ded65d018147d07 SHA256 fd04be5a612ea199716616481ae7411dfb64a9191943232c0e41868ce1cb7dee SHA512 e937c002b0e27958eae1276512fa58b42dd5db6e1e56f6e4dc21afdc97956ea7f4629992c8c203ed562090c1fdb5651723a60d582d9c02f146ca6d1ae6077102 RMD160 e960db1d495c321d7fe881c0caf3126da6a173d4 diff --git a/dev/python/pexpect/pexpect.mkbuild b/dev/python/pexpect/pexpect.mkbuild new file mode 100644 index 0000000..792688d --- /dev/null +++ b/dev/python/pexpect/pexpect.mkbuild @@ -0,0 +1,105 @@ +# +# This mkbuild is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 2 of the License, or any later version. +# +# This mkbuild is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., 59 Temple +# Place - Suite 330, Boston, MA 02111-1307, USA +# +# Version 0.9.0 - Alves ( rudsonalves at yahoo d0t com d0t br ) +# Version $Rev: 714 $ - $Author: rhatto $ + +#-------------------- +# Personal variables +#-------------------- +# Author name +[[SLACKBUILD AUTHOR]]="Silvio Rhatto" + +# Initials author name +[[SLACKBUILD AUTHOR INITIALS]]="rha" + +#------------------------ +# Construction Variables +#------------------------ +# +# Complete URL address or URL base address ( without $SRC_NAME-$VERSION... ) +[[DOWNLOAD FOLDER URL]]="http://pexpect.sourceforge.net/pexpect-2.3.tar.gz" + +# +# Documentation files +[[DOCUMENTATION FILES]]="" + +# SlackBuild model +[[SLACKBUILD MODEL]]="generic.mkSlackBuild" + +# SlackBuild PATH in Slack.Sarava tree +[[SLACKBUILD PATH]]="dev/python/pexpect" + +#--------------------- +# SlackBuild Sections +#--------------------- +# Default sections: +# head, set_variables, slkflags, start_structure, untar_source, +# make_package, install_package, build_package +# Warning: don't remove '#>>' and "#<<" tags. +#>> Start SlackBuild Sections: + on: head + on: slackbuildrc + on: set_variables + on: slkflags + on: error_codes + on: start_structure +off: create_build_user_and_group + on: download_source +off: download_patches +off: svn_source +off: git_source +off: md5sum_download_and_check_0 +off: md5sum_download_and_check_1 +off: gpg_signature_check + on: manifest_check + on: untar_source +off: patch_source +off: configure + on: make_package +off: install_package + on: strip_binaries +off: compress_manpages +off: compress_info_files +off: copy_init_scripts +off: copy_config_files + on: install_documentation + on: slackdesc +off: move_config_files +off: postinstall_script +off: slack_required + on: build_package + on: clean_builds +#<< End SlackBuild Sections + +#------------------ +# Sections changes +#------------------ +#>slackdesc +pexpect: pexpect +pexpect: +pexpect: Pexpect is a pure Python expect-like module. Pexpect makes Python +pexpect: a better tool for controlling other applications. +pexpect: +pexpect: Pexpect is a pure Python module for spawning child applications; +pexpect: controlling them; and responding to expected patterns in their +pexpect: output. Pexpect works like Don Libes' Expect. Pexpect allows +pexpect: your script to spawn a child application and control it as if +pexpect: a human were typing commands. +pexpect: +#make_package +# Build and install package +python setup.py build install --root=$PKG +#