diff options
author | Menno E. Duursma <druiloor@zonnet.nl> | 2010-05-11 19:44:17 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 19:44:17 +0200 |
commit | 2c9a0ee9a83316886e03ba1f5e79b65f791856de (patch) | |
tree | 471422cd2a09eac3d802e6f9b291efeb40407845 /development/lua | |
parent | 75dfcfc50dfeaa22656b0dfdea7403af5b477084 (diff) |
development/lua: Updated for version 5.1.3
Diffstat (limited to 'development/lua')
-rw-r--r-- | development/lua/README | 1 | ||||
-rw-r--r-- | development/lua/lua-5.1.3-shared.diff (renamed from development/lua/lua-5.1.2-shared.diff) | 14 | ||||
-rw-r--r-- | development/lua/lua.SlackBuild | 17 | ||||
-rw-r--r-- | development/lua/lua.info | 8 | ||||
-rw-r--r-- | development/lua/slack-desc | 30 |
5 files changed, 42 insertions, 28 deletions
diff --git a/development/lua/README b/development/lua/README index c4b92e5c1afa..3073c0d962eb 100644 --- a/development/lua/README +++ b/development/lua/README @@ -1,4 +1,3 @@ Lua is a free software light-weight programming language designed for extending applications. Lua is also frequently used as a general-purpose, stand-alone scripting language. - diff --git a/development/lua/lua-5.1.2-shared.diff b/development/lua/lua-5.1.3-shared.diff index 84b286aa65d6..046d788dd2ed 100644 --- a/development/lua/lua-5.1.2-shared.diff +++ b/development/lua/lua-5.1.3-shared.diff @@ -1,6 +1,6 @@ -diff -Naur lua-5.1.2.orig/Makefile lua-5.1.2/Makefile ---- lua-5.1.2.orig/Makefile 2007-03-25 09:44:39.000000000 -0500 -+++ lua-5.1.2/Makefile 2007-04-05 09:49:38.000000000 -0500 +diff -Naur lua-5.1.3.orig/Makefile lua-5.1.3/Makefile +--- lua-5.1.3.orig/Makefile 2007-03-25 09:44:39.000000000 -0500 ++++ lua-5.1.3/Makefile 2007-04-05 09:49:38.000000000 -0500 @@ -43,7 +43,7 @@ # What to install. TO_BIN= lua luac @@ -10,9 +10,9 @@ diff -Naur lua-5.1.2.orig/Makefile lua-5.1.2/Makefile TO_MAN= lua.1 luac.1 # Lua version and release. -diff -Naur lua-5.1.2.orig/src/Makefile lua-5.1.2/src/Makefile ---- lua-5.1.2.orig/src/Makefile 2007-03-25 09:49:23.000000000 -0500 -+++ lua-5.1.2/src/Makefile 2007-04-05 09:57:48.000000000 -0500 +diff -Naur lua-5.1.3.orig/src/Makefile lua-5.1.3/src/Makefile +--- lua-5.1.3.orig/src/Makefile 2007-03-25 09:49:23.000000000 -0500 ++++ lua-5.1.3/src/Makefile 2007-04-05 09:57:48.000000000 -0500 @@ -18,11 +18,17 @@ MYLDFLAGS= MYLIBS= @@ -20,7 +20,7 @@ diff -Naur lua-5.1.2.orig/src/Makefile lua-5.1.2/src/Makefile +# Shared object info +MAJOR= 5 +MINOR= 1 -+REL= 2 ++REL= 3 + # == END OF USER SETTINGS. NO NEED TO CHANGE ANYTHING BELOW THIS LINE ========= diff --git a/development/lua/lua.SlackBuild b/development/lua/lua.SlackBuild index a07cc67c33f2..e6f78d0a4b3b 100644 --- a/development/lua/lua.SlackBuild +++ b/development/lua/lua.SlackBuild @@ -6,10 +6,11 @@ # Modified by the SlackBuilds.org project PRGNAM=lua -VERSION=5.1.2 +VERSION=5.1.3 ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -25,7 +26,7 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP || exit 1 rm -rf $PRGNAM-$VERSION -tar xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 cd $PRGNAM-$VERSION || exit 1 chown -R root:root . chmod -R a-s,u+rw,go-w+r . @@ -39,10 +40,16 @@ sed -i "s/-DLUA_USE_LINUX/\"-DLUA_USE_LINUX $SLKCFLAGS\"/g" src/Makefile || exit make linux make install INSTALL_TOP=$PKG/usr || exit 1 +# Install the pkg-config file so other apps can find LUA +# Also, fix the prefix path in lua.pc +mkdir -p $PKG/usr/lib/pkgconfig +sed 's|prefix= /usr/local|prefix= /usr|' etc/lua.pc > \ + $PKG/usr/lib/pkgconfig/lua.pc + # Let's make sure all of the library symlinks correctly exist ( cd $PKG/usr/lib - ln -sf liblua.so.5.1.2 liblua.so - ln -sf liblua.so.5.1.2 liblua.so.5 + ln -sf liblua.so.${VERSION} liblua.so + ln -sf liblua.so.${VERSION} liblua.so.5 ) ( cd $PKG diff --git a/development/lua/lua.info b/development/lua/lua.info index f8f2152afb17..b40f4feb14f2 100644 --- a/development/lua/lua.info +++ b/development/lua/lua.info @@ -1,8 +1,8 @@ PRGNAM="lua" -VERSION="5.1.2" +VERSION="5.1.3" HOMEPAGE="http://www.lua.org" -DOWNLOAD="http://www.lua.org/ftp/lua-5.1.2.tar.gz" -MD5SUM="687ce4c2a1ddff18f1008490fdc4e5e0" +DOWNLOAD="http://www.lua.org/ftp/lua-5.1.3.tar.gz" +MD5SUM="a70a8dfaa150e047866dc01a46272599" MAINTAINER="Menno E. Duursma" EMAIL="druiloor@zonnet.nl" -APPROVED="rworkman,elohim" +APPROVED="rworkman,Erik Hanson,David Somero" diff --git a/development/lua/slack-desc b/development/lua/slack-desc index 08e3bb2ac6df..d513d0e197ad 100644 --- a/development/lua/slack-desc +++ b/development/lua/slack-desc @@ -1,11 +1,19 @@ -lua: Lua - a lightweight programming language engine -lua: -lua: Lua is designed and implemented by PUC-Rio, the Pontifical Catholic -lua: University of Rio de Janeiro in Brazil. Lua was born and raised at -lua: Tecgraf, the Computer Graphics Technology Group of PUC-Rio, and is -lua: now housed at Lua.org. Both Tecgraf and Lua.org are laboratories -lua: of the Department of Computer Science. -lua: -lua: This package aditionally contains a liblua.so DLL -lua: -lua: +W 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------------------------------------------------------| +lua: Lua (a powerful, fast, light-weight, embeddable scripting language) +lua: +lua: Lua combines simple procedural syntax with powerful data description +lua: constructs based on associative arrays and extensible semantics. +lua: Lua is dynamically typed, runs by interpreting bytecode for a +lua: register-based virtual machine, and has automatic memory management +lua: with incremental garbage collection, making it ideal for +lua: configuration, scripting, and rapid prototyping. +lua: +lua: This package aditionally contains a liblua.so shared library. +lua: |