This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package = "LuaCrypto" | |
version = "0.3.2-2" | |
description = { | |
summary = "A Lua frontend to OpenSSL", | |
detailed = [[LuaCrypto is a Lua frontend to the OpenSSL cryptographic library. The OpenSSL features that are currently exposed are: | |
digests (MD5, SHA-1, HMAC, and more), encryption, decryption and crypto-grade random number generators.]], | |
homepage = "http://mkottman.github.com/luacrypto/", | |
license = "MIT", | |
} | |
dependencies = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local brainfuckToC_map = { | |
['>'] = '++ptr;', | |
['<'] = '--ptr;', | |
['+'] = '++*ptr;', | |
['-'] = '--*ptr;', | |
['.'] = 'putchar(*ptr);', | |
[','] = '*ptr=getchar();', | |
['['] = 'while (*ptr) {', | |
[']'] = '}', | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PREFIX=/usr/ | |
BINDIR=${PREFIX}/bin | |
LIBDIR=$(PREFIX)/lib/x86_64-linux-gnu | |
LUA_CFLAGS=`pkg-config --cflags luajit` | |
LUA_LDFLAGS=`pkg-config --libs luajit` | |
CFLAGS= -g -Wall -Wextra -Wno-unused-parameter -I.. -DHAVE_ASPRINTF | |
CFLAGS+= -DHAVE_LIBREADLINE -DHAVE_READLINE_READLINE_H -DHAVE_READLINE_HISTORY -DHAVE_READLINE_HISTORY_H | |
CFLAGS+= -D_GNU_SOURCE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function badFunction(t) | |
t.__metatable = nil | |
local b = assert(t.field) | |
end | |
code = string.rep([[ | |
(function() | |
badFunction { | |
field={ | |
aaaaa={} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Usage: | |
-- filter = require 'filter' | |
-- command = filter.lower.trim:split(' ') | |
-- command(input) --> input:lower():trim():split(' ') | |
-- command(input2) --> input2:lower():trim():split(' ') | |
local unpack = unpack or table.unpack | |
local function makeFilter(func, parent_f, parent, method_name) | |
return setmetatable({}, { |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make[1]: Entering directory `/usr/lib/mxe' | |
uname -a | |
Linux sd-68075 3.2.0-4-amd64 #1 SMP Debian 3.2.63-2+deb7u1 x86_64 GNU/Linux | |
git show-branch --list --reflog=1 | |
[refs/heads/master@{0}] (10 hours ago) clone: from https://github.com/LuaAndC/mxe | |
lsb_release -a 2>/dev/null || sw_vers 2>/dev/null || true | |
Distributor ID: Debian | |
Description: Debian GNU/Linux 7.8 (wheezy) | |
Release: 7.8 | |
Codename: wheezy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
usr/bin/config.guess | |
usr/include/gmp.h | |
usr/include/isl/aff.h | |
usr/include/isl/aff_type.h | |
usr/include/isl/arg.h | |
usr/include/isl/ast_build.h | |
usr/include/isl/ast.h | |
usr/include/isl/ast_type.h | |
usr/include/isl/band.h | |
usr/include/isl/constraint.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[using autodetected 6 job(s)] | |
rm -rf /usr/lib/mxe/tmp-* /usr/lib/mxe/usr build-matrix.html versions.json | |
find: `usr': No such file or directory | |
[using autodetected 6 job(s)] | |
[check requirements] | |
[download] flex | |
[no-build] flex i686-w64-mingw32.static | |
[using autodetected 6 job(s)] | |
[download] gcc-gmp | |
[build] gcc-gmp i686-w64-mingw32.static |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rm -rf /usr/lib/mxe/tmp-* /usr/lib/mxe/usr build-matrix.html versions.json | |
find: `usr': No such file or directory | |
[check requirements] | |
[download] flex | |
[no-build] flex i686-w64-mingw32.static | |
[download] gcc-gmp | |
[build] gcc-gmp i686-w64-mingw32.static | |
[done] gcc-gmp i686-w64-mingw32.static 28480 KiB 0m21.159s | |
[download] m4 | |
[no-build] m4 i686-w64-mingw32.static |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make[1]: Entering directory `/home/mxe/mxe-gtk3-795' | |
uname -a | |
Linux sd-68075 3.2.0-4-amd64 #1 SMP Debian 3.2.63-2+deb7u1 x86_64 GNU/Linux | |
git show-branch --list --reflog=1 | |
[refs/heads/gtk3@{0}] (19 seconds ago) pull: Fast-forward | |
lsb_release -a 2>/dev/null || sw_vers 2>/dev/null || true | |
Distributor ID: Debian | |
Description: Debian GNU/Linux 7.8 (wheezy) | |
Release: 7.8 | |
Codename: wheezy |