summaryrefslogtreecommitdiff
path: root/bin/x2go-buildallpackages
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2011-05-12 23:09:40 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2011-05-12 23:15:24 +0200
commitc815d4c537cb118a4d8067a9243d13af62f8d12b (patch)
treed9bb3e21366451672fd8751732970f85caa1998c /bin/x2go-buildallpackages
parent3e206bec6dcc1e2166a457a99b85dbfa7865cfad (diff)
downloadbuildscripts-c815d4c537cb118a4d8067a9243d13af62f8d12b.tar.gz
buildscripts-c815d4c537cb118a4d8067a9243d13af62f8d12b.tar.bz2
buildscripts-c815d4c537cb118a4d8067a9243d13af62f8d12b.zip
work on build scripts (packaging vs uploading)
Diffstat (limited to 'bin/x2go-buildallpackages')
-rwxr-xr-xbin/x2go-buildallpackages70
1 files changed, 0 insertions, 70 deletions
diff --git a/bin/x2go-buildallpackages b/bin/x2go-buildallpackages
deleted file mode 100755
index cb877bf..0000000
--- a/bin/x2go-buildallpackages
+++ /dev/null
@@ -1,70 +0,0 @@
-#!/bin/bash
-
-# Copyright (C) 2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
-#
-# Python X2go is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3 of the License, or
-# (at your option) any later version.
-#
-# Python X2go is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the
-# Free Software Foundation, Inc.,
-# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
-
-LIB_PACKAGES_HEULER="
-nxcomp heuler master\n
-nxcompext heuler master\n
-nxcompshad heuler master\n
-python-x2go heuler master\n
-"
-LIB_PACKAGES_MAIN="
-nxcomp main build-main\n
-nxcompext main build-main\n
-nxcompshad main build-main\n
-python-x2go main build-main\n
-"
-
-APP_PACKAGES_HEULER="
-x2goserver heuler master\n
-x2goagent heuler master\n
-x2goclient heuler master\n
-nxproxy heuler master\n
-cups-x2go heuler master\n
-x2godesktopsharing heuler master\n
-x2gognomebindings heuler master\n
-pyhoca-gui heuler master\n
-x2gothinclient heuler tmpfs
-"
-APP_PACKAGES_MAIN="
-x2goserver main build-main\n
-x2goagent main build-main\n
-x2goclient main build-main\n
-nxproxy main build-main\n
-cups-x2go main build-main\n
-x2godesktopsharing main build-main\n
-x2gognomebindings main build-main\n
-pyhoca-gui main build-main\n
-x2gothinclient heuler tmpfs
-"
-
-COMPONENT=${1:-""}
-
-# build the newest code... (nightly-builds)
-[ "x$COMPONENT" = "xheuler" ] || [ -z $COMPONENT ] && {
- echo -e $LIB_PACKAGES_HEULER + $APP_PACKAGES_HEULER | while read pkg comp checkout; do
- x2go-buildpackage $pkg $comp $checkout && x2go-packageupload $pkg $comp $checkout
- done
-}
-
-# build all packages tagged as ,,build-main'Ä
-[ "x$COMPONENT" = "xmain" ] || [ -z $COMPONENT ] && {
- echo -e $LIB_PACKAGES_MAIN + $APP_PACKAGES_MAIN | while read pkg comp checkout; do
- x2go-buildpackage $pkg $comp $checkout && x2go-packageupload $pkg $comp $checkout
- done
-}