From 8494a925a2cb53ac4e0acfdec545f1f448c4a734 Mon Sep 17 00:00:00 2001 From: Pierre-Philipp Braun Date: Sat, 9 Apr 2022 06:36:23 +0100 Subject: network/clusterit: Added (distributed shell) Signed-off-by: Dave Woodfall Signed-off-by: Willy Sudiarto Raharjo --- network/clusterit/README | 3 ++ network/clusterit/clusterit.SlackBuild | 91 ++++++++++++++++++++++++++++++++++ network/clusterit/clusterit.info | 10 ++++ network/clusterit/slack-desc | 19 +++++++ 4 files changed, 123 insertions(+) create mode 100644 network/clusterit/README create mode 100644 network/clusterit/clusterit.SlackBuild create mode 100644 network/clusterit/clusterit.info create mode 100644 network/clusterit/slack-desc (limited to 'network/clusterit') diff --git a/network/clusterit/README b/network/clusterit/README new file mode 100644 index 0000000000..1756996c34 --- /dev/null +++ b/network/clusterit/README @@ -0,0 +1,3 @@ +The most efficient and simple distributed shell around. + +ClusterIt provides the dsh and pcp command line tools. diff --git a/network/clusterit/clusterit.SlackBuild b/network/clusterit/clusterit.SlackBuild new file mode 100644 index 0000000000..a968345983 --- /dev/null +++ b/network/clusterit/clusterit.SlackBuild @@ -0,0 +1,91 @@ +#!/bin/bash + +# Slackware build script for ClusterIt + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=clusterit +VERSION=${VERSION:-2.5} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +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} + +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 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --disable-static \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG + +rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la + +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 + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a CHANGES README README-DVT TODO \ + $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 diff --git a/network/clusterit/clusterit.info b/network/clusterit/clusterit.info new file mode 100644 index 0000000000..0535e62ea6 --- /dev/null +++ b/network/clusterit/clusterit.info @@ -0,0 +1,10 @@ +PRGNAM="clusterit" +VERSION="2.5" +HOMEPAGE="https://www.garbled.net/clusterit.html" +DOWNLOAD="https://downloads.sourceforge.net/project/clusterit/clusterit/clusterit-2.5/clusterit-2.5.tar.gz" +MD5SUM="f0e772e07122e388de629fb57f7237ab" +REQUIRES="" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Pierre-Philipp Braun" +EMAIL="pbraun@nethence.com" diff --git a/network/clusterit/slack-desc b/network/clusterit/slack-desc new file mode 100644 index 0000000000..7e8ff443bb --- /dev/null +++ b/network/clusterit/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------------------------------------------------------| +clusterit: clusterit (distributed shell) +clusterit: +clusterit: The most efficient and simple distributed shell around. +clusterit: +clusterit: ClusterIt provides the dsh and pcp command line tools. +clusterit: +clusterit: +clusterit: +clusterit: +clusterit: +clusterit: -- cgit v1.2.3-65-gdbad