From patchwork Mon Nov 14 03:09:49 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Patterson X-Patchwork-Id: 17446 Received: (qmail 122537 invoked by uid 89); 14 Nov 2016 03:10:20 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.99.2 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=AWL, BAYES_00, LIKELY_SPAM_BODY, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=movies, xxx X-Spam-Status: No, score=-2.8 required=5.0 tests=AWL, BAYES_00, LIKELY_SPAM_BODY, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on sourceware.org X-Spam-Level: X-HELO: lists.gnu.org Received: from lists.gnu.org (HELO lists.gnu.org) (208.118.235.17) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 14 Nov 2016 03:10:09 +0000 Received: from localhost ([::1]:35982 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c67eq-0003vi-33 for patchwork@sourceware.org; Sun, 13 Nov 2016 22:10:08 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48771) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c67ek-0003vX-G3 for guix-devel@gnu.org; Sun, 13 Nov 2016 22:10:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c67ef-0003G6-I8 for guix-devel@gnu.org; Sun, 13 Nov 2016 22:10:02 -0500 Received: from mailchk-m02.uwaterloo.ca ([129.97.128.241]:48680) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1c67ef-0003Fw-De for guix-devel@gnu.org; Sun, 13 Nov 2016 22:09:57 -0500 Received: from localhost (bas1-jockvale05-70-26-160-170.dsl.bell.ca [70.26.160.170]) (authenticated bits=0) by mailchk-m02.uwaterloo.ca (8.14.4/8.14.4) with ESMTP id uAE39nbt005341 (version=TLSv1/SSLv3 cipher=AES256-GCM-SHA384 bits=256 verify=NO) for ; Sun, 13 Nov 2016 22:09:53 -0500 Date: Sun, 13 Nov 2016 22:09:49 -0500 From: Andy Patterson To: guix-devel@gnu.org Subject: [PATCH] gnu: mpv: Use lua@5.2. Message-ID: <20161113220949.538f81a6@uwaterloo.ca> X-Mailer: Claws Mail 3.14.1 (GTK+ 2.24.31; x86_64-unknown-linux-gnu) MIME-Version: 1.0 X-UUID: f68c7715-8b7c-43da-9fb0-952dcf76b1b7 X-Miltered: at mailchk-m02 with ID 58292AFE.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Virus-Scanned: clamav-milter 0.99.2 at mailchk-m02 X-Virus-Status: Clean X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.5.9 (mailchk-m02.uwaterloo.ca [129.97.128.141]); Sun, 13 Nov 2016 22:09:53 -0500 (EST) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 129.97.128.241 X-BeenThere: guix-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+patchwork=sourceware.org@gnu.org Sender: "Guix-devel" Hi, This patch re-enables lua support in mpv. After reading waftools/checks/custom.py in the distribution, I came to the conclusion that lua > 5.2 isn't supported, so I think this is the right approach. Thanks, --- Andy From fc3b127ea206749cf91eb956e57083f9169f29fb Mon Sep 17 00:00:00 2001 From: Andy Patterson Date: Sun, 13 Nov 2016 21:53:57 -0500 Subject: [PATCH] gnu: mpv: Use lua@5.2. * gnu/packages/video.scm (mpv)[inputs]: Use lua-5.2. --- gnu/packages/video.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 2e336dd..4329d20 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -866,7 +866,9 @@ SVCD, DVD, 3ivx, DivX 3/4/5, WMV and H.264 movies.") ("libxrandr" ,libxrandr) ("libxscrnsaver" ,libxscrnsaver) ("libxv" ,libxv) - ("lua" ,lua) + ;; XXX: lua > 5.2 is not currently supported; see + ;; waftools/checks/custom.py + ("lua" ,lua-5.2) ("mesa" ,mesa) ("mpg123" ,mpg123) ("pulseaudio" ,pulseaudio)