perl/nqp: Updated f/v 2018.06, moved from development/ + new maint.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
2201518158
commit
d877e3abdf
|
@ -1,9 +0,0 @@
|
|||
This is "Not Quite Perl" -- a lightweight Perl 6-like environment
|
||||
for virtual machines. The key feature of NQP is that it's
|
||||
designed to be a very small environment (as compared with, say, perl6
|
||||
or Rakudo) and is focused on being a high-level way to create
|
||||
compilers and libraries for virtual machines (such as the Parrot
|
||||
Virtual Machine). Unlike a full-fledged implementation of Perl 6,
|
||||
NQP strives to have as small a runtime footprint as it can, while
|
||||
still providing a Perl 6 object model and regular expression engine
|
||||
for the virtual machine.
|
|
@ -1,10 +0,0 @@
|
|||
PRGNAM="nqp"
|
||||
VERSION="2013.05"
|
||||
HOMEPAGE="https://rakudo.org"
|
||||
DOWNLOAD="https://rakudo.org/downloads/nqp/nqp-2013.05.tar.gz"
|
||||
MD5SUM="6f5c6e2ed23af551292e233b922965f1"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="parrot"
|
||||
MAINTAINER="Shrivatsan V Sampathkumar"
|
||||
EMAIL="nastavs@gmail.com"
|
|
@ -1,19 +0,0 @@
|
|||
# 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------------------------------------------------------|
|
||||
nqp: nqp (Not Quite Perl)
|
||||
nqp:
|
||||
nqp: This is "Not Quite Perl" -- a lightweight Perl 6-like environment
|
||||
nqp: for virtual machines. The key feature of NQP is that it's
|
||||
nqp: designed to be a very small environment (as compared with, say, perl6
|
||||
nqp: or Rakudo) and is focused on being a high-level way to create
|
||||
nqp: compilers and libraries for virtual machines (such as the Parrot
|
||||
nqp: Virtual Machine). Unlike a full-fledged implementation of Perl 6,
|
||||
nqp: NQP strives to have as small a runtime footprint as it can, while
|
||||
nqp: still providing a Perl 6 object model and regular expression engine
|
||||
nqp: for the virtual machine.
|
|
@ -0,0 +1,14 @@
|
|||
NQP, short for "Not Quite Perl", is a lightweight Perl 6-like
|
||||
environment for virtual machines. NQP is designed to be very small (as
|
||||
compared with, say, perl6 or Rakudo) and is focused on being a
|
||||
high-level way to create compilers and libraries for MoarVM, the JVM,
|
||||
and others.
|
||||
|
||||
By default, support for MoarVM is built. The JVM backend is experimental
|
||||
and requires JDK 8.
|
||||
|
||||
BACKENDS=moar,jvm ./nqp.SlackBuild
|
||||
|
||||
Run the tests with:
|
||||
|
||||
MAKETEST=yes ./nqp.SlackBuild
|
|
@ -1,29 +1,43 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for NQP - Not Quite Perl
|
||||
# Written by svatsan <nastavs [at] gmail [dot] com>
|
||||
# Slackware build script for nqp
|
||||
|
||||
# Copyright 2018 Andreas Voegele <andreas@andreasvoegele.com>
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for any
|
||||
# purpose with or without fee is hereby granted, provided that the above
|
||||
# copyright notice and this permission notice appear in all copies.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
PRGNAM=nqp
|
||||
VERSION=${VERSION:-2013.05}
|
||||
VERSION=${VERSION:-2018.06}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
BACKENDS=${BACKENDS:-moar}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
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"
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
|
@ -53,17 +67,20 @@ find -L . \
|
|||
|
||||
perl Configure.pl \
|
||||
--prefix=/usr \
|
||||
--with-parrot=/usr/bin/parrot
|
||||
--with-moar=/usr/bin/moar \
|
||||
--backends=$BACKENDS
|
||||
|
||||
make -j1
|
||||
make DESTDIR=$PKG install
|
||||
make
|
||||
if [ "${MAKETEST:-no}" = "yes" ]; then
|
||||
make test
|
||||
fi
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
CREDITS VERSION README.pod LICENSE docs/* examples/* \
|
||||
CREDITS LICENSE \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
rm -rf $PKG/usr/share
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="nqp"
|
||||
VERSION="2018.06"
|
||||
HOMEPAGE="https://rakudo.org"
|
||||
DOWNLOAD="https://rakudo.org/downloads/nqp/nqp-2018.06.tar.gz"
|
||||
MD5SUM="b8a6c82ff92dd84546566fe43b903311"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="MoarVM"
|
||||
MAINTAINER="Andreas Voegele"
|
||||
EMAIL="andreas@andreasvoegele.com"
|
|
@ -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------------------------------------------------------|
|
||||
nqp: nqp (Perl 6-like environment for virtual machines)
|
||||
nqp:
|
||||
nqp: NQP, short for "Not Quite Perl", is a lightweight Perl 6-like
|
||||
nqp: environment for virtual machines. NQP is designed to be very small (as
|
||||
nqp: compared with, say, perl6 or Rakudo) and is focused on being a
|
||||
nqp: high-level way to create compilers and libraries for MoarVM, the JVM,
|
||||
nqp: and others.
|
||||
nqp:
|
||||
nqp: Homepage: https://rakudo.org/
|
||||
nqp:
|
||||
nqp:
|
Loading…
Reference in New Issue