-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild_release7.sh
More file actions
executable file
·443 lines (405 loc) · 25.6 KB
/
Copy pathbuild_release7.sh
File metadata and controls
executable file
·443 lines (405 loc) · 25.6 KB
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
#!/bin/sh
RELEASEBRANCH="patch7"
SQUASHBRANCH="squashed7"
CLIENTBRANCH="client7"
AMPACHEDIR=$PWD
COMPOSERPATH="/usr/local/bin/composer"
if [ ! -d $AMPACHEDIR/ampache-patch7 ]; then
git clone -b patch7 https://github.com/ampache/ampache.git ampache-patch7
fi
if [ ! -f $AMPACHEDIR/ampache-patch7/index.php ]; then
rm -rf $AMPACHEDIR/ampache-patch7
git clone -b patch7 https://github.com/ampache/ampache.git ampache-patch7
fi
cd $AMPACHEDIR/ampache-patch7 && git fetch origin $RELEASEBRANCH && git checkout -f $RELEASEBRANCH && git reset --hard origin/$RELEASEBRANCH && git pull
RELEASEVERSION=`grep -oP '[0-9]+\.[0-9]+\.[0-9]+' $AMPACHEDIR/ampache-patch7/src/Config/Init/InitializationHandlerConfig.php`
if [ ! $# -eq 0 ]; then
RELEASEVERSION=$1
fi
echo
echo $RELEASEVERSION
echo
if [ ! -d $AMPACHEDIR/releases ]; then
mkdir $AMPACHEDIR/releases
fi
if [ ! -d $AMPACHEDIR/releases/7 ]; then
mkdir $AMPACHEDIR/releases/7
fi
if [ ! -f $COMPOSERPATH ]; then
COMPOSERPATH="$AMPACHEDIR/docker/composer"
wget -q -O $COMPOSERPATH https://getcomposer.org/download/latest-stable/composer.phar
chmod +x $COMPOSERPATH
fi
cd $AMPACHEDIR/releases/7
if [ ! -d $AMPACHEDIR/releases/7/generic ]; then
git clone -b $RELEASEBRANCH https://github.com/ampache/ampache.git generic
fi
if [ ! -d $AMPACHEDIR/releases/7/generic_squashed ]; then
git clone -b $SQUASHBRANCH https://github.com/ampache/ampache.git generic_squashed
fi
if [ ! -d $AMPACHEDIR/releases/7/generic_client ]; then
git clone -b $CLIENTBRANCH https://github.com/ampache/ampache.git generic_client
fi
if [ ! -d $AMPACHEDIR/releases/7/php82 ]; then
git clone -b $RELEASEBRANCH https://github.com/ampache/ampache.git php82
fi
if [ ! -f $AMPACHEDIR/releases/7/php82/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php82
git clone -b $RELEASEBRANCH https://github.com/ampache/ampache.git php82
fi
if [ ! -d $AMPACHEDIR/releases/7/php82_squashed ]; then
git clone -b $SQUASHBRANCH https://github.com/ampache/ampache.git php82_squashed
fi
if [ ! -f $AMPACHEDIR/releases/7/php82_squashed/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php82_squashed
git clone -b $SQUASHBRANCH https://github.com/ampache/ampache.git php82_squashed
fi
if [ ! -d $AMPACHEDIR/releases/7/php82_client ]; then
git clone -b $CLIENTBRANCH https://github.com/ampache/ampache.git php82_client
fi
if [ ! -f $AMPACHEDIR/releases/7/php82_client/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php82_client
git clone -b $CLIENTBRANCH https://github.com/ampache/ampache.git php82_client
fi
if [ ! -d $AMPACHEDIR/releases/7/php83 ]; then
git clone -b $RELEASEBRANCH https://github.com/ampache/ampache.git php83
fi
if [ ! -f $AMPACHEDIR/releases/7/php83/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php83
git clone -b $RELEASEBRANCH https://github.com/ampache/ampache.git php83
fi
if [ ! -d $AMPACHEDIR/releases/7/php83_squashed ]; then
git clone -b $SQUASHBRANCH https://github.com/ampache/ampache.git php83_squashed
fi
if [ ! -f $AMPACHEDIR/releases/7/php83_squashed/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php83_squashed
git clone -b $SQUASHBRANCH https://github.com/ampache/ampache.git php83_squashed
fi
if [ ! -d $AMPACHEDIR/releases/7/php83_client ]; then
git clone -b $CLIENTBRANCH https://github.com/ampache/ampache.git php83_client
fi
if [ ! -f $AMPACHEDIR/releases/7/php83_client/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php83_client
git clone -b $CLIENTBRANCH https://github.com/ampache/ampache.git php83_client
fi
if [ ! -d $AMPACHEDIR/releases/7/php84 ]; then
git clone -b $RELEASEBRANCH https://github.com/ampache/ampache.git php84
fi
if [ ! -f $AMPACHEDIR/releases/7/php84/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php84
git clone -b $RELEASEBRANCH https://github.com/ampache/ampache.git php84
fi
if [ ! -d $AMPACHEDIR/releases/7/php84_squashed ]; then
git clone -b $SQUASHBRANCH https://github.com/ampache/ampache.git php84_squashed
fi
if [ ! -f $AMPACHEDIR/releases/7/php84_squashed/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php84_squashed
git clone -b $SQUASHBRANCH https://github.com/ampache/ampache.git php84_squashed
fi
if [ ! -d $AMPACHEDIR/releases/7/php84_client ]; then
git clone -b $CLIENTBRANCH https://github.com/ampache/ampache.git php84_client
fi
if [ ! -f $AMPACHEDIR/releases/7/php84_client/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php84_client
git clone -b $CLIENTBRANCH https://github.com/ampache/ampache.git php84_client
fi
if [ ! -d $AMPACHEDIR/releases/7/php85 ]; then
git clone -b $RELEASEBRANCH https://github.com/ampache/ampache.git php85
fi
if [ ! -f $AMPACHEDIR/releases/7/php85/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php85
git clone -b $RELEASEBRANCH https://github.com/ampache/ampache.git php85
fi
if [ ! -d $AMPACHEDIR/releases/7/php85_squashed ]; then
git clone -b $SQUASHBRANCH https://github.com/ampache/ampache.git php85_squashed
fi
if [ ! -f $AMPACHEDIR/releases/7/php85_squashed/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php85_squashed
git clone -b $SQUASHBRANCH https://github.com/ampache/ampache.git php85_squashed
fi
if [ ! -d $AMPACHEDIR/releases/7/php85_client ]; then
git clone -b $CLIENTBRANCH https://github.com/ampache/ampache.git php85_client
fi
if [ ! -f $AMPACHEDIR/releases/7/php85_client/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php85_client
git clone -b $CLIENTBRANCH https://github.com/ampache/ampache.git php85_client
fi
# force reset everything
cd $AMPACHEDIR/releases/7/generic && git fetch origin $RELEASEBRANCH && git checkout -f $RELEASEBRANCH && git reset --hard origin/$RELEASEBRANCH && git pull
cd $AMPACHEDIR/releases/7/generic_squashed && git fetch origin $SQUASHBRANCH && git checkout -f $SQUASHBRANCH && git reset --hard origin/$SQUASHBRANCH && git pull
cd $AMPACHEDIR/releases/7/generic_client && git fetch origin $CLIENTBRANCH && git checkout -f $CLIENTBRANCH && git reset --hard origin/$CLIENTBRANCH && git pull
cd $AMPACHEDIR/releases/7/php82 && git fetch origin $RELEASEBRANCH && git checkout -f $RELEASEBRANCH && git reset --hard origin/$RELEASEBRANCH && git pull
cd $AMPACHEDIR/releases/7/php82_squashed && git fetch origin $SQUASHBRANCH && git checkout -f $SQUASHBRANCH && git reset --hard origin/$SQUASHBRANCH && git pull
cd $AMPACHEDIR/releases/7/php82_client && git fetch origin $CLIENTBRANCH && git checkout -f $CLIENTBRANCH && git reset --hard origin/$CLIENTBRANCH && git pull
cd $AMPACHEDIR/releases/7/php83 && git fetch origin $RELEASEBRANCH && git checkout -f $RELEASEBRANCH && git reset --hard origin/$RELEASEBRANCH && git pull
cd $AMPACHEDIR/releases/7/php83_squashed && git fetch origin $SQUASHBRANCH && git checkout -f $SQUASHBRANCH && git reset --hard origin/$SQUASHBRANCH && git pull
cd $AMPACHEDIR/releases/7/php83_client && git fetch origin $CLIENTBRANCH && git checkout -f $CLIENTBRANCH && git reset --hard origin/$CLIENTBRANCH && git pull
cd $AMPACHEDIR/releases/7/php84 && git fetch origin $RELEASEBRANCH && git checkout -f $RELEASEBRANCH && git reset --hard origin/$RELEASEBRANCH && git pull
cd $AMPACHEDIR/releases/7/php84_squashed && git fetch origin $SQUASHBRANCH && git checkout -f $SQUASHBRANCH && git reset --hard origin/$SQUASHBRANCH && git pull
cd $AMPACHEDIR/releases/7/php84_client && git fetch origin $CLIENTBRANCH && git checkout -f $CLIENTBRANCH && git reset --hard origin/$CLIENTBRANCH && git pull
cd $AMPACHEDIR/releases/7/php85 && git fetch origin $RELEASEBRANCH && git checkout -f $RELEASEBRANCH && git reset --hard origin/$RELEASEBRANCH && git pull
cd $AMPACHEDIR/releases/7/php85_squashed && git fetch origin $SQUASHBRANCH && git checkout -f $SQUASHBRANCH && git reset --hard origin/$SQUASHBRANCH && git pull
cd $AMPACHEDIR/releases/7/php85_client && git fetch origin $CLIENTBRANCH && git checkout -f $CLIENTBRANCH && git reset --hard origin/$CLIENTBRANCH && git pull
# GENERIC (No composer packages installed)
cd $AMPACHEDIR/releases/7/generic
rm -rf vendor/* public/lib/components/*
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/releases/7/generic_squashed
rm -rf vendor/* ./lib/components/* ./docker/
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/releases/7/generic_client
rm -rf vendor/* public/client/lib/components/*
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
# php 8.2
cd $AMPACHEDIR/releases/7/php82
rm -rf vendor/* public/lib/components/*
php8.2 $COMPOSERPATH install || exit 1
npm install || exit 1
npm run build || exit 1
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/releases/7/php82_squashed
rm -rf vendor/* ./lib/components/* ./docker/
php8.2 $COMPOSERPATH install || exit 1
npm install || exit 1
npm run build || exit 1
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/releases/7/php82_client
rm -rf vendor/* public/client/lib/components/*
php8.2 $COMPOSERPATH install || exit 1
npm install || exit 1
npm run build || exit 1
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
# php 8.3
cd $AMPACHEDIR/releases/7/php83
rm -rf vendor/* public/lib/components/*
php8.3 $COMPOSERPATH install || exit 1
npm install || exit 1
npm run build || exit 1
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/releases/7/php83_squashed
rm -rf vendor/* ./lib/components/* ./docker/
php8.3 $COMPOSERPATH install || exit 1
npm install || exit 1
npm run build || exit 1
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/releases/7/php83_client
rm -rf vendor/* public/client/lib/components/*
php8.3 $COMPOSERPATH install || exit 1
npm install || exit 1
npm run build || exit 1
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
# php 8.4
sed -i 's/"scn\/phptal": "\^4"/"scn\/phptal": "dev-master"/g' $AMPACHEDIR/releases/7/php84/composer.json
cd $AMPACHEDIR/releases/7/php84
rm -rf vendor/* public/lib/components/*
php8.4 $COMPOSERPATH update
php8.4 $COMPOSERPATH install || exit 1
npm install || exit 1
npm run build || exit 1
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
sed -i 's/"scn\/phptal": "\^4"/"scn\/phptal": "dev-master"/g' $AMPACHEDIR/releases/7/php84_squashed/composer.json
cd $AMPACHEDIR/releases/7/php84_squashed
rm -rf vendor/* ./lib/components/* ./docker/
php8.4 $COMPOSERPATH update
php8.4 $COMPOSERPATH install || exit 1
npm install || exit 1
npm run build || exit 1
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
sed -i 's/"scn\/phptal": "\^4"/"scn\/phptal": "dev-master"/g' $AMPACHEDIR/releases/7/php84_client/composer.json
cd $AMPACHEDIR/releases/7/php84_client
rm -rf vendor/* public/client/lib/components/*
php8.4 $COMPOSERPATH update
php8.4 $COMPOSERPATH install || exit 1
npm install || exit 1
npm run build || exit 1
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
# php 8.5
sed -i 's/"scn\/phptal": "\^4"/"scn\/phptal": "dev-master"/g' $AMPACHEDIR/releases/7/php85/composer.json
cd $AMPACHEDIR/releases/7/php85
rm -rf vendor/* public/lib/components/*
php8.5 $COMPOSERPATH update
php8.5 $COMPOSERPATH install || exit 1
npm install || exit 1
npm run build || exit 1
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
sed -i 's/"scn\/phptal": "\^4"/"scn\/phptal": "dev-master"/g' $AMPACHEDIR/releases/7/php85_squashed/composer.json
cd $AMPACHEDIR/releases/7/php85_squashed
rm -rf vendor/* ./lib/components/* ./docker/
php8.5 $COMPOSERPATH update
php8.5 $COMPOSERPATH install || exit 1
npm install || exit 1
npm run build || exit 1
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
sed -i 's/"scn\/phptal": "\^4"/"scn\/phptal": "dev-master"/g' $AMPACHEDIR/releases/7/php85_client/composer.json
cd $AMPACHEDIR/releases/7/php85_client
rm -rf vendor/* public/client/lib/components/*
php8.5 $COMPOSERPATH update
php8.5 $COMPOSERPATH install || exit 1
npm install || exit 1
npm run build || exit 1
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
# remove possible old release files before building the new one
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_public.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_public.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_squashed.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_squashed.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_client.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_client.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2_squashed.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2_squashed.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2_client.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2_client.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3_squashed.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3_squashed.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3_client.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3_client.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.4.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.4.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.4_squashed.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.4_squashed.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.4_client.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.4_client.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.5.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.5.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.5_squashed.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.5_squashed.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.5_client.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.5_client.zip
fi
# Build Releases
## GENERIC
cd $AMPACHEDIR/releases/7/generic && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../../ampache-${RELEASEVERSION}_public.zip ./
cd $AMPACHEDIR/releases/7/generic_squashed && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./rest/.htaccess --exclude=./play/.htaccess --exclude=./channel/.htaccess ./../../ampache-${RELEASEVERSION}_squashed.zip ./ ./
cd $AMPACHEDIR/releases/7/generic_client && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../../ampache-${RELEASEVERSION}_client.zip ./
## php 8.2
cd $AMPACHEDIR/releases/7/php82 && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../..//ampache-${RELEASEVERSION}_all_php8.2.zip ./
cd $AMPACHEDIR/releases/7/php82_squashed && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./rest/.htaccess --exclude=./play/.htaccess --exclude=./channel/.htaccess ./../../ampache-${RELEASEVERSION}_all_php8.2_squashed.zip ./
cd $AMPACHEDIR/releases/7/php82_client && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../..//ampache-${RELEASEVERSION}_all_php8.2_client.zip ./
## php 8.3
cd $AMPACHEDIR/releases/7/php83 && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../..//ampache-${RELEASEVERSION}_all_php8.3.zip ./
cd $AMPACHEDIR/releases/7/php83_squashed && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./rest/.htaccess --exclude=./play/.htaccess --exclude=./channel/.htaccess ./../../ampache-${RELEASEVERSION}_all_php8.3_squashed.zip ./
cd $AMPACHEDIR/releases/7/php83_client && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../..//ampache-${RELEASEVERSION}_all_php8.3_client.zip ./
## php 8.4
cd $AMPACHEDIR/releases/7/php84 && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../..//ampache-${RELEASEVERSION}_all_php8.4.zip ./
cd $AMPACHEDIR/releases/7/php84_squashed && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./rest/.htaccess --exclude=./play/.htaccess --exclude=./channel/.htaccess ./../../ampache-${RELEASEVERSION}_all_php8.4_squashed.zip ./
cd $AMPACHEDIR/releases/7/php84_client && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../..//ampache-${RELEASEVERSION}_all_php8.4_client.zip ./
## php 8.5
cd $AMPACHEDIR/releases/7/php85 && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../..//ampache-${RELEASEVERSION}_all_php8.5.zip ./
cd $AMPACHEDIR/releases/7/php85_squashed && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./rest/.htaccess --exclude=./play/.htaccess --exclude=./channel/.htaccess ./../../ampache-${RELEASEVERSION}_all_php8.5_squashed.zip ./
cd $AMPACHEDIR/releases/7/php85_client && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../..//ampache-${RELEASEVERSION}_all_php8.5_client.zip ./
# go back
cd $AMPACHEDIR
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_public.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_public.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_squashed.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_squashed.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_client.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_client.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2_squashed.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2_squashed.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2_client.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2_client.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3_squashed.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3_squashed.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3_client.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3_client.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.4.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.4.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.4_squashed.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.4_squashed.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.4_client.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.4_client.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.5.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.5.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.5_squashed.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.5_squashed.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.5_client.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.5_client.zip
fi
cd $AMPACHEDIR/releases
# echo the version checksum
echo
echo "# ${RELEASEVERSION}"
echo
echo "php8.5"
md5sum ./ampache-${RELEASEVERSION}_all_php8.5.zip
md5sum ./ampache-${RELEASEVERSION}_all_php8.5_squashed.zip
md5sum ./ampache-${RELEASEVERSION}_all_php8.5_client.zip
echo
echo "php8.4"
md5sum ./ampache-${RELEASEVERSION}_all_php8.4.zip
md5sum ./ampache-${RELEASEVERSION}_all_php8.4_squashed.zip
md5sum ./ampache-${RELEASEVERSION}_all_php8.4_client.zip
echo
echo "php8.3"
md5sum ./ampache-${RELEASEVERSION}_all_php8.3.zip
md5sum ./ampache-${RELEASEVERSION}_all_php8.3_squashed.zip
md5sum ./ampache-${RELEASEVERSION}_all_php8.3_client.zip
echo
echo "php8.2"
md5sum ./ampache-${RELEASEVERSION}_all_php8.2.zip
md5sum ./ampache-${RELEASEVERSION}_all_php8.2_squashed.zip
md5sum ./ampache-${RELEASEVERSION}_all_php8.2_client.zip
echo
echo "**UNSUPPORTED** Code only release. (Requires composer and npm install)"
md5sum ./ampache-${RELEASEVERSION}_public.zip
md5sum ./ampache-${RELEASEVERSION}_squashed.zip
md5sum ./ampache-${RELEASEVERSION}_client.zip
echo
echo "## Zip Version information"
echo
echo "If you aren't familiar which the project make sure you know [which zip](https://ampache.org/docs/information/which-zip) you need to download."
echo
# go home
cd $AMPACHEDIR