diff options
author | Dave Woodfall <dave@slackbuilds.org> | 2021-05-03 06:50:18 +0100 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-05-03 01:49:58 -0500 |
commit | eedbb272487e9d6bf7f8c020580f809a1c92a751 (patch) | |
tree | 505757030dda60a8d35c52ceb680be1f3e34e299 /python/python-simpy | |
parent | 7e8912f3591c6ec8e0c8dec299a997cb2064e951 (diff) |
python/python-simpy: Renamed python2-simpy.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Diffstat (limited to 'python/python-simpy')
-rw-r--r-- | python/python-simpy/README | 18 | ||||
-rw-r--r-- | python/python-simpy/python-simpy.SlackBuild | 73 | ||||
-rw-r--r-- | python/python-simpy/python-simpy.info | 10 | ||||
-rw-r--r-- | python/python-simpy/slack-desc | 19 |
4 files changed, 0 insertions, 120 deletions
diff --git a/python/python-simpy/README b/python/python-simpy/README deleted file mode 100644 index fc68efa74f83a..0000000000000 --- a/python/python-simpy/README +++ /dev/null @@ -1,18 +0,0 @@ -SimPy -===== - -SimPy is a process-based discrete-event simulation language based on standard -Python and released under the GNU LGPL. - -It provides the modeller with components of a simulation model. These include -processes for active components like customers, messages and vehicles as well -as resources for passive components that form limited capacity congestion -points (like servers, checkout counters and tunnels). It also provides monitor -variables to aid in gathering statistics. SimPy comes with extensive plotting -capabilities. - -The distribution contains in-depth documentation, tutorials, and a large number -of simulation models. - -To build documentation, pass DOCS=yes to the slackbuild. Requires the optional -dependency Sphinx. diff --git a/python/python-simpy/python-simpy.SlackBuild b/python/python-simpy/python-simpy.SlackBuild deleted file mode 100644 index f7ce00312db5b..0000000000000 --- a/python/python-simpy/python-simpy.SlackBuild +++ /dev/null @@ -1,73 +0,0 @@ -#!/bin/sh - -# Slackware build script for SimPy - -# Written by John Tyree <johntyree+sbo@gmail.com> - -PRGNAM=python-simpy -VERSION=${VERSION:-3.0.10} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -SRCNAM=simpy -DOCS=${DOCS:-"no"} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -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 $SRCNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz -cd $SRCNAM-$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 {} \; - -python setup.py install --root=$PKG - -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 - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -if [[ $DOCS == "yes" ]]; then - (cd ./docs; make html; cp -a html $PKG/usr/doc/$PRGNAM-$VERSION) -fi -cp -a AUTHORS.txt CHANGES.txt LICENSE.txt README.txt docs/examples \ - $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/python/python-simpy/python-simpy.info b/python/python-simpy/python-simpy.info deleted file mode 100644 index 2ddca2801b1ce..0000000000000 --- a/python/python-simpy/python-simpy.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-simpy" -VERSION="3.0.10" -HOMEPAGE="https://pypi.python.org/pypi/simpy" -DOWNLOAD="https://pypi.python.org/packages/81/87/074e97b833d35e2979e6a67fe2fdc26c0178bf1ce5a3a6ea999e771688dd/simpy-3.0.10.tar.gz" -MD5SUM="a968f5562d6f2292a139f8a445e2f7d5" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="John Tyree" -EMAIL="johntyree+sbo@gmail.com" diff --git a/python/python-simpy/slack-desc b/python/python-simpy/slack-desc deleted file mode 100644 index d8a22c687b305..0000000000000 --- a/python/python-simpy/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------------------------------------------------------| -python-simpy: python-simpy (Object Oriented Discrete Event Simulation in Python) -python-simpy: -python-simpy: SimPy (= Simulation in Python) is an object-oriented, process-based -python-simpy: discrete-event simulation language based on standard Python. It -python-simpy: provides the modeller with components of a simulation model including -python-simpy: processes, for active components like customers, messages, and -python-simpy: vehicles, and resources, for passive components that form limited -python-simpy: capacity congestion points like servers, checkout counters, and -python-simpy: tunnels. -python-simpy: -python-simpy: https://pypi.python.org/pypi/simpy |