diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2011-03-16 00:48:27 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-20 12:32:51 -0500 |
commit | 987d45e99a299c3b24418b2976e8ec9d5f3bf404 (patch) | |
tree | 2e1a731642cf7dc9e4e620bad0a425418f33d36e /ruby/rubygem-sup | |
parent | 93ba4df5022a8c4d422dd97a2a13ffa8a8946453 (diff) | |
download | slackbuilds-987d45e99a299c3b24418b2976e8ec9d5f3bf404.tar.gz |
ruby/*: Moved all (or at least most) Ruby stuff to here
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'ruby/rubygem-sup')
-rw-r--r-- | ruby/rubygem-sup/README | 25 | ||||
-rw-r--r-- | ruby/rubygem-sup/rubygem-sup.SlackBuild | 101 | ||||
-rw-r--r-- | ruby/rubygem-sup/rubygem-sup.info | 10 | ||||
-rw-r--r-- | ruby/rubygem-sup/slack-desc | 19 |
4 files changed, 155 insertions, 0 deletions
diff --git a/ruby/rubygem-sup/README b/ruby/rubygem-sup/README new file mode 100644 index 0000000000..d5378b82b6 --- /dev/null +++ b/ruby/rubygem-sup/README @@ -0,0 +1,25 @@ +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. + +This requires rubygem-locale, rubygem-gettext, rubygem-highline, +rubygem-lockfile, rubygem-mime-types, rubygem-ncursesw, rubygem-net-ssh, +rubygem-rmail, rubygem-trollop and rubygem-xapian-full. diff --git a/ruby/rubygem-sup/rubygem-sup.SlackBuild b/ruby/rubygem-sup/rubygem-sup.SlackBuild new file mode 100644 index 0000000000..839371204e --- /dev/null +++ b/ruby/rubygem-sup/rubygem-sup.SlackBuild @@ -0,0 +1,101 @@ +#!/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 new file mode 100644 index 0000000000..582a0b694e --- /dev/null +++ b/ruby/rubygem-sup/rubygem-sup.info @@ -0,0 +1,10 @@ +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="" +MAINTAINER="Benjamin Trigona-Harany" +EMAIL="bosth@alumni.sfu.ca" +APPROVED="dsomero,Niels Horn" diff --git a/ruby/rubygem-sup/slack-desc b/ruby/rubygem-sup/slack-desc new file mode 100644 index 0000000000..85f8b2a480 --- /dev/null +++ b/ruby/rubygem-sup/slack-desc @@ -0,0 +1,19 @@ +# 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: |