diff options
author | Andreas Voegele <andreas@andreasvoegele.com> | 2018-07-09 17:38:20 +0100 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2018-07-09 17:40:00 +0100 |
commit | d877e3abdf6df848c09697a9c3d712317efcb1bc (patch) | |
tree | f0f8b68804828370e5c13f12ab258d652e89a2fd /development | |
parent | 220151815871b19af20616514fd53c61df63fca6 (diff) | |
download | slackbuilds-d877e3abdf6df848c09697a9c3d712317efcb1bc.tar.gz |
perl/nqp: Updated f/v 2018.06, moved from development/ + new maint.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r-- | development/nqp/README | 9 | ||||
-rw-r--r-- | development/nqp/nqp.SlackBuild | 72 | ||||
-rw-r--r-- | development/nqp/nqp.info | 10 | ||||
-rw-r--r-- | development/nqp/slack-desc | 19 |
4 files changed, 0 insertions, 110 deletions
diff --git a/development/nqp/README b/development/nqp/README deleted file mode 100644 index fc296a5983..0000000000 --- a/development/nqp/README +++ /dev/null @@ -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. diff --git a/development/nqp/nqp.SlackBuild b/development/nqp/nqp.SlackBuild deleted file mode 100644 index de3491887a..0000000000 --- a/development/nqp/nqp.SlackBuild +++ /dev/null @@ -1,72 +0,0 @@ -#!/bin/sh - -# Slackware build script for NQP - Not Quite Perl -# Written by svatsan <nastavs [at] gmail [dot] com> - -PRGNAM=nqp -VERSION=${VERSION:-2013.05} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - 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" - 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 - -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 -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 {} \; - -perl Configure.pl \ - --prefix=/usr \ - --with-parrot=/usr/bin/parrot - -make -j1 -make DESTDIR=$PKG install - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - CREDITS VERSION README.pod LICENSE docs/* examples/* \ - $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 - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/development/nqp/nqp.info b/development/nqp/nqp.info deleted file mode 100644 index 40908f93a8..0000000000 --- a/development/nqp/nqp.info +++ /dev/null @@ -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" diff --git a/development/nqp/slack-desc b/development/nqp/slack-desc deleted file mode 100644 index a0933f96e1..0000000000 --- a/development/nqp/slack-desc +++ /dev/null @@ -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. |