summaryrefslogtreecommitdiffstats
path: root/system/cpulimit
diff options
context:
space:
mode:
author Robby Workman2011-03-14 23:19:39 +0100
committer Robby Workman2011-03-14 23:19:39 +0100
commitcd089a04d78c959584d7a6720d84ca55ad614c0c (patch)
tree159772bffee24ee5d20f8d5dbd4c460886996f8d /system/cpulimit
parentd53299b3318df57a083c10d408b6a6fc0fcba8e4 (diff)
downloadslackbuilds-cd089a04d78c959584d7a6720d84ca55ad614c0c.tar.gz
system/cpulimit: Removed (unmaintained)
Reference: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2010-October/006570.html Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org> Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/cpulimit')
-rw-r--r--system/cpulimit/README6
-rw-r--r--system/cpulimit/cpulimit.SlackBuild78
-rw-r--r--system/cpulimit/cpulimit.info10
-rw-r--r--system/cpulimit/manpages/cpulimit.170
-rw-r--r--system/cpulimit/patches/02_segfault_longoptions.patch27
-rw-r--r--system/cpulimit/slack-desc19
6 files changed, 0 insertions, 210 deletions
diff --git a/system/cpulimit/README b/system/cpulimit/README
deleted file mode 100644
index c7bc833b55..0000000000
--- a/system/cpulimit/README
+++ /dev/null
@@ -1,6 +0,0 @@
-cpulimit is a simple program that attempts to limit the cpu usage of a
-process (expressed in percentage, not in cpu time). This is useful to
-control batch jobs, when you don't want them to eat too much cpu. It does
-not act on the nice value or other scheduling priority stuff, but on the
-real cpu usage. Also, it is able to adapt itself to the overall system
-load, dynamically and quickly.
diff --git a/system/cpulimit/cpulimit.SlackBuild b/system/cpulimit/cpulimit.SlackBuild
deleted file mode 100644
index 5a676aedf5..0000000000
--- a/system/cpulimit/cpulimit.SlackBuild
+++ /dev/null
@@ -1,78 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for cpulimit
-
-# Written by Menno Duursma <druiloor@zonnet.nl>
-
-# This program is free software. It comes without any warranty.
-# Granted WTFPL, Version 2, as published by Sam Hocevar. See
-# http://sam.zoy.org/wtfpl/COPYING for more details.
-
-PRGNAM=cpulimit
-VERSION=${VERSION:-1.1}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-# Automatically determine the architecture we're building on:
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- # Unless $ARCH is already set, use uname -m for all other archs:
- *) 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 # Exit on most errors
-
-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 {} \;
-
-# Apply a patch from the Debian folks that fixes a segfault
-patch -p1 --verbose < $CWD/patches/02_segfault_longoptions.patch
-
-sed -i "s/-O2/$SLKCFLAGS/" Makefile
-make
-install -D -m 0755 -s cpulimit $PKG/usr/bin/cpulimit
-
-# Generated with: help2man --version-option="--help" ./cpulimit > cpulimit.1
-mkdir -p $PKG/usr/man/man1
-gzip -9c $CWD/manpages/cpulimit.1 > $PKG/usr/man/man1/cpulimit.1.gz
-
-mkdir -p $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/system/cpulimit/cpulimit.info b/system/cpulimit/cpulimit.info
deleted file mode 100644
index 9e387e0085..0000000000
--- a/system/cpulimit/cpulimit.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="cpulimit"
-VERSION="1.1"
-HOMEPAGE="http://cpulimit.sourceforge.net/"
-DOWNLOAD="http://downloads.sourceforge.net/cpulimit/cpulimit-1.1.tar.gz"
-MD5SUM="f4ff6d4bfaef1258e8f5cd2041e2e2a3"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Menno Duursma"
-EMAIL="druiloor@zonnet.nl"
-APPROVED="rworkman"
diff --git a/system/cpulimit/manpages/cpulimit.1 b/system/cpulimit/manpages/cpulimit.1
deleted file mode 100644
index 0924612ef8..0000000000
--- a/system/cpulimit/manpages/cpulimit.1
+++ /dev/null
@@ -1,70 +0,0 @@
-.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.36.
-.TH USAGE: "1" "December 2009" "Usage: cpulimit TARGET [OPTIONS...]" "User Commands"
-.SH NAME
-Usage: \- manual page for Usage: cpulimit TARGET [OPTIONS...]
-.SH SYNOPSIS
-.B cpulimit
-\fITARGET \fR[\fIOPTIONS\fR...]
-.SH DESCRIPTION
-.IP
-TARGET must be exactly one of these:
-.TP
-\fB\-p\fR, \fB\-\-pid\fR=\fIN\fR
-pid of the process
-.TP
-\fB\-e\fR, \fB\-\-exe\fR=\fIFILE\fR
-name of the executable program file
-.TP
-\fB\-P\fR, \fB\-\-path\fR=\fIPATH\fR
-absolute path name of the executable program file
-.IP
-OPTIONS
-.TP
-\fB\-l\fR, \fB\-\-limit\fR=\fIN\fR
-percentage of cpu allowed from 0 to 100 (mandatory)
-.TP
-\fB\-v\fR, \fB\-\-verbose\fR
-show control statistics
-.TP
-\fB\-z\fR, \fB\-\-lazy\fR
-exit if there is no suitable target process, or if it dies
-.TP
-\fB\-h\fR, \fB\-\-help\fR
-display this help and exit
-.IP
-TARGET must be exactly one of these:
-.TP
-\fB\-p\fR, \fB\-\-pid\fR=\fIN\fR
-pid of the process
-.TP
-\fB\-e\fR, \fB\-\-exe\fR=\fIFILE\fR
-name of the executable program file
-.TP
-\fB\-P\fR, \fB\-\-path\fR=\fIPATH\fR
-absolute path name of the executable program file
-.IP
-OPTIONS
-.TP
-\fB\-l\fR, \fB\-\-limit\fR=\fIN\fR
-percentage of cpu allowed from 0 to 100 (mandatory)
-.TP
-\fB\-v\fR, \fB\-\-verbose\fR
-show control statistics
-.TP
-\fB\-z\fR, \fB\-\-lazy\fR
-exit if there is no suitable target process, or if it dies
-.TP
-\fB\-h\fR, \fB\-\-help\fR
-display this help and exit
-.SH "SEE ALSO"
-The full documentation for
-.B Usage:
-is maintained as a Texinfo manual. If the
-.B info
-and
-.B Usage:
-programs are properly installed at your site, the command
-.IP
-.B info Usage:
-.PP
-should give you access to the complete manual.
diff --git a/system/cpulimit/patches/02_segfault_longoptions.patch b/system/cpulimit/patches/02_segfault_longoptions.patch
deleted file mode 100644
index ee21484817..0000000000
--- a/system/cpulimit/patches/02_segfault_longoptions.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Author: Cesare Tirabassi <norsetto@ubuntu.com>
-Description: Fix long options list of arguments.
-Bugs: #487233, #487236, LP #241538
-
---- cpulimit-1.1.orig/cpulimit.c
-+++ cpulimit-1.1/cpulimit.c
-@@ -360,13 +360,13 @@
- const char* short_options="p:e:P:l:vzh";
- /* An array describing valid long options. */
- const struct option long_options[] = {
-- { "pid", 0, NULL, 'p' },
-- { "exe", 1, NULL, 'e' },
-- { "path", 0, NULL, 'P' },
-- { "limit", 0, NULL, 'l' },
-- { "verbose", 0, NULL, 'v' },
-- { "lazy", 0, NULL, 'z' },
-- { "help", 0, NULL, 'h' },
-+ { "pid", required_argument, NULL, 'p' },
-+ { "exe", required_argument, NULL, 'e' },
-+ { "path", required_argument, NULL, 'P' },
-+ { "limit", required_argument, NULL, 'l' },
-+ { "verbose", no_argument, NULL, 'v' },
-+ { "lazy", no_argument, NULL, 'z' },
-+ { "help", no_argument, NULL, 'h' },
- { NULL, 0, NULL, 0 }
- };
- //argument variables
diff --git a/system/cpulimit/slack-desc b/system/cpulimit/slack-desc
deleted file mode 100644
index 1103a2354d..0000000000
--- a/system/cpulimit/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 ':'.
-
- |-----handy-ruler---------------------------------------------------|
-cpulimit: cpulimit (limit cpu usage)
-cpulimit:
-cpulimit: A simple program that attempts to limit the cpu usage of a
-cpulimit: process (expressed in percentage, not in cpu time).
-cpulimit:
-cpulimit: cpulimit is written by Angelo Marletta.
-cpulimit:
-cpulimit:
-cpulimit:
-cpulimit:
-cpulimit: