From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maxim Cournoyer Subject: bug#28659: v0.13: guix pull fails; libgit2-0.26.0 and 0.25.1 content hashes fail Date: Thu, 05 Oct 2017 00:52:57 -0400 Message-ID: <87h8vegpqu.fsf@gmail.com> References: <877ewf18d4.fsf@gnu.org> <87wp4e8yk5.fsf@gnu.org> <20171001204237.GA11804@jasmine.lan> <87vajxoavx.fsf@gnu.org> <20171002181929.GA10773@jasmine.lan> <87infx2mmt.fsf@gmail.com> <20171003142449.GB23431@jasmine.lan> <874lrfee45.fsf@gmail.com> <20171004165413.GA4596@jasmine.lan> <87r2uih3lx.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55827) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dzyAf-0003Mc-Pc for bug-guix@gnu.org; Thu, 05 Oct 2017 00:54:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dzyAc-0006SS-NT for bug-guix@gnu.org; Thu, 05 Oct 2017 00:54:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:40890) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dzyAc-0006SD-Jw for bug-guix@gnu.org; Thu, 05 Oct 2017 00:54:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dzyAc-0001Rg-9U for bug-guix@gnu.org; Thu, 05 Oct 2017 00:54:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87r2uih3lx.fsf@gmail.com> (Maxim Cournoyer's message of "Wed, 04 Oct 2017 19:53:30 -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: Leo Famulari Cc: 28659@debbugs.gnu.org I've modified the script to sort the packages it prints: --8<---------------cut here---------------start------------->8--- - (for-each (lambda (p) - (format #t "~a~%" (package-name p))) - packages))) + (for-each (lambda (name) + (format #t "~a~%" name)) + (sort (map package-name packages) string8--- and compared it to the list here: https://github.com/Homebrew/homebrew-core/issues/18044 If we can trust the Homebrew list to be extensive, it seems we got lucky; there's only one affected package that we share which is yaml-cpp. Here's how it fails on our side: --8<---------------cut here---------------start------------->8--- guix build -S --no-substitutes yaml-cpp The following derivation will be built: /gnu/store/mlap8jmadirnbii6sppb6vj9x56s8azw-yaml-cpp-0.5.3.tar.gz.drv @ build-started /gnu/store/mlap8jmadirnbii6sppb6vj9x56s8azw-yaml-cpp-0.5.3.tar.gz.drv - x86_64-linux /var/log/guix/drvs/ml//ap8jmadirnbii6sppb6vj9x56s8azw-yaml-cpp-0.5.3.tar.gz.drv.bz2 Starting download of /gnu/store/qwflwafrzjbr2b7dy4nv18nxykghhmnk-yaml-cpp-0.5.3.tar.gz >From https://github.com/jbeder/yaml-cpp/archive/yaml-cpp-0.5.3.tar.gz... following redirection to `https://codeload.github.com/jbeder/yaml-cpp/tar.gz/yaml-cpp-0.5.3'... ...p-0.5.3 1.7MiB/s 00:01 | 1.9MiB transferred sha256 hash mismatch for output path `/gnu/store/qwflwafrzjbr2b7dy4nv18nxykghhmnk-yaml-cpp-0.5.3.tar.gz' expected: 1vk6pjh0f5k6jwk2sszb9z5169whmiha9ainbdpa1arxlkq7v3b6 actual: 1ck7jk0wjfigrf4cgcjqsir4yp1s6vamhhxhpsgfvs46pgm5pk6y @ build-failed /gnu/store/mlap8jmadirnbii6sppb6vj9x56s8azw-yaml-cpp-0.5.3.tar.gz.drv - 1 sha256 hash mismatch for output path `/gnu/store/qwflwafrzjbr2b7dy4nv18nxykghhmnk-yaml-cpp-0.5.3.tar.gz' expected: 1vk6pjh0f5k6jwk2sszb9z5169whmiha9ainbdpa1arxlkq7v3b6 actual: 1ck7jk0wjfigrf4cgcjqsir4yp1s6vamhhxhpsgfvs46pgm5pk6y guix build: error: build failed: build of `/gnu/store/mlap8jmadirnbii6sppb6vj9x56s8azw-yaml-cpp-0.5.3.tar.gz.drv' failed --8<---------------cut here---------------end--------------->8--- Maxim