[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: website: Bump latest Guix version to 1.3.0 and up
From: |
Maxim Cournoyer |
Subject: |
branch master updated: website: Bump latest Guix version to 1.3.0 and update download page. |
Date: |
Tue, 11 May 2021 23:44:11 -0400 |
This is an automated email from the git hooks/post-receive script.
apteryx pushed a commit to branch master
in repository guix-artwork.
The following commit(s) were added to refs/heads/master by this push:
new d03bca7 website: Bump latest Guix version to 1.3.0 and update
download page.
d03bca7 is described below
commit d03bca71de5655e019494c87a24bba9d2c127051
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue May 11 23:39:59 2021 -0400
website: Bump latest Guix version to 1.3.0 and update download page.
* website/apps/base/utils.scm (latest-guix-version): Update to 1.3.0.
* website/apps/download/data.scm (system-downloads): Drop .xz file
extension from .iso files. Replace .xz extension by .qcow2 for the VM
image. Add the new powerpc64le variant for the Guix binary download.
---
website/apps/base/utils.scm | 2 +-
website/apps/download/data.scm | 9 +++++----
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/website/apps/base/utils.scm b/website/apps/base/utils.scm
index 1fc9749..0ca773d 100644
--- a/website/apps/base/utils.scm
+++ b/website/apps/base/utils.scm
@@ -64,7 +64,7 @@
(string-append path "/"))))))
(define latest-guix-version
- (make-parameter "1.2.0"))
+ (make-parameter "1.3.0"))
(define (locale-display-name)
"Return the display name of the current locale."
diff --git a/website/apps/download/data.scm b/website/apps/download/data.scm
index 14db656..2e54bb4 100644
--- a/website/apps/download/data.scm
+++ b/website/apps/download/data.scm
@@ -25,8 +25,8 @@
#:image (guix-url "static/base/img/GuixSD-package.png")
#:base-url (string-append
"https://ftp.gnu.org/gnu/guix/guix-system-install-"
(latest-guix-version) ".")
- #:variants (list (variant "x86_64" "x86_64-linux.iso.xz")
- (variant "i686" "i686-linux.iso.xz"))
+ #:variants (list (variant "x86_64" "x86_64-linux.iso")
+ (variant "i686" "i686-linux.iso"))
;; TRANSLATORS: System installation is a section name in the
;; English (en) manual.
#:manual (G_ (manual-url-with-language (G_ "en")
@@ -41,7 +41,7 @@
#:image (guix-url "static/base/img/QEMU-package.png")
#:base-url (string-append
"https://ftp.gnu.org/gnu/guix/guix-system-vm-image-"
(latest-guix-version) ".")
- #:variants (list (variant "x86_64" "x86_64-linux.xz"))
+ #:variants (list (variant "x86_64" "x86_64-linux.qcow2"))
;; TRANSLATORS: Running Guix in a VM is a section name in the
;; English (en) manual.
#:manual (G_ (manual-url-with-language (G_ "en")
@@ -61,7 +61,8 @@
#:variants (list (variant "x86_64" "x86_64-linux.tar.xz")
(variant "i686" "i686-linux.tar.xz")
(variant "armhf" "armhf-linux.tar.xz")
- (variant "aarch64" "aarch64-linux.tar.xz"))
+ (variant "aarch64" "aarch64-linux.tar.xz")
+ (variant "powerpc64le" "powerpc64le-linux.tar.xz"))
;; TRANSLATORS: Binary Installation is a section name in the
;; English (en) manual.
#:manual (G_ (manual-url-with-language (G_ "en")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: website: Bump latest Guix version to 1.3.0 and update download page.,
Maxim Cournoyer <=