diff options
Diffstat (limited to 'ruby/ruby2')
-rw-r--r-- | ruby/ruby2/README | 19 | ||||
-rw-r--r-- | ruby/ruby2/ruby2.SlackBuild | 140 | ||||
-rw-r--r-- | ruby/ruby2/ruby2.info | 10 | ||||
-rw-r--r-- | ruby/ruby2/slack-desc | 19 |
4 files changed, 0 insertions, 188 deletions
diff --git a/ruby/ruby2/README b/ruby/ruby2/README deleted file mode 100644 index 8016fdaeef..0000000000 --- a/ruby/ruby2/README +++ /dev/null @@ -1,19 +0,0 @@ -Ruby is an interpreted scripting language for quick and easy -object-oriented programming. It has many features to process text -files and to do system management tasks (as in Perl). It is simple, -straight-forward, and extensible. - -Notes -====== - -This build script will install a newer version of ruby alongside -the provided official Slackware ruby package, however it will overwrite -/usr/lib{64}/libruby.so, so make sure to reinstall ruby package -when you remove this package. - -This package is not required, as the standard Slackware -system does provide a version of ruby. - -Execute using '/usr/bin/ruby2' to utilize. All binaries -installed by this package are installed with an added "2" at the -end of each. (ruby2, rake2, irb2, gem2, erb2, rdoc2, ri2) diff --git a/ruby/ruby2/ruby2.SlackBuild b/ruby/ruby2/ruby2.SlackBuild deleted file mode 100644 index 4cc787e09a..0000000000 --- a/ruby/ruby2/ruby2.SlackBuild +++ /dev/null @@ -1,140 +0,0 @@ -#!/bin/sh - -# Copyright 2015 Brenton Earl <brent@exitstatusone.com>, Tooele, UT, USA -# All rights reserved. -# -# Modified the Official Slackware 14.1 Slackbuild -# -# Copyright 2008, 2009, 2010, 2011, 2012, 2013 Patrick J. Volkerding, Sebeka, MN, USA -# All rights reserved. -# -# Parts taken from Daniel Romero's Ruby 2.0 Slackbuild script -# Copyright 2013 Daniel Romero <infoslack@gmail.com>, Fortaleza, CE, BRA -# 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. - -PRGNAM=ruby2 -SRCNAM=ruby -VERSION=${VERSION:-2.2.3} -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="-march=i486 -mtune=i686 -O3 -fno-strict-aliasing" - OPTFLAGS=-O3 - LIBDIRSUFFIX="" -elif [ "$ARCH" = "s390" ]; then - SLKCFLAGS="-O3 -fno-strict-aliasing" - OPTFLAGS=-O3 - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O3 -fPIC -fno-strict-aliasing" - OPTFLAGS=-O3 - LIBDIRSUFFIX="64" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $SRCNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz -cd $SRCNAM-$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" \ -optflags=$OPTFLAGS \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --mandir=/usr/man \ - --datadir=/usr/share \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --enable-shared \ - --enable-pthread \ - --disable-install-capi \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -# Maintaining compatibility with another version of Ruby that is already installed -# Remove this block if you want to just keep this version -( cd $PKG/usr/bin - mv ruby ruby2 - mv rake rake2 - sed -i '0,/ruby/{s/ruby/ruby2/}' rake2 - mv irb irb2 - sed -i '0,/ruby/{s/ruby/ruby2/}' irb2 - mv gem gem2 - sed -i '0,/ruby/{s/ruby/ruby2/}' gem2 - mv erb erb2 - sed -i '0,/ruby/{s/ruby/ruby2/}' erb2 - mv rdoc rdoc2 - sed -i '0,/ruby/{s/ruby/ruby2/}' rdoc2 - mv ri ri2 - sed -i '0,/ruby/{s/ruby/ruby2/}' ri2 -) - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a BSDL CONTRIBUTING* COPYING* *GPL* ChangeLog LEGAL NEWS README* \ - $PKG/usr/doc/$PRGNAM-$VERSION - -# Remove static file so it will not overwrite Slackware's ruby -rm -f $PKG/usr/lib${LIBDIRSUFFIX}/libruby-static.a - -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 - -# Rename man files so it will not overwrite Slackware's ruby man files -cd $PKG/usr/man/man1 -mv erb.1 erb2.1 -mv irb.1 irb2.1 -mv rake.1 rake2.1 -mv ri.1 ri2.1 -mv ruby.1 ruby2.1 - -cd $TMP/$SRCNAM-$VERSION -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/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/ruby/ruby2/ruby2.info b/ruby/ruby2/ruby2.info deleted file mode 100644 index b2b6af2d2c..0000000000 --- a/ruby/ruby2/ruby2.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="ruby2" -VERSION="2.2.3" -HOMEPAGE="http://www.ruby-lang.org" -DOWNLOAD="https://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.3.tar.gz" -MD5SUM="150a5efc5f5d8a8011f30aa2594a7654" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="%README%" -MAINTAINER="Brenton Earl" -EMAIL="brent@exitstatusone.com" diff --git a/ruby/ruby2/slack-desc b/ruby/ruby2/slack-desc deleted file mode 100644 index 5411949ec6..0000000000 --- a/ruby/ruby2/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------------------------------------------------------| -ruby2: ruby2 (Interpreted object-oriented scripting language) -ruby2: -ruby2: Ruby is an interpreted scripting language for quick and easy -ruby2: object-oriented programming. It has many features to process text -ruby2: files and to do system management tasks (as in Perl). It is simple, -ruby2: straight-forward, and extensible. -ruby2: -ruby2: Visit the Ruby project online at http://www.ruby-lang.org/ -ruby2: -ruby2: -ruby2: |