summaryrefslogtreecommitdiffstats
path: root/libraries/logilab-common
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/logilab-common')
-rw-r--r--libraries/logilab-common/logilab-common.SlackBuild18
-rw-r--r--libraries/logilab-common/logilab-common.info2
2 files changed, 15 insertions, 5 deletions
diff --git a/libraries/logilab-common/logilab-common.SlackBuild b/libraries/logilab-common/logilab-common.SlackBuild
index c2733d0dab..70918aecb9 100644
--- a/libraries/logilab-common/logilab-common.SlackBuild
+++ b/libraries/logilab-common/logilab-common.SlackBuild
@@ -1,24 +1,34 @@
-#!/bin/sh
+#!/bin/bash
# Slackware build script for logilab-common
# Written by Grissiom chaos.proton@gmail.com
# Updated up to v. 0.63.2 by Serban Udrea (S.Udrea@gsi.de)
+cd $(dirname $0) ; CWD=$(pwd)
+
PRGNAM=logilab-common
VERSION=${VERSION:-0.63.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
- i?86) ARCH=i486 ;;
+ i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
fi
-CWD=$(pwd)
+# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
+# the name of the created package would be, and then exit. This information
+# could be useful to other scripts.
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
+ exit 0
+fi
+
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
@@ -50,4 +60,4 @@ 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}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/libraries/logilab-common/logilab-common.info b/libraries/logilab-common/logilab-common.info
index 5be04bdbfa..05d10f8b32 100644
--- a/libraries/logilab-common/logilab-common.info
+++ b/libraries/logilab-common/logilab-common.info
@@ -5,6 +5,6 @@ DOWNLOAD="https://pypi.python.org/packages/source/l/logilab-common/logilab-commo
MD5SUM="2bf4599ae1f2ccf4603ca02c5d7e798e"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
-REQUIRES="six"
+REQUIRES=""
MAINTAINER="Serban Udrea"
EMAIL="S.Udrea@gsi.de"