changeset 623:a16069d3badf

- removed outdated lua bootstrapper, b/c unused, only needed when recreating test case configs, and hardcoded lua version (which is too old anyways for some lua scripts in use)
author Tassilo Philipp
date Fri, 28 Oct 2022 12:21:17 +0200
parents e30f3a5453d4
children d28b09fa2ff9
files buildsys/lua/Makefile buildsys/lua/README.txt buildsys/lua/bootstrap.sh buildsys/lua/cleanup.sh buildsys/lua/mkfile buildsys/lua/setenv.sh
diffstat 6 files changed, 0 insertions(+), 92 deletions(-) [+]
line wrap: on
line diff
--- a/buildsys/lua/Makefile	Fri Oct 28 12:14:15 2022 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-DL=wget
-all: lua-5.1.4
-
-lua-5.1.4.tar.gz: 
-	${DL} http://www.lua.org/ftp/lua-5.1.4.tar.gz
-lua-5.1.4: lua-5.1.4.tar.gz
-	gunzip -c $? | tar xf -
-
-clean:
-	rm -rf lua-5.1.4.tar.gz lua-5.1.4
--- a/buildsys/lua/README.txt	Fri Oct 28 12:14:15 2022 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-This helper folder is used to bootstrap lua on platforms where there
-is no lua at all.
-
-
--- a/buildsys/lua/bootstrap.sh	Fri Oct 28 12:14:15 2022 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,34 +0,0 @@
-#!/bin/sh
-if [ -z "${DL}" ]; then
-  DL=wget
-fi
-case `uname -s` in
-  Darwin)
-    LPLAF=macosx
-    ;;
-  Linux)
-    LPLAF=linux
-    ;;
-  FreeBSD)
-    LPLAF=freebsd
-    ;;
-  SunOS)
-    LPLAF=solaris
-    ;;
-  AIX)
-    LPLAF=aix
-    ;;
-  DragonFly)
-    LPLAF=bsd
-    ;;
-  *BSD)
-    LPLAF=bsd
-    ;;
-  *)
-    LPLAF=posix
-    ;;
-esac
-DL="${DL}" make -f `dirname $0`/Makefile lua-5.1.4
-(cd lua-5.1.4; make ${LPLAF})
-
-
--- a/buildsys/lua/cleanup.sh	Fri Oct 28 12:14:15 2022 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-#!/bin/sh
-
-if [ -d lua-5.1.4 ]; then
-  (cd lua-5.1.4;make clean)
-fi
-
--- a/buildsys/lua/mkfile	Fri Oct 28 12:14:15 2022 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,34 +0,0 @@
-#//////////////////////////////////////////////////////////////////////////////
-#
-# Copyright (c) 2013 Daniel Adler <dadler@uni-goettingen.de>, 
-#                    Tassilo Philipp <tphilipp@potion-studios.com>
-#
-# Permission to use, copy, modify, and distribute this software for any
-# purpose with or without fee is hereby granted, provided that the above
-# copyright notice and this permission notice appear in all copies.
-#
-# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-#
-#//////////////////////////////////////////////////////////////////////////////
-
-
-VER = 5.1.4
-LUA = lua-$VER
-TGZ = $LUA.tar.gz
-
-all:V:
-	hget http://www.lua.org/ftp/$TGZ > $TGZ
-	tar -xf $TGZ
-	cd $LUA/src
-	rm luac.c
-	pcc *.c
-	mv 8.out ../../lua
-	cd ../..
-	rm -rf $LUA $TGZ
-
--- a/buildsys/lua/setenv.sh	Fri Oct 28 12:14:15 2022 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-#
-PATH=$PWD/lua-5.1.4/src:$PATH
-export PATH
-