summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
author Heinz Wiesinger2013-12-01 22:01:54 +0100
committer Robby Workman2013-12-02 07:58:04 +0100
commite1e1b9eeabc174afcec10faaf8896b31cbd1a531 (patch)
treec2489d0eecdbabd3b7ceec8c0d3f91151b709e23 /misc
parent90fc5e953844d8a2ce2d3a3426432bcd2f1f3015 (diff)
downloadslackbuilds-e1e1b9eeabc174afcec10faaf8896b31cbd1a531.tar.gz
network/siege: Updated for version 3.0.5, added a license.
Script cleanup, moved from misc to network Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/siege/README6
-rw-r--r--misc/siege/siege.SlackBuild94
-rw-r--r--misc/siege/siege.info10
-rw-r--r--misc/siege/slack-desc19
4 files changed, 0 insertions, 129 deletions
diff --git a/misc/siege/README b/misc/siege/README
deleted file mode 100644
index 5ec3a5fccf..0000000000
--- a/misc/siege/README
+++ /dev/null
@@ -1,6 +0,0 @@
-Siege is an http regression testing and benchmarking utility. It was designed
-to let web developers measure the performance of their code under duress,
-to see how it will stand up to load on the internet. Siege supports basic
-authentication, cookies, HTTP and HTTPS protocols. It allows the user to hit
-a web server with a configurable number of concurrent simulated users. Those
-users place the webserver "under siege."
diff --git a/misc/siege/siege.SlackBuild b/misc/siege/siege.SlackBuild
deleted file mode 100644
index 8c6ef7f864..0000000000
--- a/misc/siege/siege.SlackBuild
+++ /dev/null
@@ -1,94 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for Siege
-
-# 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=siege
-VERSION=${VERSION:-2.72}
-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 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 \
- --build=$ARCH-slackware-linux
-
-make
-make install-strip DESTDIR=$PKG
-
-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 AUTHORS ChangeLog COPYING KNOWNBUGS MACHINES NEWS PLATFORM README* \
- $PKG/usr/doc/$PRGNAM-$VERSION
-
-# Include .siegerc and url.txt examples
-cp -a doc/{urls.txt,siegerc} $PKG/usr/doc/$PRGNAM-$VERSION
-
-# Test webpages
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html
-cp -a html/{README,basic.php,cache-control.php,cookie-test.php,etag.php,login.php} \
- $PKG/usr/doc/$PRGNAM-$VERSION/html
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a ChangeLog $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/misc/siege/siege.info b/misc/siege/siege.info
deleted file mode 100644
index e117513d11..0000000000
--- a/misc/siege/siege.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="siege"
-VERSION="2.72"
-HOMEPAGE="http://www.joedog.org/index/siege-home"
-DOWNLOAD="http://www.joedog.org/pub/siege/siege-2.72.tar.gz"
-MD5SUM="6bd0b1dca6b95717e23a6bade9a0a1f4"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Heinz Wiesinger"
-EMAIL="pprkut@liwjatan.at"
diff --git a/misc/siege/slack-desc b/misc/siege/slack-desc
deleted file mode 100644
index 315e48f7d7..0000000000
--- a/misc/siege/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------------------------------------------------------|
-siege: siege (http server benchmark)
-siege:
-siege: Siege is an http regression testing and benchmarking utility.
-siege: It was designed to let web developers measure the performance
-siege: of their code under duress, to see how it will stand up to
-siege: load on the internet.
-siege:
-siege: Jeffrey Fulmer is the primary author and maintainer of siege.
-siege:
-siege:
-siege: