-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathdb-update
More file actions
executable file
·131 lines (121 loc) · 4.12 KB
/
db-update
File metadata and controls
executable file
·131 lines (121 loc) · 4.12 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
#!/bin/bash
. "$(dirname "$(readlink -e "$0")")/config"
. "$(dirname "$(readlink -e "$0")")/db-functions"
if (( $# >= 1 )); then
warning "Calling %s with a specific repository is no longer supported" "${0##*/}"
exit 1
fi
# Find repos with packages to release
mapfile -t -d '' staging_repos < <(
for f in "${STAGING}"/**/*${PKGEXTS}; do
printf '%s\0' "${f%/*}"
done | sort -uz
)
repos=()
for staging_repo in "${staging_repos[@]##*/}"; do
if in_array "${staging_repo}" "${PKGREPOS[@]}"; then
repos+=("${staging_repo}")
fi
done
# TODO: this might lock too much (architectures)
for repo in "${repos[@]}"; do
for pkgarch in "${ARCHES[@]}"; do
repo_lock "${repo}" "${pkgarch}" || exit 1
done
done
# check if packages are valid
for repo in "${repos[@]}"; do
if ! check_repo_permission "${repo}"; then
die "You don't have permission to update packages in %s" "$repo"
fi
pkgs=($(getpkgfiles "${STAGING}/${repo}/"*${PKGEXTS}))
if (( $? == 0 )); then
for pkg in "${pkgs[@]}"; do
if [[ -h ${pkg} ]]; then
die "Package %s is a symbolic link" "$repo/${pkg##*/}"
fi
if ! check_pkgfile "${pkg}"; then
die "Package %s is not consistent with its meta data" "$repo/${pkg##*/}"
fi
if ! pacman-key -v "${pkg}.sig" >/dev/null 2>&1; then
die "Package %s does not have a valid signature" "$repo/${pkg##*/}"
fi
if ! check_pkgvcs "${pkg}" "${repo}"; then
die "Package %s is not consistent with %s repository" "$repo/${pkg##*/}" "${VCS}"
fi
if ! check_pkgrepos "${pkg}"; then
die "Package %s already exists in another repository" "$repo/${pkg##*/}"
fi
if ! missing_repo="$(check_stagingrepos "${pkg}" "${repo}")"; then
die "Package %s in %s needs to be updated in unstable repos as well: %s" "${pkg}" "${repo}" "${missing_repo}"
fi
if ! check_packager "${pkg}"; then
die "Package %s does not have a valid packager" "$repo/${pkg##*/}"
fi
if ! check_buildinfo "${pkg}"; then
die "Package %s does not have a .BUILDINFO file" "$repo/${pkg##*/}"
fi
if ! check_builddir "${pkg}"; then
die "Package %s was not built in a chroot" "$repo/${pkg##*/}"
fi
if ! check_reproducible "${pkg}"; then
error "Package %s is not reproducible." "${pkg}"
die "Ensure that all dependencies are available in the repositories or are added in the same db-update."
fi
done
if ! check_splitpkgs "${repo}" "${pkgs[@]}"; then
die "Missing split packages for %s" "$repo"
fi
else
die "Could not read %s" "$STAGING"
fi
done
for repo in "${repos[@]}"; do
msg "Updating [%s]..." "$repo"
any_pkgs=($(getpkgfiles "${STAGING}/${repo}/"*-any${PKGEXTS} 2>/dev/null))
for pkgarch in "${ARCHES[@]}"; do
add_pkgs=()
debug_pkgs=()
arch_pkgs=($(getpkgfiles "${STAGING}/${repo}/"*"-${pkgarch}"${PKGEXTS} 2>/dev/null))
for pkg in "${arch_pkgs[@]}" "${any_pkgs[@]}"; do
pkgfile="${pkg##*/}"
if is_debug_package "${pkg}"; then
debug_pkgs+=("${pkgfile}")
currentpool=${PKGPOOL}-debug
currentrepo=${repo}-debug
else
add_pkgs+=("${pkgfile}")
currentpool=${PKGPOOL}
currentrepo=${repo}
fi
msg2 '%s (%s)' "$pkgfile" "$pkgarch"
# any packages might have been moved by the previous run
if [[ -f ${pkg} ]]; then
mv "${pkg}" "$FTP_BASE/${currentpool}"
fi
ln -sf "../../../${currentpool}/${pkgfile}" "$FTP_BASE/${currentrepo}/os/${pkgarch}"
# also move signatures
if [[ -f ${pkg}.sig ]]; then
mv "${pkg}.sig" "$FTP_BASE/${currentpool}"
fi
if [[ ${PKGPOOL} = ${currentpool} ]]; then
# do not archive debug info, this is not of historic interest
"$(dirname "$(readlink -e "${BASH_SOURCE[0]}")")/db-archive" "${FTP_BASE}/${PKGPOOL}/${pkg##*/}"
fi
if [[ -f $FTP_BASE/${currentpool}/${pkgfile}.sig ]]; then
ln -sf "../../../${currentpool}/${pkgfile}.sig" "$FTP_BASE/${currentrepo}/os/${pkgarch}"
fi
done
if (( ${#add_pkgs[@]} >= 1 )); then
arch_repo_modify add "${repo}" "${pkgarch}" "${add_pkgs[@]}"
fi
if (( ${#debug_pkgs[@]} >= 1 )); then
arch_repo_modify add "${repo}-debug" "${pkgarch}" "${debug_pkgs[@]}"
fi
done
done
for repo in "${repos[@]}"; do
for pkgarch in "${ARCHES[@]}"; do
repo_unlock "${repo}" "${pkgarch}"
done
done