guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 72a2ee2005cff2ce61157695bfda7e9fad167cad
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Mon Aug 31 15:05:21 2026 +0900
teams/gnome: Sort update specs.
* etc/teams/gnome/gnome-core-refresh: Sort update specs.
---
etc/teams/gnome/gnome-core-refresh | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/etc/teams/gnome/gnome-core-refresh
b/etc/teams/gnome/gnome-core-refresh
index 21a801a2b7..ed4f812c90 100755
--- a/etc/teams/gnome/gnome-core-refresh
+++ b/etc/teams/gnome/gnome-core-refresh
@@ -1,7 +1,7 @@
#!/usr/bin/env -S guix repl --
!# ;-*- mode: scheme; -*-
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2025 Maxim Cournoyer <[email protected]>
+;;; Copyright © 2025-2026 Maxim Cournoyer <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -135,5 +135,6 @@ refresh' can automatically find the newest compatible
version."
name version))))
(apply guix-refresh (append (cdr (command-line))
- (releng-tree->update-specs
- (parse-releng (fetch-releng-content)))))
+ (sort (releng-tree->update-specs
+ (parse-releng (fetch-releng-content)))
+ string>)))