From 6e92b152f8c52bad5a30e9c1cc3f6b95e50cce79 Mon Sep 17 00:00:00 2001 From: Willy Sudiarto Raharjo Date: Thu, 22 Oct 2015 07:38:04 +0700 Subject: [PATCH] ptyprocess: Added (new dependency). Signed-off-by: Willy Sudiarto Raharjo --- BUILD_ORDER | 1 + build-cinnamon.sh | 1 + ptyprocess/ptyprocess.SlackBuild | 89 ++++++++++++++++++++++++++++++++ ptyprocess/slack-desc | 12 +++++ 4 files changed, 103 insertions(+) create mode 100644 ptyprocess/ptyprocess.SlackBuild create mode 100644 ptyprocess/slack-desc diff --git a/BUILD_ORDER b/BUILD_ORDER index e84e48c..d744441 100644 --- a/BUILD_ORDER +++ b/BUILD_ORDER @@ -1,3 +1,4 @@ +ptyprocess gnome-common mozjs cjs diff --git a/build-cinnamon.sh b/build-cinnamon.sh index 53d1e0b..430a440 100755 --- a/build-cinnamon.sh +++ b/build-cinnamon.sh @@ -38,6 +38,7 @@ CSBROOT=$(pwd) # Loop for all packages for dir in \ + ptyprocess \ gnome-common \ mozjs \ cjs \ diff --git a/ptyprocess/ptyprocess.SlackBuild b/ptyprocess/ptyprocess.SlackBuild new file mode 100644 index 0000000..06c6936 --- /dev/null +++ b/ptyprocess/ptyprocess.SlackBuild @@ -0,0 +1,89 @@ +#!/bin/sh + +# Slackware build script for ptyprocess + +# Copyright 2015 Willy Sudiarto Raharjo +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=ptyprocess +VERSION=${VERSION:-0.5} +BUILD=${BUILD:-1} +TAG=${TAG:-_csb} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +wget -c https://pypi.python.org/packages/source/p/ptyprocess/$PRGNAM-$VERSION.tar.gz + +CWD=$(pwd) +TMP=${TMP:-/tmp/csb} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +python setup.py install --root=$PKG + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a README.rst PKG-INFO $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +find $PKG/usr/doc/$PRGNAM-$VERSION/ -type f -exec chmod 644 {} \; +chown -R root:root $PKG/usr/doc/$PRGNAM-$VERSION + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-txz} diff --git a/ptyprocess/slack-desc b/ptyprocess/slack-desc new file mode 100644 index 0000000..1428862 --- /dev/null +++ b/ptyprocess/slack-desc @@ -0,0 +1,12 @@ + |-----handy-ruler------------------------------------------------------| +ptyprocess: ptyprocess (python module) +ptyprocess: +ptyprocess: Launch a subprocess in a pseudo terminal (pty), and interact with +ptyprocess: both the process and its pty. +ptyprocess: Sometimes, piping stdin and stdout is not enough. There might be +ptyprocess: a password prompt that doesn’t read from stdin, output that changes +ptyprocess: when it’s going to a pipe rather than a terminal, or curses-style +ptyprocess: interfaces that rely on a terminal. +ptyprocess: +ptyprocess: Project URL: https://pypi.python.org/pypi/ptyprocess +ptyprocess: