From mboxrd@z Thu Jan 1 00:00:00 1970 From: julien lepiller Subject: bug#31247: fetching an svn repository always results in a different hash Date: Mon, 23 Apr 2018 17:44:08 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59420) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fAdeN-0007no-LD for bug-guix@gnu.org; Mon, 23 Apr 2018 11:45:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fAdeI-0005m4-84 for bug-guix@gnu.org; Mon, 23 Apr 2018 11:45:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:57580) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fAdeI-0005lu-4S for bug-guix@gnu.org; Mon, 23 Apr 2018 11:45:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fAdeH-00007b-RK for bug-guix@gnu.org; Mon, 23 Apr 2018 11:45:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59173) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fAddc-0007iG-RN for bug-guix@gnu.org; Mon, 23 Apr 2018 11:44:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fAddX-0005S6-Lj for bug-guix@gnu.org; Mon, 23 Apr 2018 11:44:20 -0400 Received: from lepiller.eu ([89.234.186.109]:44614) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fAddX-0005Q1-9d for bug-guix@gnu.org; Mon, 23 Apr 2018 11:44:15 -0400 Received: from webmail.lepiller.eu (static-176-182-42-79.ncc.abo.bbox.fr [176.182.42.79]) by lepiller.eu (OpenSMTPD) with ESMTPSA id 72f41a64 (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128:NO) for ; Mon, 23 Apr 2018 15:47:27 +0000 (UTC) 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: 31247@debbugs.gnu.org Hi, I'm trying to use svn-fetch in a new package, but I always get a different hash when I try to download the sources. I think this is due to fetching external resources. Here are two adresses that trigger this bug: - http://svn.netlabs.org/repos/kbuild/trunk - https://svn.openstreetmap.org/applications/editors/josm Here is a package definition I try to use: (define-public kbuild (package (name "kbuild") (version "0.1.9998") (source (origin (method svn-fetch) (uri (svn-reference (url "http://svn.netlabs.org/repos/kbuild/trunk") (revision 3025))) (file-name (string-append name "-" version)) (sha256 (base32 "1k7y2lqqhsfwfzzi7rms7a2kakimm7g46qa2gypkvzdd3drbpanj")))) (build-system gnu-build-system) (home-page "http://trac.netlabs.org/kbuild/wiki") (synopsis "Makefile framework") (description "kBuild is a makefile framework for writing simple makefiles for complex tasks.") (license license:gpl3+)))