Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (b745e8b6f9fe80e43fcc3136f0b238ab9cc2d6dc)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (b745e8b6f9fe80e43fcc3136f0b238ab9cc2d6dc)
  • Date: Tue, 17 Jun 2008 19:07:10 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

ChangeLog | 7 +++++++
lua-forge/cgilua/HISTORY | 4 ++++
lua-forge/cgilua/INSTALL | 1 +
lua-forge/cgilua/PRE_BUILD | 4 ----
lua-forge/lua-iconv/BUILD | 1 +
lua-forge/lua-iconv/DEPENDS | 1 +
lua-forge/lua-iconv/DETAILS | 15 +++++++++++++++
lua-forge/lua-iconv/HISTORY | 2 ++
lua-forge/lua-iconv/PRE_BUILD | 4 ++++
lua-forge/luacurl/BUILD | 1 +
lua-forge/luacurl/DEPENDS | 2 ++
lua-forge/luacurl/DETAILS | 16 ++++++++++++++++
lua-forge/luacurl/HISTORY | 2 ++
lua-forge/luacurl/INSTALL | 1 +
lua-forge/luacurl/PRE_BUILD | 4 ++++
lua-forge/luaposix/HISTORY | 4 ++++
lua-forge/luaposix/INSTALL | 1 +
lua-forge/luaposix/PRE_BUILD | 4 ----
lua-forge/luasys/BUILD | 1 +
lua-forge/luasys/DEPENDS | 1 +
lua-forge/luasys/DETAILS | 15 +++++++++++++++
lua-forge/luasys/HISTORY | 2 ++
lua-forge/luasys/INSTALL | 3 +++
lua-forge/lzlib/HISTORY | 3 +++
lua-forge/lzlib/INSTALL | 4 ++--
25 files changed, 93 insertions(+), 10 deletions(-)

New commits:
commit b745e8b6f9fe80e43fcc3136f0b238ab9cc2d6dc
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

lua-iconv: new spell, Lua binding to the POSIX iconv library

commit c048aad43c23c650c042f0e5a45a6930b3f14171
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

luasys: new spell, portable Lua library providing access to system and
networking functions

commit 9a448b0ba9f5717f4f5967db05a5bfd268d9c175
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

luacurl: new spell, Lua module providing Internet browsing based on the
cURL lib

commit 59890d94f53e7182c05b7ec8ada3017565faa30f
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

lzlib: added some verbosity, missing `&&'

commit e66ccf140d8576bfef394cbdfd0ab96b76bb9469
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

luaposix: use prefix instead of sed

commit e1e0a0937f504d73a9b2757ed51795e71d5e5295
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

cgilua: use prefix instead of sed

diff --git a/ChangeLog b/ChangeLog
index c736bac..5a5040b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-06-18 Vlad Glagolev <stealth AT sourcemage.org>
+ * lua-forge/luacurl: new spell, Lua module providing Internet
browsing based
+ on the cURL lib
+ * lua-forge/luasys: new spell, portable Lua library providing access
to
+ system and networking functions
+ * lua-forge/lua-iconv: new spell, Lua binding to the POSIX iconv
library
+
2008-06-17 Arjan Bouter <abouter AT sourcemage.org>
* wm-addons/amazing: status widgets for awesome

diff --git a/lua-forge/cgilua/HISTORY b/lua-forge/cgilua/HISTORY
index 2f25079..2bf3d19 100644
--- a/lua-forge/cgilua/HISTORY
+++ b/lua-forge/cgilua/HISTORY
@@ -1,2 +1,6 @@
+2008-06-18 Vlad Glagolev <stealth AT sourcemage.org>
+ * INSTALL: use prefix
+ * PRE_BUILD: removed, correct make cmd is better than sed
+
2008-01-10 Vlad Glagolev <stealth AT sourcemage.org>
* DEPENDS, DETAILS, BUILD, PRE_BUILD: spell created
diff --git a/lua-forge/cgilua/INSTALL b/lua-forge/cgilua/INSTALL
new file mode 100755
index 0000000..4e9106d
--- /dev/null
+++ b/lua-forge/cgilua/INSTALL
@@ -0,0 +1 @@
+make PREFIX=$INSTALL_ROOT/usr install
diff --git a/lua-forge/cgilua/PRE_BUILD b/lua-forge/cgilua/PRE_BUILD
deleted file mode 100755
index a707525..0000000
--- a/lua-forge/cgilua/PRE_BUILD
+++ /dev/null
@@ -1,4 +0,0 @@
-default_pre_build &&
-cd $SOURCE_DIRECTORY &&
-
-sed -i "s:/usr/local:$INSTALL_ROOT/usr:" Makefile
diff --git a/lua-forge/lua-iconv/BUILD b/lua-forge/lua-iconv/BUILD
new file mode 100755
index 0000000..8f58e6d
--- /dev/null
+++ b/lua-forge/lua-iconv/BUILD
@@ -0,0 +1 @@
+make
diff --git a/lua-forge/lua-iconv/DEPENDS b/lua-forge/lua-iconv/DEPENDS
new file mode 100755
index 0000000..9dc7219
--- /dev/null
+++ b/lua-forge/lua-iconv/DEPENDS
@@ -0,0 +1 @@
+depends lua
diff --git a/lua-forge/lua-iconv/DETAILS b/lua-forge/lua-iconv/DETAILS
new file mode 100755
index 0000000..c5af5de
--- /dev/null
+++ b/lua-forge/lua-iconv/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=lua-iconv
+ VERSION=r5
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_URL[0]=http://luaforge.net/frs/download.php/3389/$SOURCE
+
SOURCE_HASH=sha512:9432106556b6ac11e03654e5156c3a199073f8fc637c8b43ce6a441cdf01cfd12bbbb023950795f3067e7f0e266edab907003ccb636b706241e197e49fb7d464
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ WEB_SITE=http://lua-iconv.luaforge.net/
+ LICENSE[0]=MIT
+ ENTERED=20080618
+ SHORT="Lua binding to the POSIX iconv library"
+cat << EOF
+Lua-iconv is a Lua binding to the POSIX 'iconv' library, which converts a
+sequence of characters from one codeset into a sequence of corresponding
+characters in another codeset.
+EOF
diff --git a/lua-forge/lua-iconv/HISTORY b/lua-forge/lua-iconv/HISTORY
new file mode 100644
index 0000000..8c2b6ba
--- /dev/null
+++ b/lua-forge/lua-iconv/HISTORY
@@ -0,0 +1,2 @@
+2008-06-18 Vlad Glagolev <stealth AT sourcemage.org>
+ * BUILD, DEPENDS, DETAILS, PRE_BUILD: spell created
diff --git a/lua-forge/lua-iconv/PRE_BUILD b/lua-forge/lua-iconv/PRE_BUILD
new file mode 100755
index 0000000..be1c258
--- /dev/null
+++ b/lua-forge/lua-iconv/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+
+sed -i "s:LUAPKG = lua5.1:LUAPKG = lua:" Makefile
diff --git a/lua-forge/luacurl/BUILD b/lua-forge/luacurl/BUILD
new file mode 100755
index 0000000..a5eedec
--- /dev/null
+++ b/lua-forge/luacurl/BUILD
@@ -0,0 +1 @@
+make PREFIX=$INSTALL_ROOT/usr
diff --git a/lua-forge/luacurl/DEPENDS b/lua-forge/luacurl/DEPENDS
new file mode 100755
index 0000000..da27168
--- /dev/null
+++ b/lua-forge/luacurl/DEPENDS
@@ -0,0 +1,2 @@
+depends lua &&
+depends curl
diff --git a/lua-forge/luacurl/DETAILS b/lua-forge/luacurl/DETAILS
new file mode 100755
index 0000000..4f3c725
--- /dev/null
+++ b/lua-forge/luacurl/DETAILS
@@ -0,0 +1,16 @@
+ SPELL=luacurl
+ VERSION=0.2.1
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_URL[0]=http://luaforge.net/frs/download.php/2142/$SOURCE
+
SOURCE_HASH=sha512:da841a5eb7393ec273f70eeb9dfb9fc4f5aed994741949cd72adf998a7b010ef805c28d5a569089c7c518672cc3678b32f99beaff73fd52835e729ca23babb7d
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ WEB_SITE=http://luacurl.luaforge.net/
+ LICENSE[0]=MIT
+ ENTERED=20080618
+ SHORT="Lua module providing Internet browsing based on the cURL
lib"
+cat << EOF
+LuaCURL is Lua 5.x compatible module providing Internet browsing capabilities
+based on the cURL library. The module interface follows strictly the cURL
+architecture and is very easy to use if the programmer has already experience
+with cURL.
+EOF
diff --git a/lua-forge/luacurl/HISTORY b/lua-forge/luacurl/HISTORY
new file mode 100644
index 0000000..b4985bf
--- /dev/null
+++ b/lua-forge/luacurl/HISTORY
@@ -0,0 +1,2 @@
+2008-06-18 Vlad Glagolev <stealth AT sourcemage.org>
+ * BUILD, DEPENDS, DETAILS, INSTALL, PRE_BUILD: spell created
diff --git a/lua-forge/luacurl/INSTALL b/lua-forge/luacurl/INSTALL
new file mode 100755
index 0000000..4e9106d
--- /dev/null
+++ b/lua-forge/luacurl/INSTALL
@@ -0,0 +1 @@
+make PREFIX=$INSTALL_ROOT/usr install
diff --git a/lua-forge/luacurl/PRE_BUILD b/lua-forge/luacurl/PRE_BUILD
new file mode 100755
index 0000000..ec7ef98
--- /dev/null
+++ b/lua-forge/luacurl/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+
+sed -i "s:lua5.1 --:lua --:g;s:liblua5.1:liblua:;s:/lua5.1::" Makefile
diff --git a/lua-forge/luaposix/HISTORY b/lua-forge/luaposix/HISTORY
index 0aefcfe..6be5eb7 100644
--- a/lua-forge/luaposix/HISTORY
+++ b/lua-forge/luaposix/HISTORY
@@ -1,3 +1,7 @@
+2008-06-18 Vlad Glagolev <stealth AT sourcemage.org>
+ * INSTALL: use prefix
+ * PRE_BUILD: proper make cmd is better than sed
+
2008-06-14 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 5.1.3
* PRE_BUILD: upstream fixed the tests
diff --git a/lua-forge/luaposix/INSTALL b/lua-forge/luaposix/INSTALL
new file mode 100755
index 0000000..4e9106d
--- /dev/null
+++ b/lua-forge/luaposix/INSTALL
@@ -0,0 +1 @@
+make PREFIX=$INSTALL_ROOT/usr install
diff --git a/lua-forge/luaposix/PRE_BUILD b/lua-forge/luaposix/PRE_BUILD
deleted file mode 100755
index a707525..0000000
--- a/lua-forge/luaposix/PRE_BUILD
+++ /dev/null
@@ -1,4 +0,0 @@
-default_pre_build &&
-cd $SOURCE_DIRECTORY &&
-
-sed -i "s:/usr/local:$INSTALL_ROOT/usr:" Makefile
diff --git a/lua-forge/luasys/BUILD b/lua-forge/luasys/BUILD
new file mode 100755
index 0000000..8789e6c
--- /dev/null
+++ b/lua-forge/luasys/BUILD
@@ -0,0 +1 @@
+cd src && make T=sys.so
diff --git a/lua-forge/luasys/DEPENDS b/lua-forge/luasys/DEPENDS
new file mode 100755
index 0000000..9dc7219
--- /dev/null
+++ b/lua-forge/luasys/DEPENDS
@@ -0,0 +1 @@
+depends lua
diff --git a/lua-forge/luasys/DETAILS b/lua-forge/luasys/DETAILS
new file mode 100755
index 0000000..1a1a37d
--- /dev/null
+++ b/lua-forge/luasys/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=luasys
+ VERSION=1.2
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_URL[0]=http://luaforge.net/frs/download.php/3472/$SOURCE
+
SOURCE_HASH=sha512:c1cc3c8aa1284e2576b0240c920829ce30b29e1a7a4f0835e66b8a57940ed957a9c06ec6923aa97dca992e0e055742d695e8e64d1eafe470041536eb566c6de2
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL
+ WEB_SITE=http://luaforge.net/projects/luasys/
+ LICENSE[0]=MIT
+ ENTERED=20080618
+ SHORT="portable Lua library providing access to system and
networking functions"
+cat << EOF
+LuaSys is a portable Lua library providing access to system and networking
+functions. Also includes: event notification mechanism, serial communication,
+signals, threading and much more.
+EOF
diff --git a/lua-forge/luasys/HISTORY b/lua-forge/luasys/HISTORY
new file mode 100644
index 0000000..ca81674
--- /dev/null
+++ b/lua-forge/luasys/HISTORY
@@ -0,0 +1,2 @@
+2008-06-18 Vlad Glagolev <stealth AT sourcemage.org>
+ * BUILD, DEPENDS, DETAILS, INSTALL: spell created
diff --git a/lua-forge/luasys/INSTALL b/lua-forge/luasys/INSTALL
new file mode 100755
index 0000000..80cf66e
--- /dev/null
+++ b/lua-forge/luasys/INSTALL
@@ -0,0 +1,3 @@
+local LUA=$(installed_version lua) &&
+
+install -vm 755 sys.so $INSTALL_ROOT/usr/lib/lua/${LUA%.?}
diff --git a/lua-forge/lzlib/HISTORY b/lua-forge/lzlib/HISTORY
index c3fd4b3..4055bde 100644
--- a/lua-forge/lzlib/HISTORY
+++ b/lua-forge/lzlib/HISTORY
@@ -1,2 +1,5 @@
+2008-06-18 Vlad Glagolev <stealth AT sourcemage.org>
+ * INSTALL: added missing `&&', increase verbosity
+
2008-01-28 Vlad Glagolev <stealth AT sourcemage.org>
* DEPENDS, DETAILS, BUILD, INSTALL: spell created
diff --git a/lua-forge/lzlib/INSTALL b/lua-forge/lzlib/INSTALL
index 1d470fe..6d3d258 100755
--- a/lua-forge/lzlib/INSTALL
+++ b/lua-forge/lzlib/INSTALL
@@ -1,3 +1,3 @@
-local LUA=$(installed_version lua)
+local LUA=$(installed_version lua) &&

-install -m 755 *.so $INSTALL_ROOT/usr/lib/lua/${LUA%.?}
+install -vm 755 *.so $INSTALL_ROOT/usr/lib/lua/${LUA%.?}



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (b745e8b6f9fe80e43fcc3136f0b238ab9cc2d6dc), Vlad Glagolev, 06/17/2008

Archive powered by MHonArc 2.6.24.

Top of Page