mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
upstream: update-package-inputs: Sort extra inputs.
Ensure that extra inputs end up in the correct order. * guix/upstream.scm (update-package-inputs)[filtered-inputs]: Sort new list of inputs. Change-Id: Ia5fddd8103a33c79426995057fcce61c2e9e5a72
This commit is contained in:
parent
9ce548a26e
commit
00c8a9275c
1 changed files with 16 additions and 12 deletions
|
@ -1,7 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2010-2023 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2015 Alex Kost <alezost@gmail.com>
|
||||
;;; Copyright © 2019, 2022, 2023 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2019, 2022-2024 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
||||
;;; Copyright © 2021, 2022 Maxime Devos <maximedevos@telenet.be>
|
||||
;;; Copyright © 2022 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||
|
@ -566,17 +566,21 @@ (define (filtered-inputs source-inputs extra-property ignore-property)
|
|||
(properties (package-properties package))
|
||||
(ignore (or (assoc-ref properties ignore-property) '()))
|
||||
(extra (or (assoc-ref properties extra-property) '())))
|
||||
(append (if (null? ignore)
|
||||
inputs
|
||||
(remove (lambda (input)
|
||||
(member (upstream-input-downstream-name input)
|
||||
ignore))
|
||||
inputs))
|
||||
(map (lambda (name)
|
||||
(upstream-input
|
||||
(name name)
|
||||
(downstream-name name)))
|
||||
extra)))))
|
||||
(sort
|
||||
(append (if (null? ignore)
|
||||
inputs
|
||||
(remove (lambda (input)
|
||||
(member (upstream-input-downstream-name input)
|
||||
ignore))
|
||||
inputs))
|
||||
(map (lambda (name)
|
||||
(upstream-input
|
||||
(name name)
|
||||
(downstream-name name)))
|
||||
extra))
|
||||
(lambda (a b)
|
||||
(string-ci<? (upstream-input-downstream-name a)
|
||||
(upstream-input-downstream-name b)))))))
|
||||
|
||||
(define regular-inputs
|
||||
(filtered-inputs upstream-source-regular-inputs
|
||||
|
|
Loading…
Reference in a new issue