diff options
author | Vijay Marcel <vijaymarcel@outlook.com> | 2022-10-05 02:15:28 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-10-08 09:12:43 +0700 |
commit | 88ae68873dcc78344e351dc76def1e042dc75335 (patch) | |
tree | b67cdaaa89e28e3ec0d9fd9900a5c9f9e1696181 | |
parent | 452997ddef97436865891a9b13eda0541e5bd2ba (diff) | |
download | slackbuilds-88ae68873dcc78344e351dc76def1e042dc75335.tar.gz |
system/sparse: Added (Sematic Parser)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | system/sparse/README | 8 | ||||
-rw-r--r-- | system/sparse/slack-desc | 19 | ||||
-rw-r--r-- | system/sparse/sparse.SlackBuild | 111 | ||||
-rw-r--r-- | system/sparse/sparse.info | 10 |
4 files changed, 148 insertions, 0 deletions
diff --git a/system/sparse/README b/system/sparse/README new file mode 100644 index 0000000000..76cc70e7fb --- /dev/null +++ b/system/sparse/README @@ -0,0 +1,8 @@ +Sparse is a semantic parser provides a compiler frontend +capable of parsing ANSI C as well as many GCC extensions, +and a collection of sample compiler backends including a +static analyzer called sparse.It is designed to convey +semantic information about types or what locks function +aquires or releases. + +This is an optional dependency for QEMU diff --git a/system/sparse/slack-desc b/system/sparse/slack-desc new file mode 100644 index 0000000000..b3c54fa490 --- /dev/null +++ b/system/sparse/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------------------------------------------------------| +sparse: sparse (Sematic Parser) +sparse: +sparse: Sparse is a semantic parser provides a compiler frontend +sparse: capable of parsing ANSI C as well as many GCC extensions, +sparse: and a collection of sample compiler backends including a +sparse: static analyzer called sparse.It is designed to convey +sparse: semantic information about types or what locks function +sparse: aquires or releases. +sparse: +sparse: Homepage:https://sparse.docs.kernel.org/en/latest/ +sparse: diff --git a/system/sparse/sparse.SlackBuild b/system/sparse/sparse.SlackBuild new file mode 100644 index 0000000000..3b3ddcb314 --- /dev/null +++ b/system/sparse/sparse.SlackBuild @@ -0,0 +1,111 @@ +#!/bin/bash + +# Slackware build script for sparse + +# Copyright 2022 Vijay Marcel +# 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=sparse +VERSION=${VERSION:-0.6.4} +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 +fi + +# If the variable PRINT_PACKAGE_NAME is set, then this script will report what +# the name of the created package would be, and then exit. This information +# could be useful to other scripts. +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" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e +trap 'echo "$0 FAILED at line $LINENO!" | tee $OUTPUT/error-${PRGNAM}.log' ERR + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.xz +cd $PRGNAM-$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 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ + +make PREFIX=/usr DESTDIR=$PKG install + +rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la + +mv -v $PKG/usr/share/man $PKG/usr/man +rm -rvf $PKG/usr/share + +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 + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +find $PKG -name perllocal.pod \ + -o -name ".packlist" -o -name "*.bs" \ + | xargs rm -f + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a LICENSE FAQ $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 diff --git a/system/sparse/sparse.info b/system/sparse/sparse.info new file mode 100644 index 0000000000..c27ecf4ad3 --- /dev/null +++ b/system/sparse/sparse.info @@ -0,0 +1,10 @@ +PRGNAM="sparse" +VERSION="0.6.4" +HOMEPAGE="https://sparse.docs.kernel.org/en/latest/" +DOWNLOAD="https://mirrors.edge.kernel.org/pub/software/devel/sparse/dist/sparse-0.6.4.tar.xz" +MD5SUM="297257cc3c08a3e1fcea03aa660a896c" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Vijay Marcel" +EMAIL="vijaymarcel@outlook.com" |