From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maxim Cournoyer Subject: bug#33196: emacs-realgud build failure Date: Tue, 30 Oct 2018 23:46:55 -0400 Message-ID: <87muquu6a8.fsf@gmail.com> References: <87d0rszgud.fsf@posteo.net> <87tvl3txtk.fsf@gmail.com> 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]:35566) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gHhUD-0006wb-KC for bug-guix@gnu.org; Tue, 30 Oct 2018 23:48:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gHhUA-0001WY-Eq for bug-guix@gnu.org; Tue, 30 Oct 2018 23:48:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:51838) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gHhU9-0001Vl-Tg for bug-guix@gnu.org; Tue, 30 Oct 2018 23:48:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gHhU9-00038h-Lh for bug-guix@gnu.org; Tue, 30 Oct 2018 23:48:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87tvl3txtk.fsf@gmail.com> (Maxim Cournoyer's message of "Tue, 30 Oct 2018 08:37:27 -0400") 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: Brett Gilio Cc: 33196@debbugs.gnu.org Hi again, Maxim Cournoyer writes: > Hello, and thank you for the bug report! > > Brett Gilio writes: > >> Hi all, I am experiencing the following error when building >> emacs-realgud. Any thoughts? > > [...] > >> Trailing garbage following expression:=20 >> ) >> configure: error: Can't continue until above error is corrected. >> Backtrace: >> 4 (primitive-load "/gnu/store/hhd6blbvsb7ng9l002b0hgrp85d=E2= =80=A6") >> In ice-9/eval.scm: >> 191:35 3 (_ _) >> In srfi/srfi-1.scm: >> 640:9 2 (for-each # =E2=80=A6) >> In /gnu/store/alkhgfm87dh8r5bdi81dls8wyjlc1yxp-module-import/guix/build/= gnu-build-system.scm: >> 799:31 1 (_ _) >> In /gnu/store/alkhgfm87dh8r5bdi81dls8wyjlc1yxp-module-import/guix/build/= utils.scm: >> 616:6 0 (invoke _ . _) >> >> /gnu/store/alkhgfm87dh8r5bdi81dls8wyjlc1yxp-module-import/guix/build/uti= ls.scm:616:6: In procedure invoke: >> Throw to key `srfi-34' with args `(#)'. >> builder for `/gnu/store/3cvp3fdk724wllbf14qcrsskkskcpdrs-emacs-realgud-1= .4.5.drv' failed with exit code 1 >> build of /gnu/store/3cvp3fdk724wllbf14qcrsskkskcpdrs-emacs-realgud-1.4.5= .drv failed >> View build log at '/var/log/guix/drvs/3c/vp3fdk724wllbf14qcrsskkskcpdrs-= emacs-realgud-1.4.5.drv.bz2'. >> guix build: error: build failed: build of >> `/gnu/store/3cvp3fdk724wllbf14qcrsskkskcpdrs-emacs-realgud-1.4.5.drv' >> failed > > This appears to be the same bug I reported here: bugs.gnu.org/31891. It > seems there is some problem with the build system (configure.ac maybe), > but I haven't had time to investigate yet. I'll try to have a look later > today. The bug is triggered by this check in configure.ac: --8<---------------cut here---------------start------------->8--- if test "$NO_CHECK_EMACS_PACKAGES" =3D "" ; then AC_MSG_NOTICE("Checking prerequiste packages") $EMACS -batch -q --no-site-file -eval \ '(dolist (package (quote (cl-lib loc-changes load-relative test-simple))) (require package)) )' fi if test $? -ne 0 ; then AC_MSG_ERROR([Can't continue until above error is corrected.]) fi --8<---------------cut here---------------end--------------->8--- More specifically, running this with emacs: --8<---------------cut here---------------start------------->8--- emacs -batch -q --no-site-file -eval '(dolist (package > (quote (cl-lib loc-changes load-relative test-simple))) > (require package)) > )' Trailing garbage following expression:=20 ) --8<---------------cut here---------------end--------------->8--- Reproduces it. One way out would be to set the environment variable NO_CHECK_EMACS_PACKAGES to something to skip that check; although it'd be nice to find what changed (maybe something changed for Emacs 26?) and submit it upstream. To be continued... Maxim