From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Subject: bug#40377: guix build --with-commit is broken Date: Thu, 02 Apr 2020 23:17:51 +0200 Message-ID: <87a73tmvsw.fsf@gnu.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:54342) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jK7Et-0008RL-LM for bug-guix@gnu.org; Thu, 02 Apr 2020 17:19:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jK7Es-0004pQ-FW for bug-guix@gnu.org; Thu, 02 Apr 2020 17:19:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:57534) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jK7Es-0004pF-CS for bug-guix@gnu.org; Thu, 02 Apr 2020 17:19:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jK7Es-00061c-7i for bug-guix@gnu.org; Thu, 02 Apr 2020 17:19:02 -0400 Sender: "Debbugs-submit" Resent-To: bug-guix@gnu.org Resent-Message-ID: In-Reply-To: (Brice Waegeneire's message of "Wed, 01 Apr 2020 17:41:20 +0000") 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-mx.org@gnu.org Sender: "bug-Guix" To: Brice Waegeneire Cc: 40377-done@debbugs.gnu.org Hi, Brice Waegeneire skribis: > $ guix build mlt --with-commit=3Dmlt=3Dv6.18.0 > updating checkout of 'https://github.com/mltframework/mlt.git'... > guix build: error: Git failure while fetching > https://github.com/mltframework/mlt.git: the requested type does not > match the type in the ODB [...] > $ guix build picom --with-commit=3Dpicom=3DvNext > updating checkout of 'https://github.com/yshui/picom.git'... > guix build: error: Git failure while fetching > https://github.com/yshui/picom.git: the requested type does not match > the type in the ODB Interestingly, guix build guile-gcrypt --with-commit=3Dguile-gcrypt=3Dv0.2.0 would work just fine. This is because the tags in the above examples actually point to a =E2=80=9Ccommit=E2=80=9D object instead of pointing to a =E2=80=9Ctag=E2=80= =9D object as in the guile-gcrypt case. Weird. Fixed with commit efa578ecaece67366b4b0e2266de7c2faaa4ae54. Thanks, Ludo=E2=80=99.