From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: guix-pull prints stack trace Date: Sat, 10 Sep 2016 11:47:10 -0400 Message-ID: <20160910154710.GA26268@jasmine> References: <877fakibfh.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39400) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bikV9-0003bW-Oo for guix-devel@gnu.org; Sat, 10 Sep 2016 11:47:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bikV3-0006MZ-Qc for guix-devel@gnu.org; Sat, 10 Sep 2016 11:47:30 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:52722) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bikV2-0006Kg-HA for guix-devel@gnu.org; Sat, 10 Sep 2016 11:47:25 -0400 Content-Disposition: inline In-Reply-To: <877fakibfh.fsf@gmail.com> 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: Alex Vong Cc: guix-devel@gnu.org On Sat, Sep 10, 2016 at 01:14:10PM +0800, Alex Vong wrote: > Hello, > > It seems the commit c41d97b causes guix-pull to print stack trace. > > Here is the stack trace: > =========================================================================== > In ice-9/psyntax.scm: > 989: 19 [scan ((define-module (gnu packages tex) #:use-module ...)) () ...] > 279: 18 [scan ((#(syntax-object let # ...) (#) (# #) ...)) () ...] > In ice-9/eval.scm: > 411: 17 [eval # ()] > In ice-9/boot-9.scm: > 2951: 16 [define-module* (gnu packages tex) #:filename ...] > 2926: 15 [resolve-imports ((# # license:) (#) (#) (#) ...)] > 2864: 14 [resolve-interface (gnu packages pdf) #:select ...] > 2789: 13 [# # ...] > 3065: 12 [try-module-autoload (gnu packages pdf) #f] > 2401: 11 [save-module-excursion #] > 3085: 10 [#] > In unknown file: > ?: 9 [primitive-load-path "gnu/packages/pdf" ...] > In ice-9/eval.scm: > 505: 8 [# (define-module # # ...)] > In ice-9/psyntax.scm: > 1106: 7 [expand-top-sequence ((define-module # # # ...)) () ((top)) ...] > 989: 6 [scan ((define-module (gnu packages pdf) #:use-module ...)) () ...] > 279: 5 [scan ((#(syntax-object let # ...) (#) (# #) ...)) () ...] > In ice-9/eval.scm: > 411: 4 [eval # ()] > In ice-9/boot-9.scm: > 2951: 3 [define-module* (gnu packages pdf) #:filename ...] > 2926: 2 [resolve-imports ((# # license:) (#) (#) (#) ...)] > 2867: 1 [resolve-interface (gnu packages javascript) #:select ...] > In unknown file: > ?: 0 [scm-error misc-error #f ...] > > ERROR: In procedure scm-error: > ERROR: no code for module (gnu packages javascript) > builder for `/gnu/store/58ji3i7a0dl2sgf39m16l90alnyyvc9j-guix-latest.drv' failed with exit code 1 > guix pull: error: build failed: build of `/gnu/store/58ji3i7a0dl2sgf39m16l90alnyyvc9j-guix-latest.drv' failed > =========================================================================== > > Looking at the patch, I think the problem is in > `#:use-module (gnu packages javascript)'. An embarrassing mistake :/ I still had gnu/packages/javascript.go in my source tree, so I didn't notice the problem until I tried building Guix on another machine. I ended up doing `make clean-go && rm gnu/packages/*.go`, and I was surprised by how many old modules I had lying around. I will get into the habit of doing this more often.