diff options
author | larryhaja <larryhaja@gmail.com> | 2012-09-16 21:46:57 -0700 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-17 23:36:13 -0500 |
commit | 18a5062fbfa689ce9f98b152d9a219a5cf4095e0 (patch) | |
tree | 4d06d61bee742041cb274198f7cf52254c53a9b4 /python/psutil | |
parent | 420571addf0d26ae455f3d9b172e129e29ca9d47 (diff) | |
download | slackbuilds-18a5062fbfa689ce9f98b152d9a219a5cf4095e0.tar.gz |
python/psutil: Added (query running processes and system utilities)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'python/psutil')
-rw-r--r-- | python/psutil/README | 5 | ||||
-rw-r--r-- | python/psutil/psutil.SlackBuild | 55 | ||||
-rw-r--r-- | python/psutil/psutil.info | 10 | ||||
-rw-r--r-- | python/psutil/slack-desc | 19 |
4 files changed, 89 insertions, 0 deletions
diff --git a/python/psutil/README b/python/psutil/README new file mode 100644 index 0000000000..b7548981e3 --- /dev/null +++ b/python/psutil/README @@ -0,0 +1,5 @@ +psutil is a module providing an interface for retrieving information on all +running processes and system utilization (CPU, memory, disks, network, users) in +a portable way by using Python, implementing many functionalities offered by +command line tools such as: ps, top, df, kill, free, lsof, netstat, ifconfig, +nice, ionice, iostat, iotop, uptime, pidof, tty, who, taskset, and pmap. diff --git a/python/psutil/psutil.SlackBuild b/python/psutil/psutil.SlackBuild new file mode 100644 index 0000000000..4f1ba871d6 --- /dev/null +++ b/python/psutil/psutil.SlackBuild @@ -0,0 +1,55 @@ +#!/bin/sh + +# Slackware build script for psutil + +# Written by Larry Hajali <larryhaja[at]gmail[dot]com> + +PRGNAM=psutil +VERSION=${VERSION:-0.6.1} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +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 . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -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 \ + CREDITS HISTORY INSTALL LICENSE MANIFEST.in PKG-INFO README \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +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:-tgz} diff --git a/python/psutil/psutil.info b/python/psutil/psutil.info new file mode 100644 index 0000000000..d379484456 --- /dev/null +++ b/python/psutil/psutil.info @@ -0,0 +1,10 @@ +PRGNAM="psutil" +VERSION="0.6.1" +HOMEPAGE="http://code.google.com/p/psutil/" +DOWNLOAD="http://psutil.googlecode.com/files/psutil-0.6.1.tar.gz" +MD5SUM="3cfcbfb8525f6e4c70110e44a85e907e" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="distribute" +MAINTAINER="Larry Hajali" +EMAIL="larryhaja[at]gmail[dot]com" diff --git a/python/psutil/slack-desc b/python/psutil/slack-desc new file mode 100644 index 0000000000..7f46babbee --- /dev/null +++ b/python/psutil/slack-desc @@ -0,0 +1,19 @@ +# 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 ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +psutil: psutil +psutil: +psutil: psutil is a module providing an interface for retrieving information +psutil: on all running processes and system utilization (CPU, memory, disks, +psutil: network, users) in a portable way by using Python, implementing many +psutil: functionalities offered by command line tools such as: ps, top, df, +psutil: kill, free, lsof, netstat, ifconfig, nice, ionice, iostat, iotop, +psutil: uptime, pidof, tty, who, taskset, and pmap +psutil: +psutil: Homepage: http://code.google.com/p/psutil/ +psutil: |