From 0721894431cf5291d49446dc36bf7dbb19c7ec41 Mon Sep 17 00:00:00 2001 From: Mikko Varri Date: Wed, 12 May 2010 23:28:45 +0200 Subject: development/nose: Added to 12.2 repository --- development/nose/README | 8 ++++++ development/nose/nose.SlackBuild | 53 ++++++++++++++++++++++++++++++++++++++++ development/nose/nose.info | 8 ++++++ development/nose/slack-desc | 19 ++++++++++++++ 4 files changed, 88 insertions(+) create mode 100644 development/nose/README create mode 100644 development/nose/nose.SlackBuild create mode 100644 development/nose/nose.info create mode 100644 development/nose/slack-desc (limited to 'development/nose') diff --git a/development/nose/README b/development/nose/README new file mode 100644 index 0000000000..af2b92fe47 --- /dev/null +++ b/development/nose/README @@ -0,0 +1,8 @@ +nose (a discovery-based unittest extension) + +nose provides an alternate test discovery and running process for +unittest, one that is intended to mimic the behavior of py.test as +much as is reasonably possible without resorting to too much magic. + +NOTE: Building nose requires Python setuptools to be installed +(available at SlackBuilds.org as "pysetuptools"). diff --git a/development/nose/nose.SlackBuild b/development/nose/nose.SlackBuild new file mode 100644 index 0000000000..a1326326dc --- /dev/null +++ b/development/nose/nose.SlackBuild @@ -0,0 +1,53 @@ +#!/bin/sh + +# Slackware build script for nose + +# Written by Mikko Varri (vmj@linuxbox.fi) +# Public domain + +PRGNAM=nose +VERSION=${VERSION:-0.10.4} +ARCH=noarch +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +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 install --root=$PKG + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS CHANGELOG NEWS PKG-INFO README.txt lgpl.txt \ + $PKG/usr/doc/$PRGNAM-$VERSION +cp -a examples $PKG/usr/doc/$PRGNAM-$VERSION +cp -a doc $PKG/usr/doc/$PRGNAM-$VERSION/html +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.tgz + diff --git a/development/nose/nose.info b/development/nose/nose.info new file mode 100644 index 0000000000..41da3bde69 --- /dev/null +++ b/development/nose/nose.info @@ -0,0 +1,8 @@ +PRGNAM="nose" +VERSION="0.10.4" +HOMEPAGE="http://www.somethingaboutorange.com/mrl/projects/nose/" +DOWNLOAD="http://www.somethingaboutorange.com/mrl/projects/nose/nose-0.10.4.tar.gz" +MD5SUM="4b4aec226d03f1d8465336a88d7183c4" +MAINTAINER="Mikko Varri" +EMAIL="vmj@linuxbox.fi" +APPROVED="rworkman" diff --git a/development/nose/slack-desc b/development/nose/slack-desc new file mode 100644 index 0000000000..7c71aa5236 --- /dev/null +++ b/development/nose/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------------------------------------------------------| +nose: nose (a discovery-based unittest extension) +nose: +nose: nose provides an alternate test discovery and running process for +nose: unittest, one that is intended to mimic the behavior of py.test as +nose: much as is reasonably possible without resorting to too much magic. +nose: +nose: http://www.somethingaboutorange.com/mrl/projects/nose/ +nose: +nose: +nose: +nose: -- cgit v1.2.3-65-gdbad