From 40a9e74cb90d6994281f797a6712b3f766773566 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Sat, 18 Mar 2017 15:19:55 +0100 Subject: community/lua-mpack: fix test on lua5.3 Makefile tries to download and install LuaRocks to install busted and its dependencies. I workrounded this before, but somehow it now doesn't work for lua5.3, I have no clue why. Doesn't matter, just remove dependency on $(BUSTED) from the test target. --- community/lua-mpack/dont-install-busted.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 community/lua-mpack/dont-install-busted.patch (limited to 'community/lua-mpack/dont-install-busted.patch') diff --git a/community/lua-mpack/dont-install-busted.patch b/community/lua-mpack/dont-install-busted.patch new file mode 100644 index 0000000000..f6e07fa28f --- /dev/null +++ b/community/lua-mpack/dont-install-busted.patch @@ -0,0 +1,13 @@ +Fix Makefile to not try to download and install LuaRocks and busted; use +system-provided busted. +--- a/binding/lua/Makefile ++++ b/binding/lua/Makefile +@@ -61,7 +61,7 @@ + depsclean: + rm -rf $(DEPS_DIR) + +-test: $(BUSTED) $(MPACK) ++test: $(MPACK) + $(BUSTED) -o gtest test.lua + + valgrind: $(BUSTED) $(MPACK) -- cgit v1.2.3