diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2020-10-19 22:42:31 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-17 23:30:02 -0500 |
commit | 1ed4bf7ace8582134142af74257f3638eebedfb9 (patch) | |
tree | 5128865d05495635aa9ea5a7a0a85c5f74909bb8 | |
parent | 0609f50589f40c1ee71bf53c422563f3ceb6f030 (diff) |
development/icecream: Removed (added to Slackware).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
-rw-r--r-- | development/icecream/README | 14 | ||||
-rw-r--r-- | development/icecream/doinst.sh | 30 | ||||
-rw-r--r-- | development/icecream/icecream.SlackBuild | 133 | ||||
-rw-r--r-- | development/icecream/icecream.info | 10 | ||||
-rw-r--r-- | development/icecream/profile.d/icecream.csh | 2 | ||||
-rw-r--r-- | development/icecream/profile.d/icecream.sh | 2 | ||||
-rw-r--r-- | development/icecream/rc.icecc-scheduler | 50 | ||||
-rw-r--r-- | development/icecream/rc.iceccd | 50 | ||||
-rw-r--r-- | development/icecream/rc.icecream.conf | 8 | ||||
-rw-r--r-- | development/icecream/slack-desc | 19 |
10 files changed, 0 insertions, 318 deletions
diff --git a/development/icecream/README b/development/icecream/README deleted file mode 100644 index d95ce6adf9c4..000000000000 --- a/development/icecream/README +++ /dev/null @@ -1,14 +0,0 @@ -Icecream is a distributed compile system. It allows parallel compiling -by distributing the compile jobs to several nodes of a compile network -running the icecc daemon. The icecc scheduler routes the jobs and -provides status and statistics information to the icecc monitor. Each -compile node can accept one or more compile jobs depending on the -number of processors and the settings of the daemon. Link jobs and -other jobs which cannot be distributed are executed locally on the -node where the compilation is started. - -Note that upon installation of the resulting package, all your -software will be compiled by icecream by default. - -For information on how to use icecream in combination with ccache see -https://github.com/icecc/icecream#how-to-combine-icecream-with-ccache diff --git a/development/icecream/doinst.sh b/development/icecream/doinst.sh deleted file mode 100644 index 9685b60dea71..000000000000 --- a/development/icecream/doinst.sh +++ /dev/null @@ -1,30 +0,0 @@ -config() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - # If there's no config file by that name, mv it over: - if [ ! -r $OLD ]; then - mv $NEW $OLD - elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # toss the redundant copy - rm $NEW - fi - # Otherwise, we leave the .new copy for the admin to consider... -} - -# Keep same perms on rc.iceccd.new: -if [ -e etc/rc.d/rc.iceccd ]; then - cp -a etc/rc.d/rc.iceccd etc/rc.d/rc.iceccd.new.incoming - cat etc/rc.d/rc.iceccd.new > etc/rc.d/rc.iceccd.new.incoming - mv etc/rc.d/rc.iceccd.new.incoming etc/rc.d/rc.iceccd.new -fi - -# Keep same perms on rc.icecc-scheduler.new: -if [ -e etc/rc.d/rc.icecc-scheduler ]; then - cp -a etc/rc.d/rc.icecc-scheduler etc/rc.d/rc.icecc-scheduler.new.incoming - cat etc/rc.d/rc.icecc-scheduler.new > etc/rc.d/rc.icecc-scheduler.new.incoming - mv etc/rc.d/rc.icecc-scheduler.new.incoming etc/rc.d/rc.icecc-scheduler.new -fi - -config etc/rc.d/rc.iceccd.new -config etc/rc.d/rc.icecream.conf.new -config etc/rc.d/rc.icecc-scheduler.new - diff --git a/development/icecream/icecream.SlackBuild b/development/icecream/icecream.SlackBuild deleted file mode 100644 index 4afe8dabd3d5..000000000000 --- a/development/icecream/icecream.SlackBuild +++ /dev/null @@ -1,133 +0,0 @@ -#!/bin/sh - -# Slackware build script for icecream - -# Copyright 2009-2018 Heinz Wiesinger, Amsterdam, The Netherlands -# 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=icecream -VERSION=${VERSION:-1.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} - -if ! grep ^icecream: /etc/group 2>&1 > /dev/null; then - echo " Must have a icecream group to run this script." - echo " # groupadd -g 283 icecream" - echo " Or something similar." - exit 1 -elif ! grep ^icecream: /etc/passwd 2>&1 > /dev/null; then - echo " Must have a icecream user to run this script." - echo " # useradd -u 283 -g icecream -d /var/cache/icecream icecream" - echo " Or something similar." - exit 1 -fi - -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 {} \; - -./autogen.sh - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib$LIBDIRSUFFIX \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --enable-clang-rewrite-includes \ - --enable-clang-wrappers \ - --enable-shared \ - --disable-static \ - --build=$ARCH-slackware-linux - -make -make install-strip DESTDIR=$PKG - -mkdir -p $PKG/etc/profile.d/ -cp $CWD/profile.d/* $PKG/etc/profile.d/ -chmod 0755 $PKG/etc/profile.d/* - -# Install init script -mkdir -p $PKG/etc/rc.d -install -m 0755 $CWD/rc.iceccd $PKG/etc/rc.d/rc.iceccd.new -install -m 0755 $CWD/rc.icecc-scheduler $PKG/etc/rc.d/rc.icecc-scheduler.new -install -m 0644 $CWD/rc.icecream.conf $PKG/etc/rc.d/rc.icecream.conf.new - -for i in $ARCH-slackware-linux-c++ $ARCH-slackware-linux-g++ \ - $ARCH-slackware-linux-gcc $ARCH-slackware-linux-clang \ - $ARCH-slackware-linux-clang++; do - ln -s /usr/bin/icecc $PKG/usr/libexec/icecc/bin/$i -done - -mkdir -p $PKG/var/{cache,log}/icecream -chown icecream:icecream $PKG/var/{cache,log}/icecream - -find $PKG/usr/man -type f -exec gzip -9 {} \; - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING NEWS README 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 -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/development/icecream/icecream.info b/development/icecream/icecream.info deleted file mode 100644 index 430743d46a5c..000000000000 --- a/development/icecream/icecream.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="icecream" -VERSION="1.1" -HOMEPAGE="https://github.com/icecc/icecream" -DOWNLOAD="https://github.com/icecc/icecream/archive/1.1/icecream-1.1.tar.gz" -MD5SUM="bd33e21fa25ccedeb5c94be9c6f034e1" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Heinz Wiesinger" -EMAIL="pprkut@liwjatan.at" diff --git a/development/icecream/profile.d/icecream.csh b/development/icecream/profile.d/icecream.csh deleted file mode 100644 index 386d9242a895..000000000000 --- a/development/icecream/profile.d/icecream.csh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/csh -setenv PATH /usr/libexec/icecc/bin:${PATH} diff --git a/development/icecream/profile.d/icecream.sh b/development/icecream/profile.d/icecream.sh deleted file mode 100644 index c0c3d179eeb8..000000000000 --- a/development/icecream/profile.d/icecream.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -export PATH=/usr/libexec/icecc/bin:$PATH diff --git a/development/icecream/rc.icecc-scheduler b/development/icecream/rc.icecc-scheduler deleted file mode 100644 index 633661bebe69..000000000000 --- a/development/icecream/rc.icecc-scheduler +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# Start/stop/restart scheduler. -# $Id: rc.scheduler,v 1.0 2009/04/18 -# Author: Heinz Wiesinger <pprkut@liwjatan.at> -# --------------------------------------------------------------------------- - -PID=$(/sbin/pidof -o %PPID icecc-scheduler) - -# Get the configuration information from /etc/rc.d/rc.icecream.conf: -. /etc/rc.d/rc.icecream.conf - -# Start scheduler: -scheduler_start() { - if [ -n "$PID" ]; then - echo "Distributed compiler scheduler already running" - exit - fi - if [ -x /usr/sbin/icecc-scheduler ]; then - echo "Starting distributed compiler scheduler: /usr/sbin/icecc-scheduler " - /usr/sbin/icecc-scheduler -n $NETWORK -d -u icecream \ - -l /var/log/icecream/icecc-scheduler.log - fi -} - -# Stop scheduler: -scheduler_stop() { - echo "Stopping distributed compiler scheduler" - killall icecc-scheduler 1> /dev/null 2> /dev/null -} - -# Restart scheduler: -scheduler_restart() { - scheduler_stop - sleep 1 - scheduler_start -} - -case "$1" in -'start') - scheduler_start - ;; -'stop') - scheduler_stop - ;; -'restart') - scheduler_restart - ;; -*) - echo "usage $0 start|stop|restart" -esac diff --git a/development/icecream/rc.iceccd b/development/icecream/rc.iceccd deleted file mode 100644 index 776de18a1543..000000000000 --- a/development/icecream/rc.iceccd +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# Start/stop/restart iceccd. -# $Id: rc.iceccd,v 1.0 2009/04/18 -# Author: Heinz Wiesinger <pprkut@liwjatan.at> -# --------------------------------------------------------------------------- - -PID=$(/sbin/pidof -o %PPID iceccd) - -# Get the configuration information from /etc/rc.d/rc.icecream.conf: -. /etc/rc.d/rc.icecream.conf - -# Start iceccd: -iceccd_start() { - if [ -n "$PID" ]; then - echo "Distributed compiler daemon already running" - exit - fi - if [ -x /usr/sbin/iceccd ]; then - echo "Starting distributed compiler daemon: /usr/sbin/iceccd " - /usr/sbin/iceccd -n $NETWORK -d -u icecream \ - -l /var/log/icecream/iceccd.log - fi -} - -# Stop iceccd: -iceccd_stop() { - echo "Stopping distributed compiler daemon" - killall iceccd 1> /dev/null 2> /dev/null -} - -# Restart iceccd: -iceccd_restart() { - iceccd_stop - sleep 1 - iceccd_start -} - -case "$1" in -'start') - iceccd_start - ;; -'stop') - iceccd_stop - ;; -'restart') - iceccd_restart - ;; -*) - echo "usage $0 start|stop|restart" -esac diff --git a/development/icecream/rc.icecream.conf b/development/icecream/rc.icecream.conf deleted file mode 100644 index f422fde1745d..000000000000 --- a/development/icecream/rc.icecream.conf +++ /dev/null @@ -1,8 +0,0 @@ -# /etc/rc.d/rc.icecream.conf -# -# This file contains the configuration settings for both iceccd and scheduler - -# Defines the network name used to determine which nodes can be used for -# the compile processes. That way you can have several icecream clusters -# in the same network -NETWORK=$(hostname -d) diff --git a/development/icecream/slack-desc b/development/icecream/slack-desc deleted file mode 100644 index a435b5c2cd4d..000000000000 --- a/development/icecream/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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------------------------------------------------------| -icecream: icecream (network-distributed compilation) -icecream: -icecream: Icecream is a distributed compile system. It allows parallel -icecream: compiling by distributing the compile jobs to several nodes of a -icecream: compile network running the statistics information to the icecc -icecream: monitor. Each compile node can accept one or more compile jobs -icecream: depending on the number of processors and the settings of icecc -icecream: daemon. The icecc scheduler routes the jobs and provides status -icecream: and the daemon. Link jobs and other jobs which cannot be -icecream: distributed are executed locally on the node where the compilation -icecream: is started. |