From: Liliana Marie Prikler <liliana.prikler@gmail.com> To: 55854@debbugs.gnu.org Cc: Kaelyn <kaelyn.alexi@protonmail.com> Subject: bug#55854: [PATCH 1/2] import: Check that GNOME minor version is not a semver prerelease. Date: Fri, 17 Jun 2022 15:44:02 +0200 [thread overview] Message-ID: <8f37e2ae72f4e532f05f8cd010099a8e87e57c47.camel@gmail.com> (raw) In-Reply-To: <bpII8BMbxEJbaiPdFNKwLKOzgKF3fpl3t_Fl8yesV6QnyKVgD_Wl2z5Ip8rT8KIOHULjf9wIi_qbDshR2aC2gxdwwAUARVmWQxZ9H8JIiRg=@protonmail.com> * guix/import/gnome.scm (latest-gnome-release)[even-minor-version]: Rename to... [stable-minor-version?]: ... this. Also check that minor < 90. --- guix/import/gnome.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guix/import/gnome.scm b/guix/import/gnome.scm index 43966c1028..1a0786ab8d 100644 --- a/guix/import/gnome.scm +++ b/guix/import/gnome.scm @@ -60,10 +60,10 @@ (define (latest-gnome-release package) (define %not-dot (char-set-complement (char-set #\.))) - (define (even-minor-version? version) + (define (stable-minor-version? version) (match (string-tokenize version %not-dot) (((= string->number major) (= string->number minor) . rest) - (and minor (even? minor))) + (and minor (even? minor) (< minor 90))) (((= string->number major) . _) ;; It should at last start with a digit. major))) @@ -94,7 +94,7 @@ (define upstream-name (let* ((releases (assoc-ref releases upstream-name)) (latest (fold (match-lambda* (((key . value) result) - (cond ((even-minor-version? key) + (cond ((stable-minor-version? key) (match result (#f (cons key value)) -- 2.36.1
next prev parent reply other threads:[~2022-06-17 13:53 UTC|newest] Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-06-08 17:18 bug#55854: "guix refresh" doesn't handle older versions like gtk+@2 Kaelyn via Bug reports for GNU Guix 2022-06-17 13:44 ` Liliana Marie Prikler [this message] 2022-06-17 13:46 ` bug#55854: [PATCH 2/2] gnu: Restrict gtk+ updaters to their major versions Liliana Marie Prikler
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style List information: https://guix.gnu.org/ * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=8f37e2ae72f4e532f05f8cd010099a8e87e57c47.camel@gmail.com \ --to=liliana.prikler@gmail.com \ --cc=55854@debbugs.gnu.org \ --cc=kaelyn.alexi@protonmail.com \ --subject='Re: bug#55854: [PATCH 1/2] import: Check that GNOME minor version is not a semver prerelease.' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Code repositories for project(s) associated with this inbox: https://git.savannah.gnu.org/cgit/guix.git This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).