[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#38290] [PATCH] gnu: nmoldyn: New source code location.
From: |
Ludovic Courtès |
Subject: |
[bug#38290] [PATCH] gnu: nmoldyn: New source code location. |
Date: |
Thu, 21 Nov 2019 10:11:44 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) |
Hello!
Konrad Hinsen <address@hidden> skribis:
> * gnu/packages/chemistry.scm (nmoldyn): New source code location.
> Following the annoucement of Bitbucket to delete all
> Mercurial repositories in June 2020, the source code has
> been migrated to GitHub.
[...]
> - (method url-fetch)
> - (uri (string-append "https://bitbucket.org/khinsen/"
> - "nmoldyn3/downloads/nMOLDYN-"
> - version ".tar.gz"))
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/khinsen/nMOLDYN3")
> + (commit (string-append "v" version))))
> + (file-name (git-file-name name version))
> (sha256
> (base32
> - "1mvmz3lkr217kdrd8cvdr1d82y58wp1403c9rnd943mijgq8xb5a"))))
> + "016h4bqg419p6s7bcx55q5iik91gqmk26hbnfgj2j6zl0j36w51r"))))
It’s weird that the content hash differs. Did you try to diff the hg
checkout and the Git checkout?
Thanks,
Ludo’.