summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Andrew Clemons2021-08-29 05:38:48 +0200
committer Willy Sudiarto Raharjo2021-09-06 03:50:36 +0200
commit572506d3965ae32c769666878fd1ef25b3e48edd (patch)
treef3d9b78a63a17241b06fda3d61991bc91dba60ec
parentdbee776d1a470c5ccb7ecf1f6c93d7ddf51ab72a (diff)
downloadslackbuilds-572506d3965ae32c769666878fd1ef25b3e48edd.tar.gz
ruby/rubygem-ruumba: Removed (unused).
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--ruby/rubygem-ruumba/README1
-rw-r--r--ruby/rubygem-ruumba/rubygem-ruumba.SlackBuild126
-rw-r--r--ruby/rubygem-ruumba/rubygem-ruumba.info10
-rw-r--r--ruby/rubygem-ruumba/slack-desc19
4 files changed, 0 insertions, 156 deletions
diff --git a/ruby/rubygem-ruumba/README b/ruby/rubygem-ruumba/README
deleted file mode 100644
index 0e7e3dc1af..0000000000
--- a/ruby/rubygem-ruumba/README
+++ /dev/null
@@ -1 +0,0 @@
-rubygem-ruumba - RuboCop linting for ERB templates.
diff --git a/ruby/rubygem-ruumba/rubygem-ruumba.SlackBuild b/ruby/rubygem-ruumba/rubygem-ruumba.SlackBuild
deleted file mode 100644
index b3c543848a..0000000000
--- a/ruby/rubygem-ruumba/rubygem-ruumba.SlackBuild
+++ /dev/null
@@ -1,126 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for rubygem-ruumba
-
-# Copyright 2018-2021 Andrew Clemons, Wellington New Zealand
-# 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.
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=rubygem-ruumba
-VERSION=${VERSION:-0.1.17}
-BUILD=${BUILD:-2}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-SRCNAM=ruumba
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
-if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
- echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
- exit 0
-fi
-
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -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
-
-DESTDIR=$( ruby -r rbconfig -e '
-include RbConfig
-printf("%s/%s/gems/%s\n",
- CONFIG["libdir"],
- CONFIG["RUBY_INSTALL_NAME"],
- CONFIG["ruby_version"]
- )
-')
-
-gem specification $CWD/$SRCNAM-$VERSION.gem | \
- ruby -r yaml -r rbconfig -e '
-c = RbConfig::CONFIG
-path = sprintf("%s/%s/gems/%s",
- c["libdir"],
- c["RUBY_INSTALL_NAME"],
- c["ruby_version"])
-sys_gemspecs = Dir.glob(path + "/specifications/**/*.gemspec").map {|g| gs = Gem::Specification.load(g); gs.name }
-obj = Gem::Specification.from_yaml($stdin)
-obj.dependencies.each {|dep|
- if not(dep.type == :runtime)
- next
- end
- if not(sys_gemspecs.include?(dep.name))
- $stderr.write("WARNING: #{dep.name} gem not found\n")
- sleep 0.5
- end
-
-}'
-
-gem install \
- --local \
- --no-update-sources \
- --ignore-dependencies \
- --backtrace \
- --install-dir $PKG/$DESTDIR \
- --bindir $PKG/usr/bin \
- $CWD/$SRCNAM-$VERSION.gem
-
-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
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-tar -x -O --file=$CWD/$SRCNAM-$VERSION.gem data.tar.gz \
- | tar -xz -C $PKG/usr/doc/$PRGNAM-$VERSION --file=- \
- README.md
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-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
diff --git a/ruby/rubygem-ruumba/rubygem-ruumba.info b/ruby/rubygem-ruumba/rubygem-ruumba.info
deleted file mode 100644
index 113fe30170..0000000000
--- a/ruby/rubygem-ruumba/rubygem-ruumba.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="rubygem-ruumba"
-VERSION="0.1.17"
-HOMEPAGE="https://github.com/ericqweinstein/ruumba"
-DOWNLOAD="https://rubygems.org/downloads/ruumba-0.1.17.gem"
-MD5SUM="941f1c5d2dfa5c9662da0fc95e0d68ef"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="rubygem-rubocop"
-MAINTAINER="Andrew Clemons"
-EMAIL="andrew.clemons@gmail.com"
diff --git a/ruby/rubygem-ruumba/slack-desc b/ruby/rubygem-ruumba/slack-desc
deleted file mode 100644
index c45e0424ae..0000000000
--- a/ruby/rubygem-ruumba/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------------------------------------------------------|
-rubygem-ruumba: rubygem-ruumba (RuboCop linting for ERB templates)
-rubygem-ruumba:
-rubygem-ruumba: Ruumba is RuboCop's sidekick, allowing you to lint your .erb Rubies
-rubygem-ruumba: as well as your regular-type ones.
-rubygem-ruumba:
-rubygem-ruumba: https://github.com/ericqweinstein/ruumba
-rubygem-ruumba:
-rubygem-ruumba:
-rubygem-ruumba:
-rubygem-ruumba:
-rubygem-ruumba: