From bb0ab468d3d142a53d62080d32fb87edbcf3d51c Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Thu, 21 Oct 2010 14:00:49 +0200 Subject: [PATCH] lua-base64: Added lua-base64 5.1-20100323 - A base64 library for Lua 5.1 --- lua/lua-base64/lua-base64-make-install.patch | 54 ++++++++++++++++++++ lua/lua-base64/lua-base64-make-no-test.patch | 32 ++++++++++++ lua/lua-base64/lua-base64.conf | 16 ++++++ lua/lua-base64/lua-base64.desc | 32 ++++++++++++ 4 files changed, 134 insertions(+) create mode 100644 lua/lua-base64/lua-base64-make-install.patch create mode 100644 lua/lua-base64/lua-base64-make-no-test.patch create mode 100644 lua/lua-base64/lua-base64.conf create mode 100644 lua/lua-base64/lua-base64.desc diff --git a/lua/lua-base64/lua-base64-make-install.patch b/lua/lua-base64/lua-base64-make-install.patch new file mode 100644 index 000000000..b422a0297 --- /dev/null +++ b/lua/lua-base64/lua-base64-make-install.patch @@ -0,0 +1,54 @@ +# --- SDE-COPYRIGHT-NOTE-BEGIN --- +# This copyright note is auto-generated by ./scripts/Create-CopyPatch. +# +# Filename: package/.../lua-base64/lua-base64-make-install.patch +# Copyright (C) 2010 The OpenSDE Project +# +# More information can be found in the files COPYING and README. +# +# This patch file is dual-licensed. It is available under the license the +# patched project is licensed under, as long as it is an OpenSource license +# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms +# of the GNU General Public License as published by the Free Software +# Foundation; either version 2 of the License, or (at your option) any later +# version. +# --- SDE-COPYRIGHT-NOTE-END --- + +Description: Add an 'install' make target and set reasonable default directories + +--- base64/Makefile.orig 2010-10-21 13:16:32.650692078 +0200 ++++ base64/Makefile 2010-10-21 13:44:07.890695712 +0200 +@@ -1,16 +1,12 @@ + # makefile for base64 library for Lua + +-# change these to reflect your Lua installation +-LUA= /tmp/lhf/lua-5.1.4 +-LUAINC= $(LUA)/src +-LUALIB= $(LUA)/src +-LUABIN= $(LUA)/src +- + # these will probably work if Lua has been installed globally +-#LUA= /usr/local +-#LUAINC= $(LUA)/include +-#LUALIB= $(LUA)/lib +-#LUABIN= $(LUA)/bin ++LUA= /usr/local ++LUAINC= $(LUA)/include ++LUALIB= $(LUA)/lib ++LUABIN= $(LUA)/bin ++ ++LUACMOD= $(LUALIB)/lua/5.1 + + # probably no need to change anything below here + CC= gcc +@@ -45,6 +41,10 @@ doc: + @echo "$(MYNAME) library:" + @fgrep '/**' $(MYLIB).c | cut -f2 -d/ | tr -d '*' | sort | column + ++install: all ++ mkdir -p $(LUACMOD) ++ cp -v $T $(LUACMOD) ++ + # distribution + + FTP= www:www/ftp/lua/5.1 diff --git a/lua/lua-base64/lua-base64-make-no-test.patch b/lua/lua-base64/lua-base64-make-no-test.patch new file mode 100644 index 000000000..53dcfbae0 --- /dev/null +++ b/lua/lua-base64/lua-base64-make-no-test.patch @@ -0,0 +1,32 @@ +# --- SDE-COPYRIGHT-NOTE-BEGIN --- +# This copyright note is auto-generated by ./scripts/Create-CopyPatch. +# +# Filename: package/.../lua-base64/lua-base64-make-no-test.patch +# Copyright (C) 2010 The OpenSDE Project +# +# More information can be found in the files COPYING and README. +# +# This patch file is dual-licensed. It is available under the license the +# patched project is licensed under, as long as it is an OpenSource license +# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms +# of the GNU General Public License as published by the Free Software +# Foundation; either version 2 of the License, or (at your option) any later +# version. +# --- SDE-COPYRIGHT-NOTE-END --- + +Description: Do not run 'test' make target by default + +--- base64/Makefile.orig 2010-10-21 13:16:32.650692078 +0200 ++++ base64/Makefile 2010-10-21 13:17:26.550696404 +0200 +@@ -26,9 +26,9 @@ T= $(MYNAME).so + OBJS= $(MYLIB).o + TEST= test.lua + +-all: test ++all: $T + +-test: $T ++test: all + $(LUABIN)/lua $(TEST) + + o: $(MYLIB).o diff --git a/lua/lua-base64/lua-base64.conf b/lua/lua-base64/lua-base64.conf new file mode 100644 index 000000000..0741f7dfb --- /dev/null +++ b/lua/lua-base64/lua-base64.conf @@ -0,0 +1,16 @@ +# --- SDE-COPYRIGHT-NOTE-BEGIN --- +# This copyright note is auto-generated by ./scripts/Create-CopyPatch. +# +# Filename: package/.../lua-base64/lua-base64.conf +# Copyright (C) 2010 The OpenSDE Project +# +# More information can be found in the files COPYING and README. +# +# This program 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; version 2 of the License. A copy of the +# GNU General Public License can be found in the file COPYING. +# --- SDE-COPYRIGHT-NOTE-END --- + +var_append makeopt ' ' "LUA=$( pkgprefix -r lua )" +var_insert makeinstopt ' ' "LUA=$( pkgprefix -r lua )" diff --git a/lua/lua-base64/lua-base64.desc b/lua/lua-base64/lua-base64.desc new file mode 100644 index 000000000..3544b3516 --- /dev/null +++ b/lua/lua-base64/lua-base64.desc @@ -0,0 +1,32 @@ +[COPY] --- SDE-COPYRIGHT-NOTE-BEGIN --- +[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch. +[COPY] +[COPY] Filename: package/.../lua-base64/lua-base64.desc +[COPY] Copyright (C) 2010 The OpenSDE Project +[COPY] +[COPY] More information can be found in the files COPYING and README. +[COPY] +[COPY] This program is free software; you can redistribute it and/or modify +[COPY] it under the terms of the GNU General Public License as published by +[COPY] the Free Software Foundation; version 2 of the License. A copy of the +[COPY] GNU General Public License can be found in the file COPYING. +[COPY] --- SDE-COPYRIGHT-NOTE-END --- + +[I] A base64 library for Lua 5.1 + +[T] base64 encoding and decoding for Lua 5.1 + +[U] http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/#lbase64 + +[A] Luiz Henrique de Figueiredo +[M] The OpenSDE Community + +[C] extra/development +[F] LUA + +[L] PublicDomain +[S] Stable +[V] 5.1-20100323 +[P] X -----5---9 800.000 + +[D] 1924396346 lua-base64-5.1-20100323.tar.gz !http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/5.1/lbase64.tar.gz