summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author Robby Workman2013-07-08 08:41:30 +0200
committer Robby Workman2013-07-15 00:07:18 +0200
commitc6aa53e75c6e0cc5b410517d348ebcb581600417 (patch)
tree2e2999f9d3e39c2216ccadc9b42647e04bc9f184 /network
parent130e08dae21c2c1798cf865263eed19d2a1bf390 (diff)
downloadslackbuilds-c6aa53e75c6e0cc5b410517d348ebcb581600417.tar.gz
network/spideroak: Removed (build script obsolete and misleading)
From: Charles <c@charlesmatkinson.org> Subject: [Slackbuilds-users] spideroak SlackBuild is obsolete Date: Thu, 21 Mar 2013 15:38:52 +0530 The spideroak SlackBuild (which creates a Slackware package from Spideroak's .deb) is now obsolete. According to the file names shown when downloading from https://spideroak.com/opendownload, Spideroak's "Slackware Based" packages now have the same version numbers as their "Debian Based" packages. The spideroak SlackBuild maintainer has not replied to emails about it using a superseded .deb download so I have not told them about this news. Note by rworkman: the build script is unmaintained and misleading; the current offering on the spideroak website is better for our users. Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r--network/spideroak/README10
-rw-r--r--network/spideroak/doinst.sh3
-rw-r--r--network/spideroak/slack-desc19
-rw-r--r--network/spideroak/spideroak.SlackBuild64
-rw-r--r--network/spideroak/spideroak.info10
5 files changed, 0 insertions, 106 deletions
diff --git a/network/spideroak/README b/network/spideroak/README
deleted file mode 100644
index d2b014e903..0000000000
--- a/network/spideroak/README
+++ /dev/null
@@ -1,10 +0,0 @@
-SpiderOak provides an easy, secure, and consolidated free online backup,
-sync, sharing, access, and storage solution for Linux (and others).
-
-* Access all your data in one de-duplicated location
-* Configurable multi-platform synchronization
-* Preserve all historical versions & deleted files
-* Share folders instantly in web ShareRooms w / RSS
-* Retrieve files from any internet-connected device
-* Comprehensive 'zero-knowledge' data encryption
-* 2 GBs Free / $10 per 100 GBs / Unlimited devices
diff --git a/network/spideroak/doinst.sh b/network/spideroak/doinst.sh
deleted file mode 100644
index 5fb28930db..0000000000
--- a/network/spideroak/doinst.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
diff --git a/network/spideroak/slack-desc b/network/spideroak/slack-desc
deleted file mode 100644
index 979e74d5ea..0000000000
--- a/network/spideroak/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------------------------------------------------------|
-spideroak: SpiderOak (Secure Online Backup)
-spideroak:
-spideroak: SpiderOak provides an easy, secure and consolidated free online
-spideroak: backup, sync, sharing, access & storage solution for Windows,
-spideroak: solution for Windows, Mac OS X, and Linux.
-spideroak:
-spideroak: Homepage: https://spideroak.com/
-spideroak:
-spideroak:
-spideroak:
-spideroak:
diff --git a/network/spideroak/spideroak.SlackBuild b/network/spideroak/spideroak.SlackBuild
deleted file mode 100644
index 68a4b03773..0000000000
--- a/network/spideroak/spideroak.SlackBuild
+++ /dev/null
@@ -1,64 +0,0 @@
-#!/bin/sh
-
-# Slackware build script of SpiderOak
-# Written by Diogo Leal (diogo@diogoleal.com)
-
-PRGNAM=spideroak
-VERSION=${VERSION:-9909}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-case "$( uname -m )" in
- i?86) ARCH=i386 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
-esac
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "x86_64" ]; then
- SRCARCH=amd64
- LIBDIRSUFFIX="64"
-elif [ "$ARCH" = "i386" ]; then
- SRCARCH=i386
- LIBDIRSUFFIX=""
-else
- printf "\n\n$ARCH is not supported...\n"
- exit 1
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-
-cd $PKG
-ar -x $CWD/spideroak_${VERSION}_${SRCARCH}.deb || ar -x $CWD/directdownload*$ARCH
-tar xvf data.tar.gz
-rm data.tar.gz control.tar.gz debian-binary
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-# Fix up libdir
-if [ $ARCH = "x86_64" ]; then
- mv usr/lib usr/lib$LIBDIRSUFFIX
- sed -i "s|/lib/|/lib$LIBDIRSUFFIX/|g" usr/bin/SpiderOak
-fi
-
-# Kill some stuff we don't need/want
-rm -rf $PKG/etc/apt
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-mv $PKG/usr/share/doc/$PRGNAM/* $PKG/usr/doc/$PRGNAM-$VERSION/
-rm -r $PKG/usr/share/doc
-cat $CWD/spideroak.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/spideroak.slackbuild
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -c n -l y -p $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/network/spideroak/spideroak.info b/network/spideroak/spideroak.info
deleted file mode 100644
index e0079940c4..0000000000
--- a/network/spideroak/spideroak.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="spideroak"
-VERSION="9909"
-HOMEPAGE="https://spideroak.com/"
-DOWNLOAD="https://spideroak.com/directdownload?platform=ubuntulucid&arch=i386"
-MD5SUM="491420e71fe1da344d4d360d873fbd07"
-DOWNLOAD_x86_64="https://spideroak.com/directdownload?platform=ubuntulucid&arch=x86_64"
-MD5SUM_x86_64="f9acc503ad326bc000f42844a951529b"
-REQUIRES=""
-MAINTAINER="Diogo Leal"
-EMAIL="diogo@diogoleal.com"