From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:38774) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hEBjw-0002U4-Gl for guix-patches@gnu.org; Wed, 10 Apr 2019 07:50:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hEBjv-0005Ym-2f for guix-patches@gnu.org; Wed, 10 Apr 2019 07:50:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:38909) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hEBju-0005Yd-Sp for guix-patches@gnu.org; Wed, 10 Apr 2019 07:50:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hEBju-0001hc-Os for guix-patches@gnu.org; Wed, 10 Apr 2019 07:50:02 -0400 Subject: [bug#35218] [PATCH] Fix Lua dependencies of Neovim Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:38722) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hEBjb-0002Th-EK for guix-patches@gnu.org; Wed, 10 Apr 2019 07:49:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hEBja-0005NZ-AR for guix-patches@gnu.org; Wed, 10 Apr 2019 07:49:43 -0400 Received: from mout01.posteo.de ([185.67.36.65]:51910) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hEBjZ-0005L9-Bj for guix-patches@gnu.org; Wed, 10 Apr 2019 07:49:42 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 0530516005D for ; Wed, 10 Apr 2019 13:49:37 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 44fMrw6Tnnz6tmS for ; Wed, 10 Apr 2019 13:49:36 +0200 (CEST) From: HiPhish Date: Wed, 10 Apr 2019 13:49:35 +0200 Message-ID: <3027356.Ros9scuHIA@aleksandar-ixtreme-m5740> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="nextPart1708089.WkDQim1ZbW" Content-Transfer-Encoding: 7Bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35218@debbugs.gnu.org This is a multi-part message in MIME format. --nextPart1708089.WkDQim1ZbW Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Lua minor version releases are not backwards-compatible and Neovim requires Lua 5.1, not the previously specified Lua 5.2 version. --nextPart1708089.WkDQim1ZbW Content-Disposition: attachment; filename="0001-2019-04-10-HiPhish-hiphish-posteo.de.patch" Content-Transfer-Encoding: 7Bit Content-Type: text/x-patch; charset="utf-8"; name="0001-2019-04-10-HiPhish-hiphish-posteo.de.patch" >From c878cc9d30a265bc97836e799b85ad41bc8a5e29 Mon Sep 17 00:00:00 2001 From: HiPhish Date: Wed, 10 Apr 2019 13:21:26 +0200 Subject: [PATCH] 2019-04-10 HiPhish * gnu/packages/vim.scm (neovim): Use correct Lua version as dependencies --- gnu/packages/vim.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index 56deb12c3d..dadffa3ab1 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -756,7 +756,7 @@ are detected, the user is notified."))) #t)) (add-after 'unpack 'set-lua-paths (lambda* (#:key inputs #:allow-other-keys) - (let* ((lua-version "5.2") + (let* ((lua-version "5.1") (lua-cpath-spec (lambda (prefix) (let ((path (string-append prefix "/lib/lua/" lua-version))) @@ -783,10 +783,10 @@ are detected, the user is notified."))) ("unibilium" ,unibilium) ("jemalloc" ,jemalloc) ("libiconv" ,libiconv) - ("lua" ,lua-5.2) - ("lua-lpeg" ,lua5.2-lpeg) - ("lua-bitop" ,lua5.2-bitop) - ("lua-libmpack" ,lua5.2-libmpack))) + ("lua" ,lua-5.1) + ("lua-lpeg" ,lua5.1-lpeg) + ("lua-bitop" ,lua5.1-bitop) + ("lua-libmpack" ,lua5.1-libmpack))) (native-inputs `(("pkg-config" ,pkg-config) ("gettext" ,gettext-minimal) -- 2.19.1 --nextPart1708089.WkDQim1ZbW--