From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: [PATCH 12/13] gnu: avidemux: Fix regression caused by update to qt 5.7. Date: Sun, 21 Aug 2016 16:13:23 -0400 Message-ID: <87zio5c23g.fsf@netris.org> References: <20160820215957.GA6502@jasmine> <20160821140825.13048-1-david@craven.ch> <20160821140825.13048-12-david@craven.ch> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52016) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bbZ8u-0005gM-6M for guix-devel@gnu.org; Sun, 21 Aug 2016 16:14:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bbZ8p-0006h2-3r for guix-devel@gnu.org; Sun, 21 Aug 2016 16:14:51 -0400 Received: from world.peace.net ([50.252.239.5]:41673) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bbZ8o-0006gy-W5 for guix-devel@gnu.org; Sun, 21 Aug 2016 16:14:47 -0400 In-Reply-To: <20160821140825.13048-12-david@craven.ch> (David Craven's message of "Sun, 21 Aug 2016 16:08:25 +0200") 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+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: David Craven Cc: guix-devel@gnu.org David Craven writes: > * gnu/packages/video.scm (avidemux)[inputs]: Use qt 5.6.1-1. In the summary line and in the line above, how about writing "Use monolithic Qt 5.6."? > --- > gnu/packages/video.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm > index 45f8a28..7c68be8 100644 > --- a/gnu/packages/video.scm > +++ b/gnu/packages/video.scm > @@ -1144,8 +1144,8 @@ for use with HTML5 video.") > ("perl" ,perl) > ("pulseaudio" ,pulseaudio) > ("python" ,python-wrapper) > - ("qtbase" ,qtbase) > - ("qttools" ,qttools) > + ("qtbase" ,qt) > + ;("qttools" ,qttools) Please change "qtbase" => "qt" and add a FIXME comment reminding us to get this working with modular Qt 5.7+. What do you think? Mark