forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit.sls
202 lines (195 loc) · 4.33 KB
/
git.sls
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# both 32-bit (x86) AND a 64-bit (AMD64) installer available for git
{% set arch = {'AMD64': '64', 'x86': '32'}[salt["grains.get"]("cpuarch")] -%}
# Since version 2.33.0 no version number is added to the full_name field
# See https://github.com/git-for-windows/build-extra/pull/365
# There was a short-lived change in version format
# See https://github.com/git-for-windows/git/issues/2223
{% set new_style_versions = [
'2.23.0',
'2.22.0'
] %}
{% load_yaml as versions -%}
- 2.41.0
- 2.40.1
- 2.40.0
- 2.39.2
- 2.39.1
- 2.39.0.2
- 2.39.0
- 2.38.1
- 2.38.0
- 2.37.3
- 2.37.2.2
- 2.37.1
- 2.37.0
- 2.36.1
- 2.36.0
- 2.35.3
- 2.35.2
- 2.35.1.2
- 2.35.1
- 2.35.0
- 2.34.1
- 2.34.0
- 2.33.1
- 2.33.0.2
- 2.33.0
- 2.32.0.2
- 2.32.0
- 2.31.1
- 2.31.0
- 2.30.2
- 2.30.1
- 2.30.0.2
- 2.30.0
- 2.29.2.3
- 2.29.2.2
- 2.29.2
- 2.29.1
- 2.29.0
- 2.28.0
- 2.27.0
- 2.26.2
- 2.26.1
- 2.26.0
- 2.25.1
- 2.25.0
- 2.24.1.2
- 2.24.0.2
- 2.24.0
- 2.23.0
- 2.22.0
- 2.21.0
- 2.20.1
- 2.20.0
- 2.19.1
- 2.19.0
- 2.18.0
- 2.17.1.2
- 2.17.1
- 2.17.0
- 2.16.3
- 2.16.2
- 2.16.1.4
- 2.16.1.3
- 2.16.1.2
- 2.16.1
- 2.16.0.2
- 2.15.1.2
- 2.15.1
- 2.15.0
- 2.14.3
- 2.14.2.3
- 2.14.2.2
- 2.14.2
- 2.14.1
- 2.14.0.2
- 2.14.0
- 2.13.3
- 2.13.2
- 2.13.1.2
- 2.13.1
- 2.13.0
- 2.12.2.2
- 2.12.2
- 2.12.1
- 2.12.0
- 2.11.1
- 2.11.0.3
- 2.11.0.2
- 2.11.0
- 2.10.2
- 2.10.1
- 2.10.0
- 2.9.3.2
- 2.9.3
- 2.9.2
- 2.9.0
- 2.8.4
- 2.8.3
- 2.8.2
- 2.8.1
- 2.8.0
- 2.7.4
- 2.7.3
- 2.7.2
- 2.7.1.2
- 2.7.1
- 2.7.0.2
- 2.7.0
- 2.6.4
- 2.6.3
- 2.6.2
- 2.6.1
- 2.6.0
- 2.5.3
- 2.5.2.2
- 2.5.2
- 2.5.1
- 2.5.0
{% endload -%}
{% load_yaml as uninstall_only -%}
- 2.19.2
{% endload -%}
git:
{% for version in versions + uninstall_only %}
{% if version.count('.') == 3 %}
{% set short_version = version[:-2] %}
{% set win_ver = version[-1:] %}
{% else %}
{% set short_version = version %}
{% set win_ver = "1" %}
{% endif %}
{% set extended_version = short_version ~ ".windows." ~ win_ver %}
{% if version in new_style_versions %}
{% set display_version = extended_version %}
{% else %}
{% set display_version = version %}
{% endif %}
'{{ display_version }}':
{% if salt["pkg.compare_versions"](version, "<", "2.33.0") -%}
{% set displayname_version = " version " ~ display_version -%}
{% endif -%}
full_name: Git{{ displayname_version | default("") }}
{%- if version not in uninstall_only %}
installer: https://github.com/git-for-windows/git/releases/download/v{{ extended_version }}/Git-{{ version }}-{{ arch }}-bit.exe
# It is impossible to downgrade git silently. It will always pop a message
# that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that
# warning allowing salt to continue, but the package will not downgrade
install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES
{%- endif %}
uninstaller: forfiles
uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'
msiexec: False
locale: en_US
reboot: False
{% endfor %}
{% set PROGRAM_FILES = {'AMD64': '%ProgramFiles(x86)%', 'x86': '%ProgramFiles%'}[salt["grains.get"]("cpuarch")] -%}
msysgit:
'1.9.5-preview20150319':
full_name: 'Git version 1.9.5-preview20150319'
installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe'
install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL'
uninstaller: '{{ PROGRAM_FILES }}\Git\unins000.exe'
uninstall_flags: '/VERYSILENT /NORESTART '
msiexec: False
locale: en_US
reboot: False
'1.9.5-preview20141217':
full_name: 'Git version 1.9.5-preview20141217'
installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe'
install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL'
uninstaller: '{{ PROGRAM_FILES }}\Git\unins000.exe'
uninstall_flags: '/VERYSILENT /NORESTART'
msiexec: False
locale: en_US
reboot: False
'1.9.4-preview20140815':
full_name: 'Git version 1.9.4-preview20140815'
installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe'
install_flags: '/VERYSILENT /NOREBOOT'
uninstaller: '{{ PROGRAM_FILES }}\Git\unins000.exe'
uninstall_flags: '/VERYSILENT /NOREBOOT'
msiexec: False
locale: en_US
reboot: False