-
Notifications
You must be signed in to change notification settings - Fork 1
/
staging-build.sh
executable file
·76 lines (64 loc) · 2.42 KB
/
staging-build.sh
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
#!/bin/bash
#
# Script to start a builds for Wine staging version.
#
# Copyright (C) 2015 Sebastian Lackner
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
#
set -eux
VERSION="1.9.16"
RELEASE=""
mkdir -p "repository/raw/macosx-wine-staging"
repo_path="repository/raw/macosx-wine-staging/$VERSION$RELEASE-x86"
[ -d "$repo_path" ] && rmdir --ignore-fail-on-non-empty "$repo_path"
if mkdir "$repo_path"; then
./server/build.py --machine "debian-stretch-x64" \
--dependencies "repository/raw/macosx-toolchain-2.0.0/deps" \
"temp/macosx-wine-staging" "$repo_path"
fi
for codename in stretch wheezy jessie sid; do
mkdir -p "repository/raw/debian-$codename-staging"
for arch in x86 x64; do
repo_path="repository/raw/debian-$codename-staging/$VERSION$RELEASE-$arch"
[ -d "$repo_path" ] && rmdir --ignore-fail-on-non-empty "$repo_path"
if mkdir "$repo_path"; then
./server/build.py --machine "debian-$codename-$arch" \
"temp/debian-$codename-staging" "$repo_path"
fi
done
done
for codename in 5 4; do
mkdir -p "repository/raw/mageia-$codename-staging"
for arch in x86 x64; do
repo_path="repository/raw/mageia-$codename-staging/$VERSION$RELEASE-$arch"
[ -d "$repo_path" ] && rmdir --ignore-fail-on-non-empty "$repo_path"
if mkdir "$repo_path"; then
./server/build.py --machine "mageia$codename-$arch" \
"temp/mageia-any-staging" "$repo_path"
fi
done
done
for codename in 22 23 24; do
mkdir -p "repository/raw/fedora-$codename-staging"
for arch in x86 x64; do
repo_path="repository/raw/fedora-$codename-staging/$VERSION$RELEASE-$arch"
[ -d "$repo_path" ] && rmdir --ignore-fail-on-non-empty "$repo_path"
if mkdir "$repo_path"; then
./server/build.py --machine "fedora-$codename-$arch" \
"temp/fedora-any-staging" "$repo_path"
fi
done
done