Sort the ecode list in the gnt-cluster manual for deterministic results. Submitted upstream: . diff --git a/lib/build/sphinx_ext.py b/lib/build/sphinx_ext.py --- a/lib/build/sphinx_ext.py +++ b/lib/build/sphinx_ext.py @@ -108,7 +108,7 @@ CV_ECODES_DOC = "ecodes" # pylint: disable=W0621 CV_ECODES_DOC_LIST = [(name, doc) for (_, name, doc) in constants.CV_ALL_ECODES] DOCUMENTED_CONSTANTS = { - CV_ECODES_DOC: CV_ECODES_DOC_LIST, + CV_ECODES_DOC: sorted(CV_ECODES_DOC_LIST, key=lambda tup: tup[0]), } orm'>
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/import-git.scm
AgeCommit message (Expand)Author
2021-09-18import: Add 'generic-git' updater....* guix/git.scm (ls-remote-refs): New procedure. * tests/git.scm ("remote-refs" "remote-refs: only tags"): New tests. * guix/import/git.scm: New file. * doc/guix.texi (Invoking guix refresh): Document it. * tests/import-git.scm: New test file. * Makefile.am (MODULES, SCM_TESTS): Register the new files. Co-authored-by: Sarah Morgensen <iskarian@mgsn.dev> Signed-off-by: Ludovic Courtès <ludo@gnu.org> Xinglu Chen