summaryrefslogtreecommitdiffstats
path: root/ruby
diff options
context:
space:
mode:
author Benjamin Trigona-Harany2013-02-01 01:31:44 +0100
committer Robby Workman2013-02-06 05:40:16 +0100
commitac57f53b0b22550266132e07fdc347fc6fc85079 (patch)
tree69c76fa29b72b0066ad7c163e7cc8d30931fb70e /ruby
parent65a7c882475d7ab95283e85cf979a3b388ab4b6a (diff)
downloadslackbuilds-ac57f53b0b22550266132e07fdc347fc6fc85079.tar.gz
ruby/rubygem-sup: Removed (it's obsolete, development stopped)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'ruby')
-rw-r--r--ruby/rubygem-sup/README21
-rw-r--r--ruby/rubygem-sup/rubygem-sup.SlackBuild101
-rw-r--r--ruby/rubygem-sup/rubygem-sup.info10
-rw-r--r--ruby/rubygem-sup/slack-desc19
4 files changed, 0 insertions, 151 deletions
diff --git a/ruby/rubygem-sup/README b/ruby/rubygem-sup/README
deleted file mode 100644
index 11189aad95..0000000000
--- a/ruby/rubygem-sup/README
+++ /dev/null
@@ -1,21 +0,0 @@
-Sup is a console-based email client for people with a lot of email. It
-supports tagging, very fast full-text search, automatic contact-list
-management, and more.
-
-Sup makes it easy to:
-- Handle massive amounts of email.
-- Mix email from different sources: mbox files (even across different
- machines), Maildir directories, IMAP folders, POP accounts, and GMail
- accounts.
-- Instantaneously search over your entire email collection. Search over
- body text, or use a query language to combine search predicates in any
- way.
-- Handle multiple accounts. Replying to email sent to a particular
- account will use the correct SMTP server, signature, and from address.
-- Add custom code to handle certain types of messages or to handle
- certain types of text within messages.
-- Organize email with user-defined labels, automatically track recent
- contacts, and much more
-
-This Slackbuild packages a development version of Sup which is patched
-to use ncursesw, allowing for Unicode support.
diff --git a/ruby/rubygem-sup/rubygem-sup.SlackBuild b/ruby/rubygem-sup/rubygem-sup.SlackBuild
deleted file mode 100644
index 839371204e..0000000000
--- a/ruby/rubygem-sup/rubygem-sup.SlackBuild
+++ /dev/null
@@ -1,101 +0,0 @@
-#!/bin/sh
-
-# Script written by Benjamin Trigona-Harany (bosth@alumni.sfu.ca)
-# based on rubygem template by vbatts
-
-PRGNAM=rubygem-sup
-VERSION=${VERSION:-0.12.1}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-SRCNAM=sup
-
-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
-
-DESTDIR=$( ruby -r rbconfig -e '
-include RbConfig
-printf("%s/%s/gems/%s\n",
- CONFIG["libdir"],
- CONFIG["RUBY_INSTALL_NAME"],
- CONFIG["ruby_version"]
- )
-')
-
-# print a friendly warning of unsatisfied dependencies
-gem specification $CWD/$SRCNAM-$VERSION.gem | \
- ruby -r rbconfig -r yaml -e '
-c = Config::CONFIG
-path = sprintf("%s/%s/gems/%s",
- c["libdir"],
- c["RUBY_INSTALL_NAME"],
- c["ruby_version"])
-sys_gemspecs = Dir.glob(path + "/specifications/*").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 \
- --bindir $PKG/usr/bin \
- --install-dir $PKG/$DESTDIR \
- $CWD/$SRCNAM-$VERSION.gem
-
-# Strip binaries and libraries.
-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
-
-# Remove cached gem from install
-rm -rf $PKG/$DESTDIR/cache
-
-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.txt LICENSE History.txt ReleaseNotes
-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:-tgz}
diff --git a/ruby/rubygem-sup/rubygem-sup.info b/ruby/rubygem-sup/rubygem-sup.info
deleted file mode 100644
index 4939bed147..0000000000
--- a/ruby/rubygem-sup/rubygem-sup.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="rubygem-sup"
-VERSION="0.12.1"
-HOMEPAGE="http://sup.rubyforge.org/"
-DOWNLOAD="http://rubygems.org/downloads/sup-0.12.1.gem"
-MD5SUM="a96b39cd9e04f6550859b84bbf81e4ad"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="rubygem-gettext rubygem-highline rubygem-lockfile rubygem-mime-types rubygem-ncursesw rubygem-net-ssh rubygem-rmail rubygem-trollop rubygem-xapian-full"
-MAINTAINER="Benjamin Trigona-Harany"
-EMAIL="bosth@alumni.sfu.ca"
diff --git a/ruby/rubygem-sup/slack-desc b/ruby/rubygem-sup/slack-desc
deleted file mode 100644
index 85f8b2a480..0000000000
--- a/ruby/rubygem-sup/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 ':'.
-
- |-----handy-ruler------------------------------------------------------|
-rubygem-sup: rubygem-sup (CLI mail client)
-rubygem-sup:
-rubygem-sup: Sup is a mail client for the console which supports tagging, full
-rubygem-sup: text search and multiple mail accounts in a variety of formats.
-rubygem-sup:
-rubygem-sup:
-rubygem-sup:
-rubygem-sup:
-rubygem-sup:
-rubygem-sup:
-rubygem-sup: