guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: xen: Fix upstream hash mismatch.


From: guix-commits
Subject: 02/02: gnu: xen: Fix upstream hash mismatch.
Date: Sat, 23 Oct 2021 08:07:19 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 7635279100147fc7cec97e0c0046f5871c26f380
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sat Oct 23 14:03:10 2021 +0200

    gnu: xen: Fix upstream hash mismatch.
    
    * gnu/packages/virtualization.scm (xen)[native-inputs]: Fetch mini-os by
    Git its commit rather than an unstable tag.
---
 gnu/packages/virtualization.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm
index ecde4ae..15040d6 100644
--- a/gnu/packages/virtualization.scm
+++ b/gnu/packages/virtualization.scm
@@ -2008,7 +2008,7 @@ DOS or Microsoft Windows.")
 (define-public xen
   (package
     (name "xen")
-    (version "4.14.1")
+    (version "4.14.1")               ; please update the mini-os input as well
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -2185,10 +2185,12 @@ override CC = " (assoc-ref inputs "cross-gcc") 
"/bin/i686-linux-gnu-gcc"))
          (method git-fetch)
          (uri (git-reference
                (url "https://xenbits.xen.org/git-http/mini-os.git";)
-               (commit (string-append "xen-RELEASE-" version))))
+               ;; This corresponds to (string-append "xen-RELEASE-" version))
+               ;; at time of packaging, but upstream has unfortunately modified
+               ;; existing tags in the past.
+               (commit "0b4b7897e08b967a09bed2028a79fabff82342dd")))
          (sha256
-          (base32
-           "1i8pcl19n60i2m9vlg79q3nknpj209c9ic5x10wxaicx45kc107f"))
+          (base32 "1i8pcl19n60i2m9vlg79q3nknpj209c9ic5x10wxaicx45kc107f"))
          (file-name "mini-os-git-checkout")))
        ("perl" ,perl)
        ; TODO: markdown



reply via email to

[Prev in Thread] Current Thread [Next in Thread]