blob: 25565aeda44ac07f2e2c35de1a0490ee89920a09 (
plain)
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
|
#!/bin/bash
# set -x # uncomment for debug
# Builds packages from ABS recursively. It tries to find dependencies that
# aren't built or need update and then makepkg them in order.
# TODO: fullpkg-find should find packages wich depend on the
# package to be build, so we can avoid "missing $name.so errors"
# Get repo name. Asumes ${ABSROOT}/repo/package/PKGBUILD
guess_repo() {
basename $(dirname $(pwd))
}
# return : full version spec, including epoch (if necessary), pkgver, pkgrel
# usage : get_fullver( ${epoch:-0}, $pkgver, $pkgrel )
get_fullver() {
if [[ $1 -eq 0 ]]; then
# zero epoch case, don't include it in version
echo $2-$3
else
echo $1:$2-$3
fi
}
# Checks ABSROOT and look for target pkg deps. Adds them if not built or outdated.
find_deps() {
# Check this level
source PKGBUILD
local repo="${repo:-$(guess_repo)}"
local pkgbase="${pkgbase:-${pkgname[0]}}"
local fullver="$(get_fullver ${epoch:-0} ${pkgver} ${pkgrel})"
if ! pkgbuild-check-nonfree > /dev/null 2> /dev/null; then
if [ "$?" -eq 15 ]; then
error "pkgbase" has nonfree issues
return 15
fi
fi
if is_built "${pkgbase}>=${fullver}"; then
exit 0 # pkg is built and updated
fi
# greater levels are built first
echo "${LEVEL}:${pkgbase}" >>"$build_dir/BUILDORDER"
# PKGBUILD is already there
if [ -d "${build_dir}/${pkgbase}" ]; then
exit 0
# Copy dir to build_dir
else
cp -r ../${pkgbase}/ ${build_dir}/
# to identify repo later
echo "repo=$repo" > "${build_dir}/${pkgbase}/.INFO"
fi
# current package plus a space for every level
msg2 "%${LEVEL}s${pkgbase}-${fullver}"
## Check next levels
declare -i next_level=$LEVEL+1
# All deps in separate line, only once, without version.
deps=($(echo "${depends[@]} ${makedepends[@]}" | \
sed "s/[=<>]\+[^ ]\+//g" | \
tr ' ' "\n" | \
sort -u))
for _dep in ${deps[@]}; do
local found=false
local pkgdir=$(toru -p ${_dep})
if [ -n "$pkgdir" -a -d "${pkgdir}" ]; then
found=true
pushd "${pkgdir}" > /dev/null
# runs itself on dep's PKGBUILD dir
$0 -l ${next_level} ${build_dir}
# probable circular deps
[ $? -eq 20 ] && return 20
popd > /dev/null
fi
if ! (( found )); then
echo "dep_not_found:$_dep" >>$build_dir/log
fi
done
## End variable block
unset next_level dir
}
source /etc/libretools.conf
if [ -e $XDG_CONFIG_HOME/libretools/libretools.conf ]; then
source $XDG_CONFIG_HOME/libretools/libretools.conf
fi
LEVEL=0
MAXLEVEL=20
CLEANFIRST='false'
UPDATEDB='true'
usage() {
echo ""
echo "cd to a dir containing a PKGBUILD and run:"
echo "$(basename $0) [options] <build_dir>"
echo ""
echo "This script will create a build_dir for recursive building"
echo "it tries to find dependencies that aren't built or need update."
echo ""
echo "If no <build_dir> is specified, the script works on a tempdir"
echo ""
echo "OPTIONS:"
echo " -h : this message."
# echo " -A <absroot> : use this ABSROOT." # Is it needed anymore?
echo " -c : clean <build_dir> before working."
echo " -m <max_level> : check deps until this level"
echo " -n : don't update pacman db."
echo ""
exit 1
}
while getopts 'hA:l:cmn' arg; do
case "$arg" in
h) usage ;;
# A) ABSROOT="$OPTARG" ;;
l) LEVEL="$OPTARG" ;; # hidden option to know dep level.
c) CLEANFIRST='true' ;;
m) MAXLEVEL="$OPTARG" ;;
n) UPDATEDB='false' ;;
esac
done
if [ ! -r PKGBUILD ]; then
error "This directory doesnt contain a PKGBUILD"
usage
fi
shift $(( OPTIND - 1 ))
build_dir="${1}"
if [ "$LEVEL" -eq 0 ]; then
build_dir="${1:-$(mktemp -d /tmp/fullpkg.XXXXXX)}"
if [ ! -d "$build_dir" ]; then
mkdir -p "$build_dir"
elif "$CLEANFIRST"; then
# Erase files already in dir
msg "Cleaning up files in dir"
find "$build_dir" -mindepth 1 -delete
fi
if "$UPDATEDB"; then
msg "Updating pacman db"
sudo pacman -Sy --noconfirm || true
fi
# make files for log and buildorder
touch "${build_dir}"/{log,BUILDORDER}
buildorder="${build_dir}/BUILDORDER"
msg "Checking dependencies"
fi
# Probable circular deps
[ "$LEVEL" -gt "$MAXLEVEL" ] && exit 20
# Find the dependencies on the ABS itself
find_deps || {
# Probable circular deps
if [ "$?" -eq 20 ]; then
# Show error only on level 0
if [ "$LEVEL" -eq 0 ]; then
error "Check for circular deps on $build_dir/BUILDORDER";
fi
fi
# Pass message 20
exit 20
}
exit 0
|