From f1caea946bec5d4505bfdcb0e45d487c92a48156 Mon Sep 17 00:00:00 2001 From: rhatto Date: Sun, 28 Dec 2008 17:21:05 +0000 Subject: pexpect: adding pexpect git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@2047 370017ae-e619-0410-ac65-c121f96126d4 --- dev/python/pexpect/Manifest | 3 + dev/python/pexpect/pexpect.SlackBuild | 202 ++++++++++++++++++++++++++++++++++ 2 files changed, 205 insertions(+) create mode 100644 dev/python/pexpect/Manifest create mode 100644 dev/python/pexpect/pexpect.SlackBuild (limited to 'dev') diff --git a/dev/python/pexpect/Manifest b/dev/python/pexpect/Manifest new file mode 100644 index 00000000..b81526bf --- /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.SlackBuild b/dev/python/pexpect/pexpect.SlackBuild new file mode 100644 index 00000000..5aa195f2 --- /dev/null +++ b/dev/python/pexpect/pexpect.SlackBuild @@ -0,0 +1,202 @@ +#!/bin/bash +# +# pexpect.SlackBuild 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. +# +# pexpect.SlackBuild 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 +# +# slackbuild for pexpect, by Silvio Rhatto +# requires: +# tested: pexpect-2.3 +# + +# Look for slackbuildrc +if [ -f ~/.slackbuildrc ]; then + source ~/.slackbuildrc +elif [ -f /etc/slackbuildrc ]; then + source /etc/slackbuildrc +fi + +# Set variables +CWD="$(pwd)" +SRC_NAME="pexpect" +PKG_NAME="pexpect" +ARCH=${ARCH:=i486} +SRC_VERSION=${VERSION:=2.3} +PKG_VERSION="$(echo "$SRC_VERSION" | tr '[[:blank:]-]' '_')" +BUILD=${BUILD:=1rha} +SRC_DIR=${SRC_DIR:=$CWD}/$PKG_NAME +TMP=${TMP:=/tmp} +PKG=${PKG:=$TMP/package-$PKG_NAME} +REPOS=${REPOS:=$TMP} +PREFIX=${PREFIX:=/usr} +PKG_WORK="$TMP/$SRC_NAME" +CONF_OPTIONS=${CONF_OPTIONS:=""} +NUMJOBS=${NUMJOBS:=""} + +# Set system libraries' path and optmization flags based on $ARCH +LIBDIR="$PREFIX/lib" + +if [ "$ARCH" = "i386" ]; then + SLKCFLAGS="-O2 -march=i386 -mcpu=i686" +elif [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mcpu=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686" +elif [ "$ARCH" = "s390" ]; then + SLKCFLAGS="-O2" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIR="$PREFIX/lib64" + LDFLAGS="-L/lib64 -L/usr/lib64" +fi + +# Set error codes (used by createpkg) +ERROR_WGET=31; ERROR_MAKE=32; ERROR_INSTALL=33 +ERROR_MD5=34; ERROR_CONF=35; ERROR_HELP=36 +ERROR_TAR=37; ERROR_MKPKG=38; ERROR_GPG=39 +ERROR_PATCH=40; ERROR_VCS=41; ERROR_MKDIR=42 +ERROR_MANIFEST=43; + +# Clean up any leftovers of previous builds +rm -rf "$PKG_WORK" 2> /dev/null +rm -rf "$PKG" 2> /dev/null + +# Create directories if necessary +mkdir -p "$SRC_DIR" || exit $ERROR_MKDIR +mkdir -p "$PKG" || exit $ERROR_MKDIR +mkdir -p "$REPOS" || exit $ERROR_MKDIR +mkdir -p "$PKG_WORK" || exit $ERROR_MKDIR + +# Dowload source if necessary +SRC="$SRC_NAME-$VERSION.tar.gz" +URL="http://pexpect.sourceforge.net/$SRC" + +if [ ! -s "$SRC_DIR/$SRC" ] || ! gunzip -t "$SRC_DIR/$SRC" 2> /dev/null; then + wget "$URL" -O "$SRC_DIR/$SRC" || exit $ERROR_WGET +fi + +# Check Manifest file +if [ -e "$CWD/Manifest" ]; then + + MANIFEST_LINES="`grep -E -v "^(MKBUILD|SLACKBUILD)" $CWD/Manifest | wc -l`" + + for ((MANIFEST_COUNT=1; MANIFEST_COUNT <= $MANIFEST_LINES; MANIFEST_COUNT++)); do + + MANIFEST_LINE="`grep -E -v "^(MKBUILD|SLACKBUILD)" $CWD/Manifest | head -n $MANIFEST_COUNT | tail -n 1`" + MANIFEST_FILE="`echo $MANIFEST_LINE | awk '{ print $2 }'`" + MANIFEST_FILE_TYPE="`echo $MANIFEST_LINE | awk '{ print $1 }'`" + + if [ -e "$SRC_DIR/$MANIFEST_FILE" ]; then + MANIFEST_FILE="$SRC_DIR/$MANIFEST_FILE" + else + MANIFEST_FILE="`find $CWD -name $MANIFEST_FILE`" + fi + + if [ ! -e "$MANIFEST_FILE" ] || [ -d "$MANIFEST_FILE" ]; then + continue + fi + + echo "Checking Manifest for $MANIFEST_FILE_TYPE $MANIFEST_FILE integrity..." + + SIZE_SRC="`wc -c $MANIFEST_FILE | awk '{ print $1 }'`" + SIZE_MANIFEST="`echo $MANIFEST_LINE | awk '{ print $3 }'`" + + # Check source code size + if [ "$SIZE_SRC" != "$SIZE_MANIFEST" ]; then + echo "SIZE Manifest: $SIZE_MANIFEST; SIZE $SRC: $SIZE_SRC" + exit $ERROR_MANIFEST + else + echo "Size match." + fi + + # Check source code integrity + for ALGO in md5 sha1 sha256 sha512 rmd160; do + if [ $ALGO = "rmd160" ]; then + ALGO_SRC="`openssl rmd160 $MANIFEST_FILE | awk '{ print $2 }'`" + else + ALGO_SRC="`"$ALGO"sum $MANIFEST_FILE | awk '{ print $1 }'`" + fi + ALGO="`echo $ALGO | tr '[:lower:]' '[:upper:]'`" + ALGO_MANIFEST=$(echo $MANIFEST_LINE | sed "s/.* $ALGO //" | awk '{ print $1 }') + if [ "$ALGO_SRC" != "$ALGO_MANIFEST" ]; then + echo "$ALGO Manifest: $ALGO_MANIFEST; $ALGO $SRC: $ALGO_SRC" + exit $ERROR_MANIFEST + else + echo "$ALGO match." + fi + done + + done + +else + exit $ERROR_MANIFEST +fi + +# Untar +cd "$PKG_WORK" +tar --no-same-owner --no-same-permissions -xvf "$SRC_DIR/$SRC" || exit $ERROR_TAR +PKG_SRC="$PWD/`ls -l | awk '/^d/ { print $NF }'`" +cd "$PKG_SRC" + +# Build and install package +python setup.py build install --root=$PKG + +# Strip binaries +( cd "$PKG" + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null +) + +# Install documentation +DOCS="NEWS TODO README AUTHORS INSTALL ChangeLog MAINTAINERS COPYING LICENSE SIGNATURE readme.*" +mkdir -p "$PKG/usr/doc/$PKG_NAME-$PKG_VERSION" || exit $ERROR_MKDIR +for doc in $DOCS; do + if [ -f "$doc" ]; then + cp -a $doc "$PKG/usr/doc/$PKG_NAME-$PKG_VERSION" + fi +done + +# Add package description (slack-desc) +mkdir -p "$PKG/install" || exit $ERROR_MKDIR +cat << EODESC > "$PKG/install/slack-desc" +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +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: +EODESC + +# Build the package +cd "$PKG" +makepkg -l y -c n "$REPOS/$PKG_NAME-$PKG_VERSION-$ARCH-$BUILD.tgz" || exit $ERROR_MKPKG + +# Delete source and build directories if requested +if [ "$CLEANUP" == "yes" ] || [ "$1" = "--cleanup" ]; then + rm -rf "$PKG_WORK" "$PKG" +fi -- cgit v1.2.3