development/ahven: Added (unit test library).

Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
Zhu Qun-Ying 2012-12-15 15:16:12 +01:00 committed by Matteo Bernardini
parent 14f0d0275f
commit 15882fc33d
6 changed files with 180 additions and 0 deletions

6
development/ahven/README Normal file
View file

@ -0,0 +1,6 @@
Ahven is a simple unit test library (or a framework) for Ada
programming language. It is loosely modelled after JUnit and some
ideas are taken from AUnit.
Ahven is free software distributed under permissive ISC license and
should work with any Ada 95 or 2005 compiler.

View file

@ -0,0 +1,112 @@
#!/bin/sh
# ahven package build script (written by zhu.qunying@gmail.com)
# Copyright 2012, Zhu Qun-Ying
# 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.
PRGNAM=ahven
VERSION=${VERSION:-2.2}
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*) readelf /usr/bin/file -A | egrep -q "Tag_CPU.*[4,5]" && ARCH=arm || ARCH=armv7lh ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$(uname -m) ;;
esac
export ARCH
fi
if [ "$ARCH" = "i386" ]; then
SLKCFLAGS="-O2 -march=i386 -mcpu=i686"
LIBDIRSUFFIX=""
LIB_ARCH=i386
elif [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
LIB_ARCH=i386
elif [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
LIB_ARCH=i386
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686"
LIBDIRSUFFIX=""
LIB_ARCH=i386
elif [ "$ARCH" = "s390" ]; then
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
LIB_ARCH=s390
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
LIB_ARCH=amd64
elif [ "$ARCH" = "armv7hl" ]; then
SLKCFLAGS="-O3 -march=armv7-a -mfpu=vfpv3-d16"
LIBDIRSUFFIX=""
LIB_ARCH=armv7hl
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
LIB_ARCH=$ARCH
fi
case "$ARCH" in
arm*) TARGET=$ARCH-slackware-linux-gnueabi ;;
*) TARGET=$ARCH-slackware-linux ;;
esac
CWD=$(pwd)
TMP=${TMP:-"/tmp/SBo"}
PKG=${TMP}/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
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 {} \; || exit 1
patch -p0 < $CWD/path.patch
if [ "$ARCH" == "x86_64" ]; then
patch -p0 < $CWD/gpr-path.patch
fi
make PREFIX=/usr LIBDIR=/usr/lib$LIBDIRSUFFIX
make PREFIX=$PKG/usr LIBDIR=$PKG/usr/lib$LIBDIRSUFFIX install
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}

View file

@ -0,0 +1,10 @@
PRGNAM="ahven"
VERSION="2.2"
HOMEPAGE="http://ahven.stronglytyped.org/"
DOWNLOAD="http://downloads.sourceforge.net/ahven/ahven-2.2.tar.gz"
MD5SUM="f001dfbd206fb417c9f7dd886f917848"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
MAINTAINER="Zhu Qun-Ying"
EMAIL="zhu.qunying@gmail.com"

View file

@ -0,0 +1,11 @@
--- gnat/ahven.gpr.org 2012-04-24 23:00:52.596107594 -0700
+++ gnat/ahven.gpr 2012-04-24 23:01:02.927107188 -0700
@@ -4,7 +4,7 @@
for Source_Dirs use ("../../include/ahven");
- for Library_Dir use "../../lib/ahven";
+ for Library_Dir use "../../lib64/ahven";
for Library_Name use "ahven";
for Library_Kind use "static";

View file

@ -0,0 +1,22 @@
--- Makefile.org 2012-04-24 22:51:05.485128589 -0700
+++ Makefile 2012-04-24 22:53:29.216123458 -0700
@@ -91,15 +91,15 @@
install_lib:
mkdir -p $(PREFIX)/include/ahven
mkdir -p $(LIBDIR)/ahven
- mkdir -p $(PREFIX)/lib/gnat
+ mkdir -p $(LIBDIR)/gnat
$(INSTALL) -m 644 $(SOURCES) $(PREFIX)/include/ahven
$(INSTALL) -m 444 $(ALI_FILES) $(LIBDIR)/ahven
$(INSTALL) -m 644 lib/$(STATIC_LIBRARY) $(LIBDIR)/ahven
- $(INSTALL) -m 644 $(GPR_FILE) $(PREFIX)/lib/gnat
+ $(INSTALL) -m 644 $(GPR_FILE) $(LIBDIR)/gnat
install_docs:
- mkdir -p $(PREFIX)/share/doc/ahven
- cp -r doc/manual/en/build/html $(PREFIX)/share/doc/ahven
+ mkdir -p $(PREFIX)/doc/ahven
+ cp -r doc/manual/en/build/html $(PREFIX)/doc/ahven
check: build_tests
./tester -c

View file

@ -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 ':' except on otherwise blank lines.
|-----handy-ruler------------------------------------------------------|
ahven: Ahven - a simple unit test library
ahven:
ahven: Ahven is a simple unit test library (or a framework) for Ada
ahven: programming language. It is loosely modelled after JUnit and some
ahven: ideas are taken from AUnit.
ahven:
ahven: Ahven is free software distributed under permissive ISC license and
ahven: should work with any Ada 95 or 2005 compiler.
ahven:
ahven: Homepage: http://ahven.stronglytyped.org/
ahven: