From c1c78707740d2c0fe351ff08236cc7c14cca07af Mon Sep 17 00:00:00 2001 From: q66 Date: Wed, 1 Jul 2020 18:12:00 +0200 Subject: [PATCH] libluv: remove lua dependency (it depends on luajit) The lua dependency didn't make any sense since libluv can be compiled for one or the other. We choose luajit because neovim is also compiled with luajit etc. and it's the default choice. --- srcpkgs/libluv/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/libluv/template b/srcpkgs/libluv/template index 7f340255f6..6f26166862 100644 --- a/srcpkgs/libluv/template +++ b/srcpkgs/libluv/template @@ -1,14 +1,14 @@ # Template file for 'libluv' pkgname=libluv version=1.32.0.0 -revision=1 +revision=2 _distver="${version%.*}-${version##*.}" wrksrc=luv-${_distver} build_style=cmake configure_args="-DLUA_BUILD_TYPE=System -DBUILD_MODULE=OFF -DBUILD_SHARED_LIBS=ON" makedepends="libuv-devel LuaJIT-devel" -depends="lua libuv LuaJIT" -short_desc="Bare libuv bindings for lua" +depends="libuv LuaJIT" +short_desc="Bare libuv bindings for LuaJIT" maintainer="andry-dev " license="Apache-2.0" homepage="https://github.com/luvit/luv"