All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] lua: use standard prefix for Lua libraries
@ 2010-10-17 19:42 Petr Štetiar
  2010-10-17 19:42 ` [PATCH 1/3] lua5.1: " Petr Štetiar
                   ` (7 more replies)
  0 siblings, 8 replies; 12+ messages in thread
From: Petr Štetiar @ 2010-10-17 19:42 UTC (permalink / raw)
  To: openembedded-devel

Hi,

this patch series should fix wrong path in default configuration of Lua, where
uses wrong /usr/local/{lib,share} in it's module/script search path. This
patch changes it to the usage of the standard /usr/{lib,share} directories.
Please apply. Thanks.

-- ynezz

Petr Štetiar (3):
  lua5.1: use standard prefix for Lua libraries
  lua-filesystem: use standard prefix for Lua libraries
  lua-rs232: use standard prefix for Lua libraries

 recipes/lua/lua-filesystem_1.5.0.bb   |    8 +++++---
 recipes/lua/lua-rs232_1.0.0.bb        |    4 +++-
 recipes/lua/lua5.1/no-usr-local.patch |   13 +++++++++++++
 recipes/lua/lua5.1_5.1.4.bb           |    3 ++-
 4 files changed, 23 insertions(+), 5 deletions(-)
 create mode 100644 recipes/lua/lua5.1/no-usr-local.patch




^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 1/3] lua5.1: use standard prefix for Lua libraries
  2010-10-17 19:42 [PATCH 0/3] lua: use standard prefix for Lua libraries Petr Štetiar
@ 2010-10-17 19:42 ` Petr Štetiar
  2010-10-17 19:42 ` [PATCH 2/3] lua-filesystem: " Petr Štetiar
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Petr Štetiar @ 2010-10-17 19:42 UTC (permalink / raw)
  To: openembedded-devel

In default configuration Lua uses wrong /usr/local/{lib,share} in it's
module/script search path. This patch change it to the usage of the standard
/usr/{lib,share} directories.

Signed-off-by: Petr Štetiar <ynezz@true.cz>
---
 recipes/lua/lua5.1/no-usr-local.patch |   13 +++++++++++++
 recipes/lua/lua5.1_5.1.4.bb           |    3 ++-
 2 files changed, 15 insertions(+), 1 deletions(-)
 create mode 100644 recipes/lua/lua5.1/no-usr-local.patch

diff --git a/recipes/lua/lua5.1/no-usr-local.patch b/recipes/lua/lua5.1/no-usr-local.patch
new file mode 100644
index 0000000..bc253ef
--- /dev/null
+++ b/recipes/lua/lua5.1/no-usr-local.patch
@@ -0,0 +1,13 @@
+Index: lua-5.1.4/src/luaconf.h
+===================================================================
+--- lua-5.1.4.orig/src/luaconf.h	2010-10-17 21:13:01.000000000 +0200
++++ lua-5.1.4/src/luaconf.h	2010-10-17 21:13:17.000000000 +0200
+@@ -95,7 +95,7 @@
+ 	".\\?.dll;"  LUA_CDIR"?.dll;" LUA_CDIR"loadall.dll"
+ 
+ #else
+-#define LUA_ROOT	"/usr/local/"
++#define LUA_ROOT	"/usr/"
+ #define LUA_LDIR	LUA_ROOT "share/lua/5.1/"
+ #define LUA_CDIR	LUA_ROOT "lib/lua/5.1/"
+ #define LUA_PATH_DEFAULT  \
diff --git a/recipes/lua/lua5.1_5.1.4.bb b/recipes/lua/lua5.1_5.1.4.bb
index ba2f8b9..3d269c2 100644
--- a/recipes/lua/lua5.1_5.1.4.bb
+++ b/recipes/lua/lua5.1_5.1.4.bb
@@ -4,9 +4,10 @@ LICENSE = "MIT"
 HOMEPAGE = "http://www.lua.org/"
 
 DEPENDS += "readline"
-PR = "r7"
+PR = "r8"
 SRC_URI = "http://www.lua.org/ftp/lua-${PV}.tar.gz \
            file://bitwise_operators.patch \
+           file://no-usr-local.patch \
            file://lua5.1.pc \
           "
 S = "${WORKDIR}/lua-${PV}"
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 2/3] lua-filesystem: use standard prefix for Lua libraries
  2010-10-17 19:42 [PATCH 0/3] lua: use standard prefix for Lua libraries Petr Štetiar
  2010-10-17 19:42 ` [PATCH 1/3] lua5.1: " Petr Štetiar
@ 2010-10-17 19:42 ` Petr Štetiar
  2010-10-17 19:42 ` [PATCH 3/3] lua-rs232: " Petr Štetiar
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Petr Štetiar @ 2010-10-17 19:42 UTC (permalink / raw)
  To: openembedded-devel


Signed-off-by: Petr Štetiar <ynezz@true.cz>
---
 recipes/lua/lua-filesystem_1.5.0.bb |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/recipes/lua/lua-filesystem_1.5.0.bb b/recipes/lua/lua-filesystem_1.5.0.bb
index 8305009..0ab005c 100644
--- a/recipes/lua/lua-filesystem_1.5.0.bb
+++ b/recipes/lua/lua-filesystem_1.5.0.bb
@@ -2,6 +2,8 @@ DESCRIPTION = "LuaFileSystem is a Lua library with set of functions related to f
 LICENSE = "MIT"
 HOMEPAGE = "http://keplerproject.org/luafilesystem"
 
+PR = "r1"
+
 DEPENDS += "lua5.1"
 
 SRC_URI = "git://github.com/keplerproject/luafilesystem.git;protocol=git \
@@ -10,16 +12,16 @@ SRC_URI = "git://github.com/keplerproject/luafilesystem.git;protocol=git \
 SRCREV = "ae5a05deec8a3737bd6972213b5495108b6566cc"
 S = "${WORKDIR}/git/"
 
-LUA_LIB_DIR = "/usr/local/lib/lua/5.1"
+LUA_LIB_DIR = "/usr/lib/lua/5.1"
 
 PACKAGES = "${PN} ${PN}-dbg"
 FILES_${PN}-dbg = "${LUA_LIB_DIR}/.debug/lfs.so"
 FILES_${PN} = "${LUA_LIB_DIR}/lfs.so"
 
-EXTRA_OEMAKE = "PREFIX='${D}/usr/local' MYFLAGS='${CFLAGS} ${LDFLAGS}'"
+EXTRA_OEMAKE = "PREFIX='${D}/usr' MYFLAGS='${CFLAGS} ${LDFLAGS}'"
 
 do_install() {
-        oe_runmake install PREFIX=${D}/usr/local
+        oe_runmake install PREFIX=${D}/usr
         install -d ${D}/${docdir}/${PN}-${PV}
         install -m 0644 doc/us/* ${D}/${docdir}/${PN}-${PV}
 }
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 3/3] lua-rs232: use standard prefix for Lua libraries
  2010-10-17 19:42 [PATCH 0/3] lua: use standard prefix for Lua libraries Petr Štetiar
  2010-10-17 19:42 ` [PATCH 1/3] lua5.1: " Petr Štetiar
  2010-10-17 19:42 ` [PATCH 2/3] lua-filesystem: " Petr Štetiar
@ 2010-10-17 19:42 ` Petr Štetiar
  2010-10-17 20:23 ` [PATCH 0/3] lua: " Koen Kooi
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Petr Štetiar @ 2010-10-17 19:42 UTC (permalink / raw)
  To: openembedded-devel


Signed-off-by: Petr Štetiar <ynezz@true.cz>
---
 recipes/lua/lua-rs232_1.0.0.bb |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/lua/lua-rs232_1.0.0.bb b/recipes/lua/lua-rs232_1.0.0.bb
index c11e3ac..ccd9eef 100644
--- a/recipes/lua/lua-rs232_1.0.0.bb
+++ b/recipes/lua/lua-rs232_1.0.0.bb
@@ -2,6 +2,8 @@ DESCRIPTION = "Lua bindings for librs232 - library for serial communications ove
 HOMEPAGE = "http://github.com/ynezz/librs232"
 LICENSE = "MIT"
 
+PR = "r1"
+
 DEPENDS += "lua5.1"
 RDEPENDS_${PN} += "librs232"
 
@@ -12,7 +14,7 @@ S = "${WORKDIR}/git/"
 
 inherit autotools
 
-LUA_LIB_DIR = "/usr/local/lib/lua/5.1"
+LUA_LIB_DIR = "/usr/lib/lua/5.1"
 LUA_LIB = "luars232.so"
 
 PACKAGES = "${PN} ${PN}-dbg"
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] lua: use standard prefix for Lua libraries
  2010-10-17 19:42 [PATCH 0/3] lua: use standard prefix for Lua libraries Petr Štetiar
                   ` (2 preceding siblings ...)
  2010-10-17 19:42 ` [PATCH 3/3] lua-rs232: " Petr Štetiar
@ 2010-10-17 20:23 ` Koen Kooi
  2010-10-17 20:40   ` Petr Štetiar
  2010-10-17 20:49 ` [PATCH v2 1/3] lua5.1: " Petr Štetiar
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 12+ messages in thread
From: Koen Kooi @ 2010-10-17 20:23 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 17-10-10 21:42, Petr Štetiar wrote:
> Hi,
> 
> this patch series should fix wrong path in default configuration of Lua, where
> uses wrong /usr/local/{lib,share} in it's module/script search path. This
> patch changes it to the usage of the standard /usr/{lib,share} directories.
> Please apply. Thanks.

What about the following:

Replace no-usr-local.patch with:

do_configure_prepend() {
	sed -i -e s:/usr/local:${prefix}:g src/luaconf.h
}

And then do:

LUA_LIB_DIR = "${libdir}/lua/5.1"

That would even make it work with that crazy micro distro that has no
/usr :)

regards,

Koen
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFMu1szMkyGM64RGpERAlufAKC9fU32pwlUpgftYegwgR9lKezGEQCfXcf1
x+ACokVW12Pi4WaWaDJ+4/0=
=nDaF
-----END PGP SIGNATURE-----




^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] lua: use standard prefix for Lua libraries
  2010-10-17 20:23 ` [PATCH 0/3] lua: " Koen Kooi
@ 2010-10-17 20:40   ` Petr Štetiar
  0 siblings, 0 replies; 12+ messages in thread
From: Petr Štetiar @ 2010-10-17 20:40 UTC (permalink / raw)
  To: openembedded-devel

Koen Kooi <k.kooi@student.utwente.nl> [2010-10-17 22:23:15]:

[snip]

> LUA_LIB_DIR = "${libdir}/lua/5.1"
> 
> That would even make it work with that crazy micro distro that has no
> /usr :)

Ah, nice. Thanks.

-- ynezz



^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH v2 1/3] lua5.1: use standard prefix for Lua libraries
  2010-10-17 19:42 [PATCH 0/3] lua: use standard prefix for Lua libraries Petr Štetiar
                   ` (3 preceding siblings ...)
  2010-10-17 20:23 ` [PATCH 0/3] lua: " Koen Kooi
@ 2010-10-17 20:49 ` Petr Štetiar
  2010-10-17 20:49 ` [PATCH v2 2/3] lua-filesystem: " Petr Štetiar
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Petr Štetiar @ 2010-10-17 20:49 UTC (permalink / raw)
  To: openembedded-devel

In default configuration Lua uses wrong /usr/local/{lib,share} in it's
module/script search path. This patch change it to the usage of the standard
/usr/{lib,share} directories.

Signed-off-by: Petr Štetiar <ynezz@true.cz>
---
 recipes/lua/lua5.1_5.1.4.bb |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/recipes/lua/lua5.1_5.1.4.bb b/recipes/lua/lua5.1_5.1.4.bb
index ba2f8b9..e3d56fd 100644
--- a/recipes/lua/lua5.1_5.1.4.bb
+++ b/recipes/lua/lua5.1_5.1.4.bb
@@ -4,7 +4,7 @@ LICENSE = "MIT"
 HOMEPAGE = "http://www.lua.org/"
 
 DEPENDS += "readline"
-PR = "r7"
+PR = "r8"
 SRC_URI = "http://www.lua.org/ftp/lua-${PV}.tar.gz \
            file://bitwise_operators.patch \
            file://lua5.1.pc \
@@ -20,6 +20,10 @@ SRC_URI_append_linux-uclibceabi = "${UCLIBC_PATCHES}"
 TARGET_CC_ARCH += " -fPIC ${LDFLAGS}"
 EXTRA_OEMAKE = "'CC=${CC} -fPIC' 'MYCFLAGS=${CFLAGS} -DLUA_USE_LINUX -fPIC' MYLDFLAGS='${LDFLAGS}'"
 
+do_configure_prepend() {                                                                                                                                     
+	sed -i -e s:/usr/local:${prefix}:g src/luaconf.h
+}
+
 do_compile () {
 	cp ${WORKDIR}/lua5.1.pc ${S}/
 	oe_runmake linux
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH v2 2/3] lua-filesystem: use standard prefix for Lua libraries
  2010-10-17 19:42 [PATCH 0/3] lua: use standard prefix for Lua libraries Petr Štetiar
                   ` (4 preceding siblings ...)
  2010-10-17 20:49 ` [PATCH v2 1/3] lua5.1: " Petr Štetiar
@ 2010-10-17 20:49 ` Petr Štetiar
  2010-10-18  7:19   ` Koen Kooi
  2010-10-18 17:44   ` [PATCH v3] " Petr Štetiar
  2010-10-17 20:49 ` [PATCH v2 3/3] lua-rs232: " Petr Štetiar
  2010-10-22  8:32 ` [PATCH 0/3] lua: " Petr Štetiar
  7 siblings, 2 replies; 12+ messages in thread
From: Petr Štetiar @ 2010-10-17 20:49 UTC (permalink / raw)
  To: openembedded-devel


Signed-off-by: Petr Štetiar <ynezz@true.cz>
---
 recipes/lua/lua-filesystem_1.5.0.bb |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/recipes/lua/lua-filesystem_1.5.0.bb b/recipes/lua/lua-filesystem_1.5.0.bb
index 8305009..0ef30a6 100644
--- a/recipes/lua/lua-filesystem_1.5.0.bb
+++ b/recipes/lua/lua-filesystem_1.5.0.bb
@@ -2,6 +2,8 @@ DESCRIPTION = "LuaFileSystem is a Lua library with set of functions related to f
 LICENSE = "MIT"
 HOMEPAGE = "http://keplerproject.org/luafilesystem"
 
+PR = "r1"
+
 DEPENDS += "lua5.1"
 
 SRC_URI = "git://github.com/keplerproject/luafilesystem.git;protocol=git \
@@ -10,16 +12,16 @@ SRC_URI = "git://github.com/keplerproject/luafilesystem.git;protocol=git \
 SRCREV = "ae5a05deec8a3737bd6972213b5495108b6566cc"
 S = "${WORKDIR}/git/"
 
-LUA_LIB_DIR = "/usr/local/lib/lua/5.1"
+LUA_LIB_DIR =  "${libdir}/lua/5.1"
 
 PACKAGES = "${PN} ${PN}-dbg"
 FILES_${PN}-dbg = "${LUA_LIB_DIR}/.debug/lfs.so"
 FILES_${PN} = "${LUA_LIB_DIR}/lfs.so"
 
-EXTRA_OEMAKE = "PREFIX='${D}/usr/local' MYFLAGS='${CFLAGS} ${LDFLAGS}'"
+EXTRA_OEMAKE = "PREFIX='${D}/usr' MYFLAGS='${CFLAGS} ${LDFLAGS}'"
 
 do_install() {
-        oe_runmake install PREFIX=${D}/usr/local
+        oe_runmake install PREFIX=${D}/usr
         install -d ${D}/${docdir}/${PN}-${PV}
         install -m 0644 doc/us/* ${D}/${docdir}/${PN}-${PV}
 }
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH v2 3/3] lua-rs232: use standard prefix for Lua libraries
  2010-10-17 19:42 [PATCH 0/3] lua: use standard prefix for Lua libraries Petr Štetiar
                   ` (5 preceding siblings ...)
  2010-10-17 20:49 ` [PATCH v2 2/3] lua-filesystem: " Petr Štetiar
@ 2010-10-17 20:49 ` Petr Štetiar
  2010-10-22  8:32 ` [PATCH 0/3] lua: " Petr Štetiar
  7 siblings, 0 replies; 12+ messages in thread
From: Petr Štetiar @ 2010-10-17 20:49 UTC (permalink / raw)
  To: openembedded-devel


Signed-off-by: Petr Štetiar <ynezz@true.cz>
---
 recipes/lua/lua-rs232_1.0.0.bb |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/lua/lua-rs232_1.0.0.bb b/recipes/lua/lua-rs232_1.0.0.bb
index c11e3ac..d8de225 100644
--- a/recipes/lua/lua-rs232_1.0.0.bb
+++ b/recipes/lua/lua-rs232_1.0.0.bb
@@ -2,6 +2,8 @@ DESCRIPTION = "Lua bindings for librs232 - library for serial communications ove
 HOMEPAGE = "http://github.com/ynezz/librs232"
 LICENSE = "MIT"
 
+PR = "r1"
+
 DEPENDS += "lua5.1"
 RDEPENDS_${PN} += "librs232"
 
@@ -12,7 +14,7 @@ S = "${WORKDIR}/git/"
 
 inherit autotools
 
-LUA_LIB_DIR = "/usr/local/lib/lua/5.1"
+LUA_LIB_DIR = "${libdir}/lua/5.1"
 LUA_LIB = "luars232.so"
 
 PACKAGES = "${PN} ${PN}-dbg"
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH v2 2/3] lua-filesystem: use standard prefix for Lua libraries
  2010-10-17 20:49 ` [PATCH v2 2/3] lua-filesystem: " Petr Štetiar
@ 2010-10-18  7:19   ` Koen Kooi
  2010-10-18 17:44   ` [PATCH v3] " Petr Štetiar
  1 sibling, 0 replies; 12+ messages in thread
From: Koen Kooi @ 2010-10-18  7:19 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 17-10-10 22:49, Petr Štetiar wrote:

> -EXTRA_OEMAKE = "PREFIX='${D}/usr/local' MYFLAGS='${CFLAGS} ${LDFLAGS}'"
> +EXTRA_OEMAKE = "PREFIX='${D}/usr' MYFLAGS='${CFLAGS} ${LDFLAGS}'"

PREFIX='${D}${prefix}'


>  do_install() {
> -        oe_runmake install PREFIX=${D}/usr/local
> +        oe_runmake install PREFIX=${D}/usr

oe_runmake install PREFIX=${D}${prefix}

regards,

Koen
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFMu/T1MkyGM64RGpERAmnhAJ9dXwnUl/CPQwD8Z20E2YkUYryUMgCfYl5G
F/7y9EUbGAPD8tX1Bofb6B0=
=EB/K
-----END PGP SIGNATURE-----




^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH v3] lua-filesystem: use standard prefix for Lua libraries
  2010-10-17 20:49 ` [PATCH v2 2/3] lua-filesystem: " Petr Štetiar
  2010-10-18  7:19   ` Koen Kooi
@ 2010-10-18 17:44   ` Petr Štetiar
  1 sibling, 0 replies; 12+ messages in thread
From: Petr Štetiar @ 2010-10-18 17:44 UTC (permalink / raw)
  To: openembedded-devel


Signed-off-by: Petr Štetiar <ynezz@true.cz>
---
 recipes/lua/lua-filesystem_1.5.0.bb |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/recipes/lua/lua-filesystem_1.5.0.bb b/recipes/lua/lua-filesystem_1.5.0.bb
index 8305009..cb5767b 100644
--- a/recipes/lua/lua-filesystem_1.5.0.bb
+++ b/recipes/lua/lua-filesystem_1.5.0.bb
@@ -2,6 +2,8 @@ DESCRIPTION = "LuaFileSystem is a Lua library with set of functions related to f
 LICENSE = "MIT"
 HOMEPAGE = "http://keplerproject.org/luafilesystem"
 
+PR = "r1"
+
 DEPENDS += "lua5.1"
 
 SRC_URI = "git://github.com/keplerproject/luafilesystem.git;protocol=git \
@@ -10,16 +12,16 @@ SRC_URI = "git://github.com/keplerproject/luafilesystem.git;protocol=git \
 SRCREV = "ae5a05deec8a3737bd6972213b5495108b6566cc"
 S = "${WORKDIR}/git/"
 
-LUA_LIB_DIR = "/usr/local/lib/lua/5.1"
+LUA_LIB_DIR =  "${libdir}/lua/5.1"
 
 PACKAGES = "${PN} ${PN}-dbg"
 FILES_${PN}-dbg = "${LUA_LIB_DIR}/.debug/lfs.so"
 FILES_${PN} = "${LUA_LIB_DIR}/lfs.so"
 
-EXTRA_OEMAKE = "PREFIX='${D}/usr/local' MYFLAGS='${CFLAGS} ${LDFLAGS}'"
+EXTRA_OEMAKE = "PREFIX='${D}/${prefix}' MYFLAGS='${CFLAGS} ${LDFLAGS}'"
 
 do_install() {
-        oe_runmake install PREFIX=${D}/usr/local
+        oe_runmake install PREFIX=${D}/${prefix}
         install -d ${D}/${docdir}/${PN}-${PV}
         install -m 0644 doc/us/* ${D}/${docdir}/${PN}-${PV}
 }
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] lua: use standard prefix for Lua libraries
  2010-10-17 19:42 [PATCH 0/3] lua: use standard prefix for Lua libraries Petr Štetiar
                   ` (6 preceding siblings ...)
  2010-10-17 20:49 ` [PATCH v2 3/3] lua-rs232: " Petr Štetiar
@ 2010-10-22  8:32 ` Petr Štetiar
  7 siblings, 0 replies; 12+ messages in thread
From: Petr Štetiar @ 2010-10-22  8:32 UTC (permalink / raw)
  To: Petr Štetiar; +Cc: openembedded-devel

Ping.



^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2010-10-22  8:33 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-10-17 19:42 [PATCH 0/3] lua: use standard prefix for Lua libraries Petr Štetiar
2010-10-17 19:42 ` [PATCH 1/3] lua5.1: " Petr Štetiar
2010-10-17 19:42 ` [PATCH 2/3] lua-filesystem: " Petr Štetiar
2010-10-17 19:42 ` [PATCH 3/3] lua-rs232: " Petr Štetiar
2010-10-17 20:23 ` [PATCH 0/3] lua: " Koen Kooi
2010-10-17 20:40   ` Petr Štetiar
2010-10-17 20:49 ` [PATCH v2 1/3] lua5.1: " Petr Štetiar
2010-10-17 20:49 ` [PATCH v2 2/3] lua-filesystem: " Petr Štetiar
2010-10-18  7:19   ` Koen Kooi
2010-10-18 17:44   ` [PATCH v3] " Petr Štetiar
2010-10-17 20:49 ` [PATCH v2 3/3] lua-rs232: " Petr Štetiar
2010-10-22  8:32 ` [PATCH 0/3] lua: " Petr Štetiar

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.