From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: bug#24404: "calibre" package fails to build. Date: Thu, 2 Aug 2018 18:49:35 +0200 Message-ID: <20180802164935.GA19896@jurong> References: <20180721203448.GA6314@jurong> <20180721204211.GA29877@jurong> <20180722094914.GA31191@jurong> <20180801101739.GB31156@macbook41> <79c9e1bb-02e7-8a3c-bc1a-3a14036b1d2f@openmailbox.org> <20180801164131.GA13776@macbook41> <20180802123020.GA26124@jurong> <20180802150054.GE13776@macbook41> <20180802150704.GA20925@jurong> <20180802162209.GA18501@jurong> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46320) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1flGne-0007Ft-9a for bug-guix@gnu.org; Thu, 02 Aug 2018 12:50:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1flGnb-0004a4-Nc for bug-guix@gnu.org; Thu, 02 Aug 2018 12:50:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34186) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1flGnb-0004Zu-Hl for bug-guix@gnu.org; Thu, 02 Aug 2018 12:50:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1flGna-0000ep-VD for bug-guix@gnu.org; Thu, 02 Aug 2018 12:50:03 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Content-Disposition: inline In-Reply-To: <20180802162209.GA18501@jurong> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Efraim Flashner Cc: 24404@debbugs.gnu.org Well, I tried the following: Build python-pyqt (instead of the now already available python2-pyqt), and stop the build after the configure phase. In the build directory, I have groups of 5 files for modules that are going to be built: cfgtest_QtHelp cfgtest_QtHelp.cpp cfgtest_QtHelp.mk cfgtest_QtHelp.o cfgtest_QtHelp.pro But only 2 files for modules that are not built: cfgtest_QtWebKit.cpp cfgtest_QtWebKit.mk Does it mean that the file could not be compiled, since some dependency was not found? Or that we are missing a configure option? The cfgtest_QtWebKit.cpp file is: #include int main(int, char **) { qWebKitVersion(); } The header file qwebkitglobal.h lives in /gnu/store/7xfg1s783krjwrp8xmh2nywl7v4x0pq4-qtwebkit-5.212.0-alpha2/include/QtWebKit To me, it looks as if the #include line is missing a "QtWebKit/". But the same would be true for QtHelp then. Maybe we do need to tell pyqt explicitly to compile QtWebKit? Andreas