zsh-workers
 help / color / mirror / code / Atom feed
9546cb2b76704e76946b2564423ecf3738b0717c blob 2278 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
 
#
# Test whether $ZSH_VERSION (or some value of your choice, if a second argument
# is provided) is greater than or equal to x.y.z-r (in argument one). In fact,
# it'll accept any dot/dash-separated string of numbers as its second argument
# and compare it to the dot/dash-separated first argument. Leading non-number
# parts of a segment (such as the "zefram" in 3.1.2-zefram4) are not considered
# when the comparison is done; only the numbers matter. Any left-out segments
# in the first argument that are present in the version string compared are
# considered as zeroes, eg 3 == 3.0 == 3.0.0 == 3.0.0.0 and so on.
#
# Usage examples:
# is-at-least 3.1.6-15 && setopt NO_GLOBAL_RCS
# is-at-least 3.1.0 && setopt HIST_REDUCE_BLANKS
# is-at-least 586 $MACHTYPE && echo 'You could be running Mandrake!'
# is-at-least $ZSH_VERSION || print 'Something fishy here.'
#
# Note that segments that contain no digits at all are ignored, and leading
# text is discarded if trailing digits follow, because this was the meaning
# of certain zsh version strings in the early 2000s.  Other segments that
# begin with digits are compared using NUMERIC_GLOB_SORT semantics, and any
# other segments starting with text are compared lexically.

emulate -L zsh

local IFS=".-" min_cnt=0 ver_cnt=0 part min_ver version order

min_ver=(${=1})
version=(${=2-$ZSH_VERSION} 0)

while (( $min_cnt <= ${#min_ver} )); do
  while [[ "$part" != <-> ]]; do
    (( ++ver_cnt > ${#version} )) && return 0
    if [[ ${version[ver_cnt]} = *[0-9][^0-9]* ]]; then
      # Contains a number followed by text.  Not a zsh version string.
      order=( ${version[ver_cnt]} ${min_ver[ver_cnt]} )
      if [[ ${version[ver_cnt]} = <->* ]]; then
        # Leading digits, compare by sorting with numeric order.
        [[ $order != ${${(On)order}} ]] && return 1
      else
        # No leading digits, compare by sorting in lexical order.
        [[ $order != ${${(O)order}} ]] && return 1
      fi
      [[ $order[1] != $order[2] ]] && return 0
    fi
    part=${version[ver_cnt]##*[^0-9]}
  done

  while true; do
    (( ++min_cnt > ${#min_ver} )) && return 0
    [[ ${min_ver[min_cnt]} = <-> ]] && break
  done

  (( part > min_ver[min_cnt] )) && return 0
  (( part < min_ver[min_cnt] )) && return 1
  part=''
done
debug log:

solving 9546cb2b7 ...
found 9546cb2b7 in https://inbox.vuxu.org/zsh-workers/20230528113907.hvxjuu4wwmettr5p@chazelas.org/
found d4ff3552a in https://git.vuxu.org/mirror/zsh/
preparing index
index prepared:
100644 d4ff3552a53de532686af338e526f7b92d0f9c99	Functions/Misc/is-at-least

applying [1/1] https://inbox.vuxu.org/zsh-workers/20230528113907.hvxjuu4wwmettr5p@chazelas.org/
diff --git a/Functions/Misc/is-at-least b/Functions/Misc/is-at-least
index d4ff3552a..9546cb2b7 100644

Checking patch Functions/Misc/is-at-least...
Applied patch Functions/Misc/is-at-least cleanly.

index at:
100644 9546cb2b76704e76946b2564423ecf3738b0717c	Functions/Misc/is-at-least

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

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 NNTP newsgroup(s).