From fe0db1142848776b89a32c25b4f23db22f5987df Mon Sep 17 00:00:00 2001 From: Robert Xu Date: Sun, 14 Aug 2011 09:48:56 -0400 Subject: variety of little fixes (and major libtqt4 build testing) --- opensuse/gentarball | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100755 opensuse/gentarball (limited to 'opensuse/gentarball') diff --git a/opensuse/gentarball b/opensuse/gentarball new file mode 100755 index 000000000..593539a5a --- /dev/null +++ b/opensuse/gentarball @@ -0,0 +1,48 @@ +#!/bin/bash + +VERSION=$1 +if [ "$1" == "" ]; then +VERSION=3.5.12.99 +fi + +grabDependsTarball() +{ +svn export svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/$NAME +mv -v $NAME $NAME-$VERSION +tar cjf $NAME-$VERSION.tar.bz2 $NAME-$VERSION +rm -rf $NAME-$VERSION +echo "done" +} + + +echo "This is for testing locally without services." +echo "I need to know what tarball you want to generate from." +echo "" +echo "Let's start off by dependencies, main, or apps." +echo "Which one?" +echo "" +echo "(1) dependencies" +echo "(2) main" +echo "(3) applications" +echo -e "> " +read SELECTION + +if [ "$SELECTION" = "1" ]; then + echo "(1) libtqt4" + echo "(2) dbus-1-tqt" + echo "(3) libdbus-1-tqt-0" + echo "(4) arts" + read CHOICE + + if [ "$CHOICE" = "1" ]; then NAME='tqtinterface'; + elif [ "$CHOICE" = "2" ]; then NAME='dbus-tqt'; + elif [ "$CHOICE" = "3" ]; then NAME='dbus-1-tqt'; + elif [ "$CHOICE" = "4" ]; then NAME='arts'; + else + echo "Invalid, bye." && exit 1 + fi + grabDependsTarball +else + echo "Invalid, bye." && exit 1 +fi + -- cgit v1.2.1