From mboxrd@z Thu Jan 1 00:00:00 1970 From: Myles English Subject: Re: fetching git submodule using (uri (recursive? #t)) Date: Tue, 4 Jun 2019 14:40:15 +0100 Message-ID: References: <87r28ipviy.fsf@gmail.com> <87d0jus3nw.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([209.51.188.92]:55767) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hY9fw-0001ex-Oz for help-guix@gnu.org; Tue, 04 Jun 2019 09:40:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hY9fv-0006Pi-OX for help-guix@gnu.org; Tue, 04 Jun 2019 09:40:28 -0400 Received: from mail-vk1-xa44.google.com ([2607:f8b0:4864:20::a44]:46284) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hY9fv-0006PN-JS for help-guix@gnu.org; Tue, 04 Jun 2019 09:40:27 -0400 Received: by mail-vk1-xa44.google.com with SMTP id g194so3543222vke.13 for ; Tue, 04 Jun 2019 06:40:27 -0700 (PDT) In-Reply-To: <87d0jus3nw.fsf@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: help-guix And thanks to Ludo' too. I didn't see your mail because the thread view doesn't seam to be able to span from one month to the next, and also I think I got unsubscribed after getting messages saying "Your membership in the mailing list Help-Guix has been disabled due to excessive bounces". Myles On Mon, 3 Jun 2019 at 23:30, Myles English wrote: > on [2019-05-28] at 14:18 I wrote: > > > I am trying to build this package that uses git submodules but the > > (recursive? #t) doesn't seem to have any effect. > > Thanks to bavier and reepca on IRC #guix who figured out this happens > when the package definition is changed (by e.g., adding "(recursive? > #t)") but the hash is not updated. This causes guix to think, > reasonably, that it already has the source in /gnu/store/the_hash-etc > because the_hash hasn't changed since the last time it was fetched. > > To fix, just remove the source from the store before trying again: > > $ guix gc -d /gnu/store/the_hash-etc > > (N.B. the "-d" above might have changed to "-D") > > Additionally, when developing a package, reepca suggested making a > random change to the hash just so guix knows it needs to get the source > again, and it will suggested the real hash to put in the package > definition. > > Myles >