From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?B?5a6L5paH5q2m?= Subject: Re: Help needed with security updates for Qt Date: Sat, 20 Jun 2015 22:14:44 +0800 Message-ID: <87r3p6o4a3.fsf@gmail.com> References: <87mvzzg2f3.fsf@netris.org> <87k2uzlurt.fsf@gmail.com> <87381nvnah.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53630) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z6JX2-0008Sz-AI for guix-devel@gnu.org; Sat, 20 Jun 2015 10:14:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z6JX0-0002xO-TO for guix-devel@gnu.org; Sat, 20 Jun 2015 10:14:04 -0400 In-Reply-To: <87381nvnah.fsf@gnu.org> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Ludovic =?utf-8?Q?Court=C3=A8s?= Cc: guix-devel@gnu.org Ludovic Court=C3=A8s writes: > [...] > >> I'd like to try re-package qt5 with submodules, and drop QtWebEngine. >> As same as Debian and NixOS did. > > And Fedora. Ricardo found this insightful discussion: > > http://lists.qt-project.org/pipermail/development/2015-February/019960.= html > > +1 for removing QtWebEngine and thus have a snippet that removes the > bundled Chromium altogether. Well, by build with submodule tarballs [1], Qt5 will split into various packages: qtbase, qtsvg, qtx11extras, etc. The current monolithic qt package will be deprecated. It seems that some hacks are needed, basically: - when build: Make a 'qt.conf' and union the releated 'lib' and 'mkspecs' for qmake. Should do in 'qmake-build-system'. FYI: nixpkgs's recipes [2] and qmake reference [3]. =20=20=20=20 - when run: Set 'QT_PLUGIN_PATH' and other variables with wrapper and/or profile envs. And I believe this have to be done if we want to package KDE5, since KF5 is a set of plugins for Qt. [1] http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/ [2] https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/libraries= /qt-5/5.4/setup-hook.sh [3] http://doc.qt.io/qt-5/qmake-environment-reference.html#qmakespec