diff options
author | markus reichelt <slackbuilds@mareichelt.de> | 2011-11-13 02:38:14 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-11-13 02:38:14 -0600 |
commit | 5e3b4036d1e8de8820d36c850114e37a4f9506b1 (patch) | |
tree | bed922568c5667406e08119e3e93843a17bad021 /python | |
parent | 410a25438a2453d256596455d6285a531066b207 (diff) | |
download | slackbuilds-5e3b4036d1e8de8820d36c850114e37a4f9506b1.tar.gz |
python/mock: Added (a Mocking and Testing Library in Python)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'python')
-rw-r--r-- | python/mock/README | 10 | ||||
-rw-r--r-- | python/mock/mock.SlackBuild | 89 | ||||
-rw-r--r-- | python/mock/mock.info | 10 | ||||
-rw-r--r-- | python/mock/slack-desc | 19 |
4 files changed, 128 insertions, 0 deletions
diff --git a/python/mock/README b/python/mock/README new file mode 100644 index 0000000000..78559c943f --- /dev/null +++ b/python/mock/README @@ -0,0 +1,10 @@ +mock implements a Mocking and Testing Library in Python + +mock is a Python module that provides a core Mock class. It removes +the need to create a host of stubs throughout your test suite. +The mock module also provides a patch() decorator that handles +patching module and class level attributes within the scope of a +test, along with sentinel for creating unique objects. +mock is tested on Python versions 2.4-2.7 and Python 3. + +This is required by tahoe-lafs diff --git a/python/mock/mock.SlackBuild b/python/mock/mock.SlackBuild new file mode 100644 index 0000000000..7a8520fa5a --- /dev/null +++ b/python/mock/mock.SlackBuild @@ -0,0 +1,89 @@ +#!/bin/sh + +# Slackware build script for mock. + +# Copyright 2011 Markus Reichelt, Aachen, DE +# 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. + +# markus reichelt, slackbuilds@mareichelt.de, 0xCCEEF115 +# 2011 September 04 - initial release + +PRGNAM=mock +VERSION=${VERSION:-0.7.2} +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 . \ + \( -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 {} \; + +python setup.py build +python setup.py install --root=$PKG + +find $PKG | xargs 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 +cp -a README.txt $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/mock/mock.info b/python/mock/mock.info new file mode 100644 index 0000000000..b022593087 --- /dev/null +++ b/python/mock/mock.info @@ -0,0 +1,10 @@ +PRGNAM="mock" +VERSION="0.7.2" +HOMEPAGE="http://www.voidspace.org.uk/python/mock/" +DOWNLOAD="http://pypi.python.org/packages/source/m/mock/mock-0.7.2.tar.gz" +MD5SUM="0e63747b20e67f7d3e563bc6fd5b88d3" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="markus reichelt" +EMAIL="slackbuilds@mareichelt.de" +APPROVED="rworkman" diff --git a/python/mock/slack-desc b/python/mock/slack-desc new file mode 100644 index 0000000000..ad5967da8a --- /dev/null +++ b/python/mock/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 ':'. + + |-----handy-ruler------------------------------------------------------| +mock: mock (a Mocking and Testing Library in Python) +mock: +mock: mock is a Python module that provides a core Mock class. It removes +mock: the need to create a host of stubs throughout your test suite. +mock: The mock module also provides a patch() decorator that handles +mock: patching module and class level attributes within the scope of a +mock: test, along with sentinel for creating unique objects. +mock: mock is tested on Python versions 2.4-2.7 and Python 3. +mock: +mock: Homepage: http://www.voidspace.org.uk/python/mock/ +mock: |