diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-01-03 19:53:25 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-01-03 19:53:25 +0700 |
commit | 6cadb75a06c7c1754e1c4257bea0327f3c9364c2 (patch) | |
tree | b1ca4b811ea301ce605c868d1e636233644618d0 | |
parent | bd1a0744270f665264b736b7e75b7dbf65b4a6a0 (diff) | |
download | slackbuilds-6cadb75a06c7c1754e1c4257bea0327f3c9364c2.tar.gz |
development/parrot: Removed.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | development/parrot/README | 4 | ||||
-rw-r--r-- | development/parrot/parrot.SlackBuild | 81 | ||||
-rw-r--r-- | development/parrot/parrot.info | 10 | ||||
-rw-r--r-- | development/parrot/slack-desc | 19 |
4 files changed, 0 insertions, 114 deletions
diff --git a/development/parrot/README b/development/parrot/README deleted file mode 100644 index 498071e3b8..0000000000 --- a/development/parrot/README +++ /dev/null @@ -1,4 +0,0 @@ -Parrot is a virtual machine designed to efficiently compile and -execute bytecode for dynamic languages. Parrot currently hosts -a variety of dynamic languages such as Tcl, Javascript, Ruby, -Lua, Scheme, PHP, Python, Perl 6, APL, and a .NET bytecode translator. diff --git a/development/parrot/parrot.SlackBuild b/development/parrot/parrot.SlackBuild deleted file mode 100644 index 51e9910705..0000000000 --- a/development/parrot/parrot.SlackBuild +++ /dev/null @@ -1,81 +0,0 @@ -#!/bin/sh - -# Slackware build script for ParrotVM -# Written by svatsan <nastavs [at] gmail [dot] com> - -PRGNAM=parrot -VERSION=${VERSION:-5.4.0} -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 \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --parrot_is_shared -# --icu-config=/usr/bin/icu-config - -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 ChangeLog DONORS.pod LICENSE MANIFEST \ - PBC_COMPAT PLATFORMS README* RESPONSIBLE_PARTIES TODO VERSION 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/parrot/parrot.info b/development/parrot/parrot.info deleted file mode 100644 index 2bc3c0db68..0000000000 --- a/development/parrot/parrot.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="parrot" -VERSION="5.4.0" -HOMEPAGE="http://parrot.org" -DOWNLOAD="http://ftp.parrot.org/releases/devel/5.4.0/parrot-5.4.0.tar.gz" -MD5SUM="7a01f980747429fa578fbf62099a10de" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Shrivatsan V Sampathkumar" -EMAIL="nastavs@gmail.com" diff --git a/development/parrot/slack-desc b/development/parrot/slack-desc deleted file mode 100644 index afe91c3c4a..0000000000 --- a/development/parrot/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------------------------------------------------------| -parrot: parrot (a VM for dynamic languages) -parrot: -parrot: Parrot is a virtual machine designed to efficiently compile and -parrot: execute bytecode for dynamic languages. Parrot currently hosts -parrot: a variety of dynamic languages such as Tcl, Javascript, Ruby, -parrot: Lua, Scheme, PHP, Python, Perl 6, APL, and a .NET bytecode translator. -parrot: -parrot: Homepage: http://parrot.org -parrot: -parrot: -parrot: |