diff options
author | Dimitris Zlatanidis <d.zlatanidis@gmail.com> | 2014-02-06 19:18:15 +0700 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-02-08 11:10:11 -0600 |
commit | 117fbc6af05f0d4cef3c95e922d3d9245e7d1778 (patch) | |
tree | e0d1736066f3892ae8ded437b085a985f9d79c53 /python/pipdeptree | |
parent | 2707fc455f2e8cc22aee5652aecaaceaa5ddb1c5 (diff) |
python/pipdeptree: Added (show dependency tree of packages).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/pipdeptree')
-rw-r--r-- | python/pipdeptree/README | 6 | ||||
-rw-r--r-- | python/pipdeptree/pipdeptree.SlackBuild | 86 | ||||
-rw-r--r-- | python/pipdeptree/pipdeptree.info | 10 | ||||
-rw-r--r-- | python/pipdeptree/slack-desc | 19 |
4 files changed, 121 insertions, 0 deletions
diff --git a/python/pipdeptree/README b/python/pipdeptree/README new file mode 100644 index 000000000000..fb33f30749e1 --- /dev/null +++ b/python/pipdeptree/README @@ -0,0 +1,6 @@ +pipdeptree is a command line utility for displaying the python +packages installed in an environment in form of a dependency +tree. Since 'pip freeze' shows all dependencies as a flat list, +finding out which are the top level packages and which packages do +they depend on requires some effort. This utility tries to solve this +problem. diff --git a/python/pipdeptree/pipdeptree.SlackBuild b/python/pipdeptree/pipdeptree.SlackBuild new file mode 100644 index 000000000000..41abdd88b77a --- /dev/null +++ b/python/pipdeptree/pipdeptree.SlackBuild @@ -0,0 +1,86 @@ +#!/bin/sh + +# Slackware build script for pipdeptree + +# Copyright 2014 Dimitris Zlatanidis Greece-Orestiada +# 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=pipdeptree +VERSION=${VERSION:-0.2} +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} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -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 PKG-INFO README.rst $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/pipdeptree/pipdeptree.info b/python/pipdeptree/pipdeptree.info new file mode 100644 index 000000000000..b876ab3e168e --- /dev/null +++ b/python/pipdeptree/pipdeptree.info @@ -0,0 +1,10 @@ +PRGNAM="pipdeptree" +VERSION="0.2" +HOMEPAGE="https://github.com/naiquevin/pipdeptree" +DOWNLOAD="https://pypi.python.org/packages/source/p/pipdeptree/pipdeptree-0.2.tar.gz" +MD5SUM="ae158d2c7e388bc8d9eabbaedbfda445" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="pip" +MAINTAINER="Dimitris Zlatanidis" +EMAIL="d.zlatanidis@gmail.com" diff --git a/python/pipdeptree/slack-desc b/python/pipdeptree/slack-desc new file mode 100644 index 000000000000..2c9e7619aada --- /dev/null +++ b/python/pipdeptree/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------------------------------------------------------| +pipdeptree: pipdeptree (show dependency tree of packages) +pipdeptree: +pipdeptree: pipdeptree is a command line utility for displaying the python +pipdeptree: packages installed in an environment in form of a dependency tree. +pipdeptree: +pipdeptree: Homepage: https://github.com/naiquevin/pipdeptree +pipdeptree: +pipdeptree: +pipdeptree: +pipdeptree: +pipdeptree: |