summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author Andreas Voegele <andreas@andreasvoegele.com>2018-07-09 17:49:07 +0100
committer David Spencer <idlemoor@slackbuilds.org>2018-07-09 17:51:46 +0100
commitb8856d36b1d2a75e64cf4d75674611583547198a (patch)
tree2041e740d394926be0a838932fca8c0adbf12cac /development
parentd877e3abdf6df848c09697a9c3d712317efcb1bc (diff)
downloadslackbuilds-b8856d36b1d2a75e64cf4d75674611583547198a.tar.gz
slackbuilds-b8856d36b1d2a75e64cf4d75674611583547198a.tar.xz
perl/rakudo: 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/rakudo/README7
-rw-r--r--development/rakudo/rakudo.SlackBuild94
-rw-r--r--development/rakudo/rakudo.info10
-rw-r--r--development/rakudo/slack-desc19
4 files changed, 0 insertions, 130 deletions
diff --git a/development/rakudo/README b/development/rakudo/README
deleted file mode 100644
index 26084f7b72..0000000000
--- a/development/rakudo/README
+++ /dev/null
@@ -1,7 +0,0 @@
-This is Rakudo Perl, a Perl 6 compiler for the Parrot virtual machine.
-
-This directory contains only the Rakudo Perl 6 compiler itself; it
-does not contain any of the modules, documentation, or other items
-that would normally come with a full Perl 6 distribution. If you're
-after more than just the bare compiler, please download the latest
-Rakudo Star package.
diff --git a/development/rakudo/rakudo.SlackBuild b/development/rakudo/rakudo.SlackBuild
deleted file mode 100644
index c42b4df763..0000000000
--- a/development/rakudo/rakudo.SlackBuild
+++ /dev/null
@@ -1,94 +0,0 @@
-#!/bin/sh
-
-# svatsan 2013/03/17
-# Slackware build script for Rakudo
-# Written by svatsan <nastavs [at] gmail [dot] com>
-#
-# 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=rakudo
-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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-perl Configure.pl \
- --prefix=/usr \
- --with-parrot=/usr/bin/parrot \
- --with-nqp=/usr/bin/nqp
-
-make
-make DESTDIR=$PKG install
-
-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
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- CREDITS README VERSION INSTALL.txt LICENSE docs/* \
- $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/rakudo/rakudo.info b/development/rakudo/rakudo.info
deleted file mode 100644
index a18fdf4f37..0000000000
--- a/development/rakudo/rakudo.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="rakudo"
-VERSION="2013.05"
-HOMEPAGE="https://rakudo.org/"
-DOWNLOAD="https://rakudo.org/downloads/rakudo/rakudo-2013.05.tar.gz"
-MD5SUM="3ff710984bb775186c78cec4f11abba3"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="nqp"
-MAINTAINER="Shrivatsan V Sampathkumar"
-EMAIL="nastavs@gmail.com"
diff --git a/development/rakudo/slack-desc b/development/rakudo/slack-desc
deleted file mode 100644
index 11832ce232..0000000000
--- a/development/rakudo/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------------------------------------------------------|
-rakudo: rakudo (a Perl 6 compiler for the Parrot virtual machine)
-rakudo:
-rakudo: Rakudo Perl 6, or simply Rakudo, is a compiler for the Perl 6
-rakudo: programming language.
-rakudo: It runs on the Parrot virtual machine.
-rakudo:
-rakudo: Homepage: https://rakudo.org/
-rakudo:
-rakudo:
-rakudo:
-rakudo: