diff options
Diffstat (limited to 'libraries/spawn')
-rw-r--r-- | libraries/spawn/README | 7 | ||||
-rw-r--r-- | libraries/spawn/slack-desc | 19 | ||||
-rw-r--r-- | libraries/spawn/spawn.SlackBuild | 118 | ||||
-rw-r--r-- | libraries/spawn/spawn.info | 10 |
4 files changed, 154 insertions, 0 deletions
diff --git a/libraries/spawn/README b/libraries/spawn/README new file mode 100644 index 0000000000..559a61399d --- /dev/null +++ b/libraries/spawn/README @@ -0,0 +1,7 @@ +spawn (Ada Process API) + +This library provides simple API to spawn processes and communicate +with them. + +There are two implementations of the same API - the integrated into +Glib event loop and the independent. diff --git a/libraries/spawn/slack-desc b/libraries/spawn/slack-desc new file mode 100644 index 0000000000..14fa783624 --- /dev/null +++ b/libraries/spawn/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 ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +spawn: spawn (Ada Process API) +spawn: +spawn: This library provides simple API to spawn processes and communicate +spawn: with them. +spawn: +spawn: There are two implementations of the same API - the integrated into +spawn: Glib event loop and the independent. +spawn: +spawn: https://github.com/AdaCore/spawn +spawn: +spawn: diff --git a/libraries/spawn/spawn.SlackBuild b/libraries/spawn/spawn.SlackBuild new file mode 100644 index 0000000000..75bad40c9e --- /dev/null +++ b/libraries/spawn/spawn.SlackBuild @@ -0,0 +1,118 @@ +#!/bin/bash +# Slackware build script for spawm +# Copyright 2012-2024 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. + +cd $(dirname $0) ; CWD=$(pwd) +PRGNAM=spawn +VERSION=${VERSION:-25.0.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$(uname -m)" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$(uname -m) ;; + esac + export ARCH +fi + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +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" +elif [ "$ARCH" = "aarch64" ]; 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 +mkdir $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -C $PRGNAM-$VERSION --strip-components=1 + +cd $PRGNAM-$VERSION +chown -R root:root . + +sed -i -e 's/\[/(/g' \ + -e 's/\]/)/g' source/spawn/spawn-channels__glib_posix.adb +GPRBUILD_FLAGS="-p -j0 -R -cargs $SLKCFLAGS -largs -s -gargs" +export GPR_PROJECT_PATH=/usr/share/gpr:./gnat +GPRINSTALL_FLAGS="-p -f --prefix=$PKG/usr" + +lib_types=(static-pic relocatable) +for lib in ${lib_types[@]}; do + echo "Building $lib library" + gprbuild -j0 $GPRBUILD_FLAGS -XLIBRARY_TYPE=$lib -P gnat/spawn.gpr + gprinstall $GPRINSTALL_FLAGS -XLIBRARY_TYPE=$lib \ + --sources-subdir=include/spawn \ + --lib-subdir=lib$LIBDIRSUFFIX/spawn/$lib \ + --build-name=$lib --build-var=SPAWN_LIBRARY_TYPE \ + -P gnat/spawn.gpr + gprbuild -j0 $GPRBUILD_FLAGS -XLIBRARY_TYPE=$lib -P gnat/spawn_glib.gpr + gprinstall $GPRINSTALL_FLAGS -XLIBRARY_TYPE=$lib \ + --sources-subdir=include/spawn_glib \ + --lib-subdir=lib$LIBDIRSUFFIX/spawn_glib/$lib \ + --build-name=$lib --build-var=SPAWN_LIBRARY_TYPE \ + -P gnat/spawn_glib.gpr +done + +# static-pic and relocatable ali files are the same +installed_lib=(spawn spawn_glib) +for lib in $installed_lib; do + (cd $PKG/usr/lib$LIBDIRSUFFIX/$lib/static-pic + rm *.ali + for file in ../relocatable/*.ali; do + ln -s $file + done + ) +done +mkdir -p $PKG/install +cp $CWD/slack-desc $PKG/install + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp README.md LICENSE.txt $CWD/$PRGNAM.SlackBuild $PKG/usr/doc/$PRGNAM-$VERSION + + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/libraries/spawn/spawn.info b/libraries/spawn/spawn.info new file mode 100644 index 0000000000..9d4aabcd58 --- /dev/null +++ b/libraries/spawn/spawn.info @@ -0,0 +1,10 @@ +PRGNAM="spawn" +VERSION="25.0.0" +HOMEPAGE="https://github.com/AdaCore/spawn" +DOWNLOAD="https://github.com/AdaCore/spawn/archive/v25.0.0/spawn-25.0.0.tar.gz" +MD5SUM="a0000fe238fea7c78c1d9ce49bebd51d" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="gprbuild gtkada" +MAINTAINER="Zhu Qun-Ying" +EMAIL="zhu.qunying@gmail.com" |