rev |
line source |
pankso@1
|
1 #!/bin/sh
|
pankso@1
|
2 #
|
pankso@1
|
3 # Cook - A tool to cook and generate SliTaz packages. Read the README
|
paul@647
|
4 # before adding or modifying any code in cook!
|
pankso@1
|
5 #
|
pankso@1
|
6 # Copyright (C) SliTaz GNU/Linux - GNU gpl v3
|
pankso@1
|
7 # Author: Christophe Lincoln <pankso@slitaz.org>
|
pankso@1
|
8 #
|
pankso@422
|
9 . /usr/lib/slitaz/libcook.sh
|
pankso@1
|
10
|
pankso@633
|
11 VERSION="3.2"
|
al@596
|
12
|
al@596
|
13 # Internationalization.
|
al@596
|
14 . /usr/bin/gettext.sh
|
al@596
|
15 TEXTDOMAIN='cook'
|
al@596
|
16 export TEXTDOMAIN
|
al@596
|
17
|
al@596
|
18 _() echo -e "$(eval_gettext "$1")"
|
al@596
|
19 _n() echo -en "$(eval_gettext "$1")"
|
al@596
|
20 # to disable i18n:
|
al@596
|
21 # _() echo -e "$1"
|
al@596
|
22 # _n() echo -en "$1"
|
al@596
|
23
|
al@596
|
24
|
pankso@1
|
25 #
|
pankso@1
|
26 # Functions
|
pankso@1
|
27 #
|
pankso@1
|
28
|
pankso@1
|
29 usage() {
|
pankso@1
|
30 cat << EOT
|
pankso@1
|
31
|
al@596
|
32 $(_ "\033[1mUsage:\033[0m cook [package|command] [list|--option]")
|
pankso@1
|
33
|
al@596
|
34 $(_ "\033[1mCommands:\033[0m")
|
al@596
|
35 usage|help $(_ "Display this short usage.")
|
al@596
|
36 setup $(_ "Setup your build environment.")
|
al@596
|
37 *-setup $(_ "Setup a cross environment.")
|
al@596
|
38 test $(_ "Test environment and cook a package.")
|
al@596
|
39 list-wok $(_ "List packages in the wok.")
|
al@596
|
40 search $(_ "Simple packages search function.")
|
al@596
|
41 new $(_ "Create a new package with a receipt.")
|
al@596
|
42 list $(_ "Cook a list of packages.")
|
al@596
|
43 clean-wok $(_ "Clean-up all packages files.")
|
al@596
|
44 clean-src $(_ "Clean-up all packages sources.")
|
al@596
|
45 pkgdb $(_ "Create packages DB lists and flavors.")
|
pankso@1
|
46
|
al@596
|
47 $(_ "\033[1mOptions:\033[0m")
|
al@596
|
48 --clean|-c Cook : $(_ "clean the package in the wok.")
|
al@596
|
49 --install|-i Cook : $(_ "cook and install the package.")
|
al@596
|
50 --getsrc|-gs Cook : $(_ "get the package source tarball.")
|
al@596
|
51 --block|-b Cook : $(_ "block a package so cook will skip it.")
|
al@596
|
52 --unblock|-ub Cook : $(_ "unblock a blocked package.")
|
al@598
|
53 --cdeps Cook : $(_ "check dependencies of cooked package.")
|
al@596
|
54 --pack Cook : $(_ "repack an already built package.")
|
al@596
|
55 --interactive|-x New : $(_ "create a receipt interactively.")
|
al@596
|
56 --wok Setup: $(_ "clone the cooking wok from Hg repo.")
|
al@596
|
57 --stable Setup: $(_ "clone the stable wok from Hg repo.")
|
al@596
|
58 --undigest Setup: $(_ "clone the undigest wok from Hg repo.")
|
al@596
|
59 --tiny Setup: $(_ "clone the tiny SliTaz wok from Hg repo.")
|
al@596
|
60 --forced Setup: $(_ "force reinstall of chroot packages.")
|
al@596
|
61 --flavors Pkgdb: $(_ "create up-to-date flavors files.")
|
pankso@1
|
62
|
pankso@1
|
63 EOT
|
pankso@1
|
64 exit 0
|
pankso@1
|
65 }
|
pankso@1
|
66
|
paul@62
|
67 # We don't want these escapes in web interface.
|
pankso@1
|
68 clean_log() {
|
pankso@1
|
69 sed -i -e s'|\[70G\[ \[1;32m| |' \
|
pankso@1
|
70 -e s'|\[0;39m \]||' $LOGS/$pkg.log
|
pankso@1
|
71 }
|
pankso@1
|
72
|
paul@62
|
73 # Be sure package exists in wok.
|
pankso@1
|
74 check_pkg_in_wok() {
|
pankso@1
|
75 if [ ! -d "$WOK/$pkg" ]; then
|
al@596
|
76 newline; _ "Unable to find package in the wok: \$pkg"; newline
|
al@596
|
77 exit 1
|
pankso@1
|
78 fi
|
pankso@1
|
79 }
|
pankso@1
|
80
|
pankso@9
|
81 if_empty_value() {
|
pankso@9
|
82 if [ -z "$value" ]; then
|
al@596
|
83 # L10n: QA is quality assurance
|
al@596
|
84 _ "QA: empty variable: \${var}=\"\""; newline
|
pankso@9
|
85 exit 1
|
pankso@9
|
86 fi
|
pankso@9
|
87 }
|
pankso@9
|
88
|
paul@62
|
89 # Initialize files used in $CACHE
|
pankso@52
|
90 init_db_files() {
|
al@596
|
91 _ "Creating directories structure in: \$SLITAZ"
|
xfred222@559
|
92 mkdir -p $WOK $PKGS $SRC $CACHE $LOGS $FEEDS
|
al@596
|
93 _ "Creating DB files in: \$CACHE"
|
pankso@52
|
94 for f in $activity $command $broken $blocked
|
pankso@52
|
95 do
|
pankso@52
|
96 touch $f
|
pankso@52
|
97 done
|
pankso@52
|
98 }
|
pankso@52
|
99
|
paul@62
|
100 # QA: check a receipt consistency before building.
|
pankso@9
|
101 receipt_quality() {
|
al@596
|
102 _ "QA: checking package receipt..."
|
pankso@9
|
103 unset online
|
pankso@9
|
104 if ifconfig | grep -q -A 1 "^[a-z]*[0-9]" | fgrep 'addr:'; then
|
pankso@9
|
105 online="online"
|
pankso@9
|
106 fi
|
pankso@9
|
107 for var in PACKAGE VERSION CATEGORY SHORT_DESC MAINTAINER WEB_SITE
|
pankso@9
|
108 do
|
pankso@9
|
109 unset value
|
pascal@279
|
110 value="$(. $receipt ; eval echo \$$var)"
|
pankso@9
|
111 case "$var" in
|
pankso@9
|
112 PACKAGE|VERSION|SHORT_DESC)
|
pankso@9
|
113 if_empty_value ;;
|
pankso@9
|
114 CATEGORY)
|
pankso@9
|
115 [ -z "$value" ] && value="empty"
|
al@596
|
116 valid="$(echo $PKGS_CATEGORIES)" # avoid newlines
|
pankso@9
|
117 if ! echo "$valid" | grep -q -w "$value"; then
|
al@596
|
118 _ "QA: unknown category: \$value"
|
al@596
|
119 _ "Please, use one of: \$valid" | busybox fold -s
|
al@596
|
120 newline; exit 1
|
pankso@9
|
121 fi ;;
|
pankso@9
|
122 WEB_SITE)
|
paul@62
|
123 # We don't check WGET_URL since if dl is needed it will fail.
|
paul@62
|
124 # Break also if we're not online. Here error is not fatal.
|
pankso@9
|
125 if_empty_value
|
pankso@9
|
126 [ -z "$online" ] || break
|
pankso@199
|
127 if ! busybox wget -T 12 -s $value 2>/dev/null; then
|
al@596
|
128 _ "QA: unable to reach: \$value"
|
pankso@9
|
129 fi ;;
|
pankso@9
|
130 esac
|
pankso@9
|
131 done
|
pankso@9
|
132 }
|
pankso@9
|
133
|
paul@62
|
134 # Paths used in receipt and by cook itself.
|
pankso@1
|
135 set_paths() {
|
pankso@1
|
136 pkgdir=$WOK/$PACKAGE
|
slaxemulator@492
|
137 basesrc=$pkgdir/source
|
slaxemulator@492
|
138 tmpsrc=$basesrc/tmp
|
slaxemulator@492
|
139 src=$basesrc/$PACKAGE-$VERSION
|
pankso@44
|
140 taz=$pkgdir/taz
|
pankso@44
|
141 pack=$taz/$PACKAGE-${VERSION}${EXTRAVERSION}
|
pankso@1
|
142 fs=$pack/fs
|
pankso@1
|
143 stuff=$pkgdir/stuff
|
pankso@1
|
144 install=$pkgdir/install
|
slaxemulator@492
|
145 pkgsrc="${SOURCE:-$PACKAGE}-${KBASEVER:-$VERSION}"
|
slaxemulator@492
|
146 lzma_tarball="$pkgsrc.tar.lzma"
|
slaxemulator@492
|
147 if [ "$PATCH" ]; then
|
slaxemulator@492
|
148 [ "${PTARBALL}" ] || PTARBALL="$(basename $PATCH)"
|
slaxemulator@492
|
149 fi
|
pankso@1
|
150 if [ "$WANTED" ]; then
|
slaxemulator@492
|
151 basesrc=$WOK/$WANTED/source
|
slaxemulator@492
|
152 src=$basesrc/$WANTED-$VERSION
|
slaxemulator@492
|
153 install=$WOK/$WANTED/install
|
slaxemulator@492
|
154 wanted_stuff=$WOK/$WANTED/stuff
|
pankso@1
|
155 fi
|
slaxemulator@456
|
156 if [ "$SOURCE" ]; then
|
slaxemulator@456
|
157 source_stuff=$WOK/$SOURCE/stuff
|
slaxemulator@456
|
158 fi
|
mojo@620
|
159 # Kernel version is set from wok/linux or installed/linux-api-headers(wok-undigest)
|
slaxemulator@492
|
160 if [ -f "$WOK/linux/receipt" ]; then
|
slaxemulator@492
|
161 kvers=$(grep ^VERSION= $WOK/linux/receipt | cut -d '"' -f 2)
|
slaxemulator@492
|
162 kbasevers=${kvers:0:3}
|
mojo@620
|
163 elif [ -f "$INSTALLED/linux-api-headers/receipt" ]; then
|
mojo@620
|
164 kvers=$(grep ^VERSION= $INSTALLED/linux-api-headers/receipt | cut -d '"' -f 2)
|
mojo@620
|
165 kbasevers=${kvers:0:3}
|
mojo@620
|
166 fi
|
slaxemulator@492
|
167 # Python version
|
slaxemulator@492
|
168 if [ -f "$WOK/python/receipt" ]; then
|
slaxemulator@492
|
169 pyvers=$(grep ^VERSION= $WOK/python/receipt | cut -d '"' -f 2)
|
slaxemulator@492
|
170 fi
|
slaxemulator@492
|
171 # perl version for some packages needed it
|
slaxemulator@492
|
172 if [ -f "$WOK/perl/receipt" ]; then
|
slaxemulator@492
|
173 perlvers=$(grep ^VERSION= $WOK/perl/receipt | cut -d '"' -f 2)
|
pankso@232
|
174 fi
|
pankso@9
|
175 # Old way compatibility.
|
pankso@1
|
176 _pkg=$install
|
pankso@1
|
177 }
|
pankso@1
|
178
|
pankso@144
|
179 # Create source tarball when URL is a SCM.
|
pankso@144
|
180 create_tarball() {
|
slaxemulator@498
|
181 local tarball
|
slaxemulator@498
|
182 tarball=$pkgsrc.tar.bz2
|
slaxemulator@498
|
183 [ "$LZMA_SRC" ] && tarball=$lzma_tarball
|
al@596
|
184 _ "Creating tarball: \$tarball"
|
pankso@162
|
185 if [ "$LZMA_SRC" ]; then
|
slaxemulator@498
|
186 tar -c $pkgsrc | lzma e $SRC/$tarball -si $LZMA_SET_DIR || exit 1
|
slaxemulator@498
|
187 LZMA_SRC=""
|
pankso@162
|
188 else
|
pankso@162
|
189 tar cjf $tarball $pkgsrc || exit 1
|
pankso@162
|
190 mv $tarball $SRC && rm -rf $pkgsrc
|
pankso@162
|
191 fi
|
slaxemulator@498
|
192 TARBALL=$tarball
|
pankso@144
|
193 }
|
pankso@144
|
194
|
pankso@145
|
195 # Get package source. For SCM we are in cache so clone here and create a
|
pankso@145
|
196 # tarball here.
|
pankso@1
|
197 get_source() {
|
pascal@610
|
198 local url
|
pascal@610
|
199 url="$MIRROR_URL/sources/packages/${TARBALL:0:1}/$TARBALL"
|
ernia@571
|
200 set_paths
|
pankso@115
|
201 pwd=$(pwd)
|
pankso@9
|
202 case "$WGET_URL" in
|
pankso@145
|
203 http://*|ftp://*)
|
pankso@9
|
204 # Busybox Wget is better!
|
pascal@268
|
205 busybox wget -T 60 -c -O $SRC/$TARBALL $WGET_URL || \
|
pascal@610
|
206 busybox wget -T 60 -c -O $SRC/$TARBALL $url || \
|
al@596
|
207 (_ "ERROR: wget \$WGET_URL" && exit 1) ;;
|
pankso@145
|
208 https://*)
|
pankso@250
|
209 wget -c --no-check-certificate -O $SRC/$TARBALL $WGET_URL || \
|
pascal@610
|
210 busybox wget -T 60 -c -O $SRC/$TARBALL $url || \
|
al@596
|
211 (_ "ERROR: wget \$WGET_URL" && exit 1) ;;
|
pankso@9
|
212 hg*|mercurial*)
|
pankso@29
|
213 if $(echo "$WGET_URL" | fgrep -q "hg|"); then
|
pankso@9
|
214 url=${WGET_URL#hg|}
|
pankso@9
|
215 else
|
pankso@9
|
216 url=${WGET_URL#mercurial|}
|
pankso@9
|
217 fi
|
al@596
|
218 _ "Getting source from Hg..."
|
al@596
|
219 _ "URL: \$url"
|
al@596
|
220 _ "Cloning to: \$pwd/\$pkgsrc"
|
pankso@246
|
221 if [ "$BRANCH" ]; then
|
al@596
|
222 _ "Hg branch: \$BRANCH"
|
pankso@246
|
223 hg clone $url --rev $BRANCH $pkgsrc || \
|
al@596
|
224 (_ "ERROR: hg clone \$url --rev \$BRANCH" && exit 1)
|
pankso@246
|
225 else
|
al@596
|
226 hg clone $url $pkgsrc || (_ "ERROR: hg clone \$url" && exit 1)
|
pankso@246
|
227 fi
|
pankso@255
|
228 rm -rf $pkgsrc/.hg
|
pankso@144
|
229 create_tarball ;;
|
pankso@9
|
230 git*)
|
pankso@61
|
231 url=${WGET_URL#git|}
|
al@596
|
232 _ "Getting source from Git..."
|
al@596
|
233 _ "URL: \$url"
|
al@596
|
234 git clone $url $pkgsrc || (_ "ERROR: git clone \$url" && exit 1)
|
pankso@63
|
235 if [ "$BRANCH" ]; then
|
al@596
|
236 _ "Git branch: \$BRANCH"
|
pankso@358
|
237 cd $pkgsrc && git checkout $BRANCH && cd ..
|
pankso@63
|
238 fi
|
pankso@144
|
239 create_tarball ;;
|
pankso@144
|
240 cvs*)
|
pankso@144
|
241 url=${WGET_URL#cvs|}
|
pankso@144
|
242 mod=$PACKAGE
|
pankso@144
|
243 [ "$CVS_MODULE" ] && mod=$CVS_MODULE
|
al@596
|
244 _ "Getting source from CVS..."
|
al@596
|
245 _ "URL: \$url"
|
al@596
|
246 [ "$CVS_MODULE" ] && _ "CVS module: \$mod"
|
al@596
|
247 _ "Cloning to: \$pwd/\$mod"
|
pankso@144
|
248 cvs -d:$url co $mod && mv $mod $pkgsrc
|
pankso@144
|
249 create_tarball ;;
|
pankso@69
|
250 svn*|subversion*)
|
pankso@159
|
251 if $(echo "$WGET_URL" | fgrep -q "svn|"); then
|
pankso@146
|
252 url=${WGET_URL#svn|}
|
pankso@146
|
253 else
|
pankso@146
|
254 url=${WGET_URL#subversion|}
|
pankso@146
|
255 fi
|
al@596
|
256 _ "Getting source from SVN..."
|
al@596
|
257 _ "URL: \$url"
|
pankso@161
|
258 if [ "$BRANCH" ]; then
|
pankso@161
|
259 echo t | svn co $url -r $BRANCH $pkgsrc
|
pankso@161
|
260 else
|
pankso@161
|
261 echo t | svn co $url $pkgsrc
|
pankso@161
|
262 fi
|
pankso@146
|
263 create_tarball ;;
|
al@590
|
264 bzr*)
|
al@590
|
265 url=${WGET_URL#bzr|}
|
al@596
|
266 _ "Getting source from bazaar..."
|
al@590
|
267 cd $SRC
|
al@590
|
268 pkgsrc=${url#*:}
|
al@590
|
269 if [ "$BRANCH" ]; then
|
al@590
|
270 echo "bzr -Ossl.cert_reqs=none branch $url -r $BRANCH"
|
al@590
|
271 bzr -Ossl.cert_reqs=none branch $url -r $BRANCH
|
al@590
|
272 else
|
al@590
|
273 echo "bzr -Ossl.cert_reqs=none branch $url"
|
al@590
|
274 bzr -Ossl.cert_reqs=none branch $url
|
al@590
|
275 cd $pkgsrc && BRANCH=$(bzr revno) && cd ..
|
al@596
|
276 _ "Don't forget to add to receipt:"
|
al@596
|
277 echo 'BRANCH="'$BRANCH'"'; newline
|
al@590
|
278 fi
|
al@590
|
279 mv $pkgsrc $pkgsrc-$BRANCH
|
al@590
|
280 pkgsrc=$pkgsrc-$BRANCH
|
al@590
|
281 create_tarball ;;
|
pankso@9
|
282 *)
|
al@596
|
283 (newline; _ "ERROR: Unable to handle: \$WGET_URL"; newline) | \
|
pankso@9
|
284 tee -a $LOGS/$PACKAGE.log
|
pankso@9
|
285 exit 1 ;;
|
pankso@9
|
286 esac
|
pankso@1
|
287 }
|
pankso@1
|
288
|
pankso@9
|
289 # Extract source package.
|
pankso@1
|
290 extract_source() {
|
pankso@177
|
291 if [ ! -s "$SRC/$TARBALL" ]; then
|
pankso@177
|
292 local url
|
slaxemulator@458
|
293 url="$MIRROR_URL/sources/packages"
|
pankso@177
|
294 url=$url/${TARBALL:0:1}/$TARBALL
|
al@596
|
295 _ "Getting source from mirror: \$url"
|
al@596
|
296 busybox wget -c -P $SRC $url || _ "ERROR: wget \$url"
|
pankso@177
|
297 fi
|
al@596
|
298 _ "Extracting: \$TARBALL"
|
pankso@1
|
299 case "$TARBALL" in
|
pankso@120
|
300 *.tar.gz|*.tgz) tar xzf $SRC/$TARBALL 2>/dev/null ;;
|
pankso@178
|
301 *.tar.bz2|*.tbz|*.tbz2) tar xjf $SRC/$TARBALL 2>/dev/null ;;
|
pankso@1
|
302 *.tar.lzma) tar xaf $SRC/$TARBALL ;;
|
pankso@42
|
303 *.tar) tar xf $SRC/$TARBALL ;;
|
pankso@42
|
304 *.zip|*.xpi) unzip -o $SRC/$TARBALL ;;
|
pascal@597
|
305 *.xz) unxz -c $SRC/$TARBALL | tar xf - || tar xf $SRC/$TARBALL 2>/dev/null;;
|
pankso@42
|
306 *.Z) uncompress -c $SRC/$TARBALL | tar xf - ;;
|
pankso@42
|
307 *.rpm) rpm2cpio $SRC/$TARBALL | cpio -idm --quiet ;;
|
pankso@238
|
308 *.run) /bin/sh $SRC/$TARBALL $RUN_OPTS ;;
|
pankso@191
|
309 *) cp $SRC/$TARBALL $(pwd) ;;
|
pankso@1
|
310 esac
|
pankso@1
|
311 }
|
pankso@1
|
312
|
pankso@9
|
313 # Display cooked package summary.
|
pankso@1
|
314 summary() {
|
pankso@1
|
315 cd $WOK/$pkg
|
slaxemulator@499
|
316 [ -d $WOK/$pkg/install ] && prod=$(du -sh $WOK/$pkg/install | awk '{print $1}' 2>/dev/null)
|
slaxemulator@499
|
317 [ -d $WOK/$pkg/source ] && srcdir=$(du -sh $WOK/$pkg/source | awk '{print $1}' 2>/dev/null)
|
slaxemulator@499
|
318 fs=$(du -sh $WOK/$pkg/taz/* | awk '{print $1}')
|
pankso@44
|
319 size=$(du -sh $PKGS/$pkg-${VERSION}*.tazpkg | awk '{print $1}')
|
slaxemulator@499
|
320 files=$(cat $WOK/$pkg/taz/$pkg-*/files.list | wc -l)
|
slaxemulator@499
|
321 [ "$TARBALL" ] && srcsize=$(du -sh $SRC/$TARBALL | awk '{print $1}')
|
al@596
|
322 cookdate=$(date "$(_ '+%Y-%m-%d %H:%M')")
|
pankso@101
|
323 sec=$time
|
pascal@280
|
324 div=$(( ($time + 30) / 60))
|
al@596
|
325 # L10n: 'm' is for minutes (approximate cooking time)
|
al@596
|
326 min=$(_n "~ \${div}m"); [ "$div" = 0 ] && min=""
|
al@596
|
327 _ "Summary for: \$PACKAGE \$VERSION"
|
pankso@1
|
328 separator
|
al@596
|
329 # L10n: keep the same width of translations to get a consistent view
|
al@596
|
330 [ "$srcdir" ] && _ "Source dir : \$srcdir"
|
al@596
|
331 [ "$TARBALL" ] && _ "Src file : \$TARBALL"
|
al@596
|
332 [ "$srcsize" ] && _ "Src size : \$srcsize"
|
al@596
|
333 [ "$prod" ] && _ "Produced : \$prod"
|
al@596
|
334 _ "Packed : \$fs"
|
al@596
|
335 _ "Compressed : \$size"
|
al@596
|
336 _ "Files : \$files"
|
al@596
|
337 # L10n: 's' is for seconds (cooking time)
|
al@596
|
338 _ "Cook time : \${sec}s \$min"
|
al@596
|
339 _ "Cook date : \$cookdate"
|
al@596
|
340 _ "Host arch : \$ARCH"
|
al@596
|
341 separator
|
pankso@1
|
342 }
|
pankso@1
|
343
|
paul@62
|
344 # Display debugging error info.
|
pankso@15
|
345 debug_info() {
|
al@596
|
346 newline; _ "Debug information"; separator
|
al@596
|
347 # L10n: specify your format of date and time (to help: man date)
|
al@596
|
348 # L10n: not bad one is '+%x %R'
|
al@596
|
349 datenow=$(date "$(_ '+%Y-%m-%d %H:%M')")
|
al@596
|
350 _ "Cook date: \$datenow"
|
al@596
|
351 # L10n: Please, translate all messages beginning with ERROR in a same way
|
al@596
|
352 lerror=$(_n "ERROR")
|
pankso@76
|
353 for error in \
|
pascal@617
|
354 ERROR $lerror "No package" "cp: can't" "can't open" "can't cd" \
|
pascal@473
|
355 "error:" "fatal error:" "undefined reference to" \
|
pascal@508
|
356 "Unable to connect to" "link: cannot find the library" \
|
pascal@615
|
357 "CMake Error" ": No such file or directory"
|
pankso@34
|
358 do
|
pankso@34
|
359 fgrep "$error" $LOGS/$pkg.log
|
pascal@625
|
360 done > $LOGS/$pkg.log.debug_info 2>&1
|
pascal@625
|
361 cat $LOGS/$pkg.log.debug_info
|
pascal@625
|
362 rm -f $LOGS/$pkg.log.debug_info
|
al@596
|
363 separator; newline
|
pankso@15
|
364 }
|
pankso@15
|
365
|
pankso@1
|
366 # Copy all generic files (locale, pixmaps, .desktop). We use standard paths,
|
pankso@1
|
367 # so some packages need to copy these files with the receipt and genpkg_rules.
|
slaxemulator@500
|
368 copy_generic_files()
|
slaxemulator@500
|
369 {
|
pankso@1
|
370 # $LOCALE is set in cook.conf
|
slaxemulator@500
|
371 if [ "$LOCALE" -a "$WANTED" = "" ]; then
|
pankso@260
|
372 if [ -d "$install/usr/share/locale" ]; then
|
pankso@1
|
373 mkdir -p $fs/usr/share/locale
|
pankso@1
|
374 for i in $LOCALE
|
pankso@1
|
375 do
|
pankso@260
|
376 if [ -d "$install/usr/share/locale/$i" ]; then
|
pankso@260
|
377 cp -a $install/usr/share/locale/$i $fs/usr/share/locale
|
pankso@1
|
378 fi
|
pankso@1
|
379 done
|
pankso@1
|
380 fi
|
pankso@1
|
381 fi
|
pankso@1
|
382
|
pankso@1
|
383 # Generic pixmaps copy can be disabled with GENERIC_PIXMAPS="no"
|
pankso@1
|
384 if [ "$GENERIC_PIXMAPS" != "no" ]; then
|
pankso@260
|
385 if [ -d "$install/usr/share/pixmaps" ]; then
|
pankso@1
|
386 mkdir -p $fs/usr/share/pixmaps
|
slaxemulator@500
|
387 if [ -f "$install/usr/share/pixmaps/$PACKAGE.png" ]; then
|
slaxemulator@500
|
388 cp -a $install/usr/share/pixmaps/$PACKAGE.png \
|
slaxemulator@500
|
389 $fs/usr/share/pixmaps
|
slaxemulator@500
|
390 elif [ -f "$install/usr/share/pixmaps/$PACKAGE.xpm" ]; then
|
slaxemulator@500
|
391 cp -a $install/usr/share/pixmaps/$PACKAGE.xpm \
|
slaxemulator@500
|
392 $fs/usr/share/pixmaps
|
slaxemulator@500
|
393 fi
|
pankso@1
|
394 fi
|
pankso@1
|
395
|
pankso@1
|
396 # Custom or homemade PNG pixmap can be in stuff.
|
pankso@1
|
397 if [ -f "$stuff/$PACKAGE.png" ]; then
|
pankso@1
|
398 mkdir -p $fs/usr/share/pixmaps
|
pankso@1
|
399 cp -a $stuff/$PACKAGE.png $fs/usr/share/pixmaps
|
pankso@1
|
400 fi
|
pankso@1
|
401 fi
|
pankso@1
|
402
|
pankso@1
|
403 # Desktop entry (.desktop).
|
erjo@284
|
404 # Generic desktop entry copy can be disabled with GENERIC_MENUS="no"
|
erjo@284
|
405 if [ "$GENERIC_MENUS" != "no" ]; then
|
erjo@284
|
406 if [ -d "$install/usr/share/applications" ] && [ "$WANTED" == "" ]; then
|
slaxemulator@500
|
407 mkdir -p $fs/usr/share
|
erjo@284
|
408 cp -a $install/usr/share/applications $fs/usr/share
|
erjo@284
|
409 fi
|
pankso@1
|
410 fi
|
pankso@1
|
411
|
pankso@1
|
412 # Homemade desktop file(s) can be in stuff.
|
pankso@1
|
413 if [ -d "$stuff/applications" ]; then
|
pankso@1
|
414 mkdir -p $fs/usr/share
|
pankso@1
|
415 cp -a $stuff/applications $fs/usr/share
|
pankso@1
|
416 fi
|
pankso@1
|
417 if [ -f "$stuff/$PACKAGE.desktop" ]; then
|
pankso@1
|
418 mkdir -p $fs/usr/share/applications
|
pankso@1
|
419 cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications
|
pankso@1
|
420 fi
|
slaxemulator@500
|
421
|
slaxemulator@500
|
422 # Add custom licenses
|
slaxemulator@500
|
423 if [ -d "$stuff/licenses" ]; then
|
slaxemulator@500
|
424 mkdir -p $fs/usr/share/licenses
|
slaxemulator@500
|
425 cp -a $stuff/licenses $fs/usr/share/licenses/$PACKAGE
|
slaxemulator@500
|
426 fi
|
pankso@1
|
427 }
|
pankso@1
|
428
|
al@596
|
429 # Find and strip: --strip-all (-s) or --strip-debug on static libs as well
|
paul@647
|
430 # as removing unneeded files like in Python packages. Cross compiled binaries
|
pankso@415
|
431 # must be stripped with cross-tools aka $ARCH-slitaz-*-strip
|
pankso@421
|
432 strip_package() {
|
pankso@415
|
433 case "$ARCH" in
|
pankso@415
|
434 arm|x86_64) export STRIP=${HOST_SYSTEM}-strip ;;
|
pankso@415
|
435 *) export STRIP=strip ;;
|
pankso@415
|
436 esac
|
al@596
|
437 _n "Executing strip on all files..."
|
pankso@1
|
438 for dir in $fs/bin $fs/sbin $fs/usr/bin $fs/usr/sbin $fs/usr/games
|
pankso@1
|
439 do
|
pankso@1
|
440 if [ -d "$dir" ]; then
|
pankso@414
|
441 find $dir -type f -exec $STRIP -s '{}' 2>/dev/null \;
|
pankso@1
|
442 fi
|
pankso@1
|
443 done
|
pankso@414
|
444 find $fs -name "*.so*" -exec $STRIP -s '{}' 2>/dev/null \;
|
pankso@414
|
445 find $fs -name "*.a" -exec $STRIP --strip-debug '{}' 2>/dev/null \;
|
pankso@1
|
446 status
|
pankso@67
|
447
|
pankso@117
|
448 # Remove Python .pyc and .pyo from packages.
|
pankso@150
|
449 if echo "$PACKAGE $DEPENDS" | fgrep -q "python"; then
|
al@596
|
450 _n "Removing Python compiled files..."
|
pankso@67
|
451 find $fs -type f -name "*.pyc" -delete 2>/dev/null
|
pankso@67
|
452 find $fs -type f -name "*.pyo" -delete 2>/dev/null
|
pankso@117
|
453 status
|
pankso@117
|
454 fi
|
pankso@117
|
455
|
pankso@117
|
456 # Remove Perl perllocal.pod and .packlist from packages.
|
pankso@117
|
457 if echo "$DEPENDS" | fgrep -q "perl"; then
|
al@596
|
458 _n "Removing Perl compiled files..."
|
pankso@67
|
459 find $fs -type f -name "perllocal.pod" -delete 2>/dev/null
|
pankso@67
|
460 find $fs -type f -name ".packlist" -delete 2>/dev/null
|
pankso@67
|
461 status
|
pankso@67
|
462 fi
|
pankso@1
|
463 }
|
pankso@1
|
464
|
pankso@8
|
465 # Remove installed deps.
|
pankso@8
|
466 remove_deps() {
|
pankso@8
|
467 # Now remove installed build deps.
|
pascal@609
|
468 diff="/tmp/installed.cook.diff"
|
pascal@609
|
469 if [ -s $diff ]; then
|
pankso@113
|
470 deps=$(cat $diff | grep ^+[a-zA-Z0-9] | sed s/^+//)
|
pankso@113
|
471 nb=$(cat $diff | grep ^+[a-zA-Z0-9] | wc -l)
|
al@596
|
472 _n "Build dependencies to remove: "; echo $nb $root
|
al@596
|
473 _n "Removing:"
|
pankso@8
|
474 for dep in $deps
|
pankso@8
|
475 do
|
pankso@8
|
476 echo -n " $dep"
|
pankso@426
|
477 echo 'y' | tazpkg remove $dep --root=$root >/dev/null
|
pankso@8
|
478 done
|
al@596
|
479 newline; newline
|
pankso@113
|
480 # Keep the last diff for debug and info.
|
pascal@609
|
481 mv -f $diff $CACHE/installed.diff
|
pankso@1
|
482 fi
|
pankso@1
|
483 }
|
pankso@1
|
484
|
pankso@1
|
485 # The main cook function.
|
pankso@1
|
486 cookit() {
|
al@596
|
487 _ "Cook: \$PACKAGE \$VERSION"; separator
|
pankso@1
|
488 set_paths
|
pankso@359
|
489
|
pankso@377
|
490 # Handle cross-tools.
|
pankso@359
|
491 case "$ARCH" in
|
pankso@359
|
492 arm|x86_64)
|
paul@387
|
493 # CROSS_COMPILE is used by at least Busybox and the kernel to set
|
al@596
|
494 # the cross-tools prefix. Sysroot is the root of our target arch
|
pankso@443
|
495 sysroot=$CROSS_TREE/sysroot
|
pankso@443
|
496 tools=$CROSS_TREE/tools
|
pankso@443
|
497 # Set root path when cross compiling. ARM tested but not x86_64
|
pankso@443
|
498 # When cross compiling we must install build deps in $sysroot.
|
pankso@443
|
499 arch="-${ARCH}"
|
pankso@443
|
500 root=$sysroot
|
al@596
|
501 _ "\$ARCH sysroot: \$sysroot"
|
al@596
|
502 _ "Adding \$tools/bin to PATH"
|
pankso@443
|
503 export PATH=$PATH:$tools/bin
|
pankso@446
|
504 export PKG_CONFIG_PATH=$sysroot/usr/lib/pkgconfig
|
pankso@421
|
505 export CROSS_COMPILE=${HOST_SYSTEM}-
|
al@596
|
506 _ "Using cross-tools: \$CROSS_COMPILE"
|
pankso@438
|
507 if [ "$ARCH" == "x86_64" ]; then
|
pankso@438
|
508 export CC="${HOST_SYSTEM}-gcc -m64"
|
pankso@438
|
509 export CXX="${HOST_SYSTEM}-g++ -m64"
|
pankso@438
|
510 else
|
pankso@438
|
511 export CC=${HOST_SYSTEM}-gcc
|
pankso@438
|
512 export CXX=${HOST_SYSTEM}-g++
|
pankso@438
|
513 fi
|
pankso@377
|
514 export AR=${HOST_SYSTEM}-ar
|
pankso@377
|
515 export AS=${HOST_SYSTEM}-as
|
pankso@377
|
516 export RANLIB=${HOST_SYSTEM}-ranlib
|
pankso@377
|
517 export LD=${HOST_SYSTEM}-ld
|
pankso@443
|
518 export STRIP=${HOST_SYSTEM}-strip ;;
|
pankso@359
|
519 esac
|
pankso@359
|
520
|
pankso@9
|
521 [ "$QA" ] && receipt_quality
|
pankso@44
|
522 cd $pkgdir
|
pascal@607
|
523 rm -rf install taz source 2> /dev/null
|
pankso@1
|
524
|
pankso@1
|
525 # Disable -pipe if less than 512Mb free RAM.
|
pankso@1
|
526 free=$(free | fgrep '/+ buffers' | tr -s ' ' | cut -f 4 -d ' ')
|
pankso@1
|
527 if [ "$free" -lt 524288 ] && [ "$CFLAGS" != "${CFLAGS/-pipe}" ]; then
|
al@596
|
528 _ "Disabling -pipe compile flag: \$free RAM"
|
pankso@1
|
529 CFLAGS="${CFLAGS/-pipe}" && CFLAGS=$(echo "$CFLAGS" | tr -s ' ')
|
pankso@47
|
530 CXXFLAGS="${CXXFLAGS/-pipe}" && \
|
pankso@47
|
531 CXXFLAGS=$(echo "$CXXFLAGS" | tr -s ' ')
|
pankso@1
|
532 fi
|
pankso@1
|
533 unset free
|
pankso@1
|
534
|
pankso@232
|
535 # Export flags and path to be used by make and receipt.
|
pankso@44
|
536 DESTDIR=$pkgdir/install
|
al@596
|
537 # FIXME: L10n: Is this the right time for 'LC_ALL=C LANG=C'?
|
pankso@232
|
538 export DESTDIR MAKEFLAGS CFLAGS CXXFLAGS CONFIG_SITE LC_ALL=C LANG=C
|
pankso@358
|
539 #LDFLAGS
|
pankso@1
|
540
|
pankso@126
|
541 # Check for build deps and handle implicit depends of *-dev packages
|
pankso@126
|
542 # (ex: libusb-dev :: libusb).
|
pankso@215
|
543 rm -f $CACHE/installed.local $CACHE/installed.web $CACHE/missing.dep
|
pankso@215
|
544 touch $CACHE/installed.local $CACHE/installed.web
|
al@596
|
545 [ "$BUILD_DEPENDS" ] && _ "Checking build dependencies..."
|
al@596
|
546 [ "$root" ] && _ "Using packages DB: \${root}\$DB"
|
pankso@1
|
547 for dep in $BUILD_DEPENDS
|
pankso@1
|
548 do
|
pankso@126
|
549 implicit=${dep%-dev}
|
pankso@131
|
550 for i in $dep $implicit
|
pankso@126
|
551 do
|
pankso@426
|
552 if [ ! -f "${root}$INSTALLED/$i/receipt" ]; then
|
paul@174
|
553 # Try local package first. In some cases implicit doesn't exist, ex:
|
paul@174
|
554 # libboost-dev exists but not libboost, so check if we got vers.
|
pankso@173
|
555 unset vers
|
pascal@343
|
556 vers=$(. $WOK/$i/receipt 2>/dev/null ; echo $VERSION)
|
pankso@435
|
557 # We may have a local package.
|
pankso@435
|
558 if [ ! "$vers" ]; then
|
pankso@435
|
559 vers=$(grep "^$i |" $PKGS/packages.desc | awk '{print $3}')
|
pankso@435
|
560 fi
|
pankso@435
|
561 debug "bdep: $i version: $vers"
|
pankso@426
|
562 if [ -f "$PKGS/$i-${vers}${arch}.tazpkg" ]; then
|
pankso@426
|
563 echo $i-${vers}${arch}.tazpkg >> $CACHE/installed.local
|
pankso@126
|
564 else
|
paul@227
|
565 # Priority to package version in wok (maybe more up-to-date)
|
paul@227
|
566 # than the mirrored one.
|
pankso@173
|
567 if [ "$vers" ]; then
|
pankso@426
|
568 if fgrep -q $i-${vers}${arch} ${root}$DB/packages.list; then
|
pankso@215
|
569 echo $i >> $CACHE/installed.web
|
pankso@198
|
570 else
|
paul@211
|
571 # So package exists in wok but not available.
|
al@596
|
572 _ "Missing dep (wok/pkg): \$i \$vers"
|
pankso@215
|
573 echo $i >> $CACHE/missing.dep
|
pankso@198
|
574 fi
|
pankso@225
|
575 else
|
pankso@435
|
576 # Package is not in wok but may be in online repo.
|
pankso@426
|
577 if fgrep -q $i-${vers}${arch} ${root}$DB/packages.list; then
|
pankso@225
|
578 echo $i >> $CACHE/installed.web
|
pankso@225
|
579 else
|
al@596
|
580 _ "ERROR: unknown dep \$i"; exit 1
|
pankso@225
|
581 fi
|
pankso@173
|
582 fi
|
pankso@126
|
583 fi
|
pankso@1
|
584 fi
|
pankso@126
|
585 done
|
pankso@1
|
586 done
|
pankso@225
|
587
|
pankso@215
|
588 # Get the list of installed packages
|
pankso@426
|
589 cd ${root}$INSTALLED && ls -1 > $CACHE/installed.list
|
pankso@358
|
590
|
al@596
|
591 # Have we a missing build dep to cook?
|
pankso@215
|
592 if [ -s "$CACHE/missing.dep" ] && [ "$AUTO_COOK" ]; then
|
al@596
|
593 _ "Auto cook config is set: AUTO_COOK"
|
pankso@204
|
594 cp -f $LOGS/$PACKAGE.log $LOGS/$PACKAGE.log.$$
|
pankso@224
|
595 for i in $(uniq $CACHE/missing.dep)
|
pankso@204
|
596 do
|
al@596
|
597 (_ "Building dep (wok/pkg) : \$i \$vers") | \
|
pankso@204
|
598 tee -a $LOGS/$PACKAGE.log.$$
|
al@596
|
599 # programmers: next two messages are exact copy from remove_deps()
|
al@596
|
600 togrep1=$(_n "Build dependencies to remove: ")
|
al@596
|
601 togrep2=$(_n "Removing:")
|
al@596
|
602 cook $i || (_ "ERROR: can't cook dep '\$i'" && newline && \
|
al@596
|
603 fgrep $togrep1 $LOGS/$i.log && \
|
al@596
|
604 fgrep $togrep2 $LOGS/$i.log && newline) | \
|
pankso@204
|
605 tee -a $LOGS/$PACKAGE.log.$$ && break
|
pankso@204
|
606 done
|
pankso@215
|
607 rm -f $CACHE/missing.dep
|
pankso@204
|
608 mv $LOGS/$PACKAGE.log.$$ $LOGS/$PACKAGE.log
|
pankso@204
|
609 fi
|
pankso@358
|
610
|
paul@211
|
611 # QA: Exit on missing dep errors. We exit in both cases, if AUTO_COOK
|
paul@211
|
612 # is enabled and cook fails we have ERROR in log, if no auto cook we have
|
pankso@204
|
613 # missing dep in cached file.
|
al@596
|
614 lerror=$(_n "ERROR")
|
pascal@613
|
615 if fgrep -q ^$lerror $LOGS/$pkg.log || [ -s "$CACHE/missing.dep" ]; then
|
pankso@215
|
616 [ -s "$CACHE/missing.dep" ] && nb=$(cat $CACHE/missing.dep | wc -l)
|
al@596
|
617 _ "ERROR: missing dep \$nb" && exit 1
|
pankso@202
|
618 fi
|
pankso@358
|
619
|
pankso@426
|
620 # Install local packages: package-version${arch}
|
pankso@215
|
621 cd $PKGS
|
pankso@224
|
622 for i in $(uniq $CACHE/installed.local)
|
pankso@215
|
623 do
|
al@596
|
624 _ "Installing dep (pkg/local): \$i"
|
pankso@423
|
625 tazpkg install $i --root=$root >/dev/null
|
pankso@215
|
626 done
|
pankso@358
|
627
|
pankso@215
|
628 # Install web or cached packages (if mirror is set to $PKGS we only
|
pankso@215
|
629 # use local packages).
|
pankso@224
|
630 for i in $(uniq $CACHE/installed.web)
|
pankso@215
|
631 do
|
al@596
|
632 _ "Installing dep (web/cache): \$i"
|
pankso@423
|
633 tazpkg get-install $i --root=$root >/dev/null
|
pankso@215
|
634 done
|
pankso@358
|
635
|
pankso@215
|
636 # If a cook failed deps are removed.
|
pankso@426
|
637 cd ${root}$INSTALLED && ls -1 > $CACHE/installed.cook && cd $CACHE
|
pascal@609
|
638 [ ! -s "/tmp/installed.cook.diff" ] && \
|
pascal@609
|
639 busybox diff installed.list installed.cook > /tmp/installed.cook.diff
|
pascal@609
|
640 deps=$(cat /tmp/installed.cook.diff | grep ^+[a-zA-Z0-9] | wc -l)
|
pankso@202
|
641
|
pankso@1
|
642 # Get source tarball and make sure we have source dir named:
|
paul@62
|
643 # $PACKAGE-$VERSION to be standard in receipts. Here we use tar.lzma
|
paul@62
|
644 # tarball if it exists.
|
pankso@1
|
645 if [ "$WGET_URL" ] && [ ! -f "$SRC/$TARBALL" ]; then
|
pankso@1
|
646 if [ -f "$SRC/${SOURCE:-$PACKAGE}-$VERSION.tar.lzma" ]; then
|
pankso@10
|
647 TARBALL=${SOURCE:-$PACKAGE}-$VERSION.tar.lzma
|
pankso@190
|
648 LZMA_SRC=""
|
pankso@1
|
649 else
|
pankso@1
|
650 get_source || exit 1
|
pankso@1
|
651 fi
|
pankso@1
|
652 fi
|
pankso@242
|
653 if [ ! "$WANTED" ] && [ "$TARBALL" ] && [ ! -d "$src" ]; then
|
pankso@1
|
654 mkdir -p $pkgdir/source/tmp && cd $pkgdir/source/tmp
|
pascal@268
|
655 if ! extract_source ; then
|
pascal@268
|
656 get_source
|
pascal@268
|
657 extract_source || exit 1
|
pascal@268
|
658 fi
|
pankso@190
|
659 if [ "$LZMA_SRC" ]; then
|
pankso@190
|
660 cd $pkgdir/source
|
pankso@190
|
661 if [ "$(ls -A tmp | wc -l)" -gl 1 ] || [ -f "$(echo tmp/*)" ]; then
|
pankso@190
|
662 mv tmp tmp-1 && mkdir tmp
|
pankso@190
|
663 mv tmp-1 tmp/${SOURCE:-$PACKAGE}-$VERSION
|
pankso@190
|
664 fi
|
pankso@190
|
665 if [ -d "tmp/${SOURCE:-$PACKAGE}-$VERSION" ]; then
|
pankso@358
|
666 cd tmp && tar -c * | lzma e $SRC/$TARBALL -si
|
pankso@190
|
667 fi
|
pankso@190
|
668 fi
|
pankso@190
|
669 cd $pkgdir/source/tmp
|
paul@62
|
670 # Some archives are not well done and don't extract to one dir (ex lzma).
|
pankso@57
|
671 files=$(ls | wc -l)
|
pankso@244
|
672 [ "$files" == 1 ] && [ -d "$(ls)" ] && mv * ../$PACKAGE-$VERSION
|
pankso@244
|
673 [ "$files" == 1 ] && [ -f "$(ls)" ] && mkdir -p ../$PACKAGE-$VERSION && \
|
pankso@244
|
674 mv * ../$PACKAGE-$VERSION/$TARBALL
|
pankso@57
|
675 [ "$files" -gt 1 ] && mkdir -p ../$PACKAGE-$VERSION && \
|
pankso@57
|
676 mv * ../$PACKAGE-$VERSION
|
pankso@1
|
677 cd .. && rm -rf tmp
|
pankso@1
|
678 fi
|
pankso@1
|
679
|
pankso@9
|
680 # Execute receipt rules.
|
pankso@44
|
681 if grep -q ^compile_rules $receipt; then
|
al@596
|
682 _ "Executing: compile_rules"
|
pankso@352
|
683 echo "CFLAGS : $CFLAGS"
|
pankso@358
|
684 #echo "LDFLAGS : $LDFLAGS"
|
pankso@55
|
685 [ -d "$src" ] && cd $src
|
pankso@97
|
686 compile_rules $@ || exit 1
|
pankso@10
|
687 # Stay compatible with _pkg
|
pankso@55
|
688 [ -d "$src/_pkg" ] && mv $src/_pkg $install
|
pankso@9
|
689 # QA: compile_rules success so valid.
|
pankso@9
|
690 mkdir -p $install
|
pankso@9
|
691 else
|
al@596
|
692 # QA: no compile_rules so no error, valid.
|
pankso@9
|
693 mkdir -p $install
|
pankso@1
|
694 fi
|
al@596
|
695 separator; newline
|
pankso@360
|
696
|
pankso@360
|
697 # Execute testsuite.
|
pankso@360
|
698 if grep -q ^testsuite $receipt; then
|
al@596
|
699 _ "Running testsuite"; separator
|
pankso@360
|
700 testsuite $@ || exit 1
|
al@596
|
701 separator; newline
|
pankso@360
|
702 fi
|
pankso@1
|
703 }
|
pankso@1
|
704
|
pankso@1
|
705 # Cook quality assurance.
|
pankso@1
|
706 cookit_quality() {
|
pankso@9
|
707 if [ ! -d "$WOK/$pkg/install" ] && [ ! "$WANTED" ]; then
|
al@596
|
708 _ "ERROR: cook failed" | tee -a $LOGS/$pkg.log
|
pankso@9
|
709 fi
|
pankso@9
|
710 # ERROR can be echoed any time in cookit()
|
al@596
|
711 lerror=$(_n "ERROR")
|
pascal@618
|
712 if grep -Ev "(conftest|configtest)" $LOGS/$pkg.log | \
|
pascal@618
|
713 grep -Eq "(^$lerror|undefined reference to)" ; then
|
pankso@17
|
714 debug_info | tee -a $LOGS/$pkg.log
|
pankso@33
|
715 rm -f $command && exit 1
|
pankso@1
|
716 fi
|
pankso@1
|
717 }
|
pankso@1
|
718
|
pankso@16
|
719 # Create the package. Wanted to use Tazpkg to create a tazpkg package at first,
|
paul@62
|
720 # but it doesn't handle EXTRAVERSION.
|
pankso@1
|
721 packit() {
|
pankso@1
|
722 set_paths
|
pankso@359
|
723
|
pankso@359
|
724 # Handle cross compilation
|
pankso@359
|
725 case "$ARCH" in
|
pankso@428
|
726 arm|x86_64) arch="-$ARCH" ;;
|
pankso@359
|
727 esac
|
pankso@359
|
728
|
al@596
|
729 _ "Pack: \$PACKAGE \${VERSION}\${arch}"; separator
|
pankso@359
|
730
|
pankso@44
|
731 if grep -q ^genpkg_rules $receipt; then
|
al@596
|
732 _ "Executing: genpkg_rules"
|
pankso@259
|
733 set -e && cd $pkgdir && mkdir -p $fs
|
al@596
|
734 genpkg_rules || (newline; _ "ERROR: genpkg_rules failed"; newline) >> \
|
pankso@234
|
735 $LOGS/$pkg.log
|
pankso@241
|
736 else
|
al@596
|
737 _ "No packages rules: meta package"
|
pankso@241
|
738 mkdir -p $fs
|
pankso@16
|
739 fi
|
pankso@98
|
740
|
pankso@98
|
741 # First QA check to stop now if genpkg_rules failed.
|
al@596
|
742 lerror=$(_n "ERROR")
|
pascal@613
|
743 if fgrep -q ^$lerror $LOGS/$pkg.log; then
|
pankso@98
|
744 exit 1
|
pankso@98
|
745 fi
|
pankso@358
|
746
|
pankso@44
|
747 cd $taz
|
pankso@1
|
748 for file in receipt description.txt
|
pankso@1
|
749 do
|
pankso@1
|
750 [ ! -f "../$file" ] && continue
|
al@596
|
751 _n "Copying \$file..."
|
pankso@1
|
752 cp -f ../$file $pack && chown 0.0 $pack/$file && status
|
pankso@1
|
753 done
|
pankso@119
|
754 copy_generic_files
|
pankso@358
|
755
|
paul@62
|
756 # Create files.list with redirecting find output.
|
al@596
|
757 _n "Creating the list of files..."
|
al@596
|
758 cd $fs
|
pankso@16
|
759 find . -type f -print > ../files.list
|
pankso@16
|
760 find . -type l -print >> ../files.list
|
pankso@16
|
761 cd .. && sed -i s/'^.'/''/ files.list
|
pankso@16
|
762 status
|
pankso@43
|
763
|
pankso@119
|
764 # Strip and stuff files.
|
pankso@43
|
765 strip_package
|
pankso@43
|
766
|
pankso@43
|
767 # Md5sum of files.
|
al@596
|
768 _n "Creating md5sum of files..."
|
pankso@16
|
769 while read file; do
|
pankso@16
|
770 [ -L "fs$file" ] && continue
|
pankso@16
|
771 [ -f "fs$file" ] || continue
|
pankso@16
|
772 case "$file" in
|
pankso@232
|
773 /lib/modules/*/modules.*|*.pyc) continue ;;
|
pankso@16
|
774 esac
|
pankso@16
|
775 md5sum "fs$file" | sed 's/ fs/ /'
|
pankso@16
|
776 done < files.list > md5sum
|
pankso@16
|
777 status
|
pankso@16
|
778 UNPACKED_SIZE=$(du -chs fs receipt files.list md5sum \
|
pankso@16
|
779 description.txt 2> /dev/null | awk \
|
pankso@16
|
780 '{ sz=$1 } END { print sz }')
|
pankso@358
|
781
|
pankso@16
|
782 # Build cpio archives.
|
al@596
|
783 _n "Compressing the fs..."
|
pankso@16
|
784 find fs | cpio -o -H newc --quiet | lzma e fs.cpio.lzma -si
|
pankso@16
|
785 rm -rf fs
|
pankso@16
|
786 status
|
pankso@16
|
787 PACKED_SIZE=$(du -chs fs.cpio.lzma receipt files.list \
|
pankso@16
|
788 md5sum description.txt 2> /dev/null | awk \
|
pankso@16
|
789 '{ sz=$1 } END { print sz }')
|
al@596
|
790 _n "Updating receipt sizes..."
|
pankso@16
|
791 sed -i s/^PACKED_SIZE.*$// receipt
|
pankso@16
|
792 sed -i s/^UNPACKED_SIZE.*$// receipt
|
pankso@16
|
793 sed -i "s/^PACKAGE=/PACKED_SIZE=\"$PACKED_SIZE\"\nUNPACKED_SIZE=\"$UNPACKED_SIZE\"\nPACKAGE=/" receipt
|
pankso@16
|
794 status
|
pankso@16
|
795
|
pankso@16
|
796 # Set extra version.
|
pankso@16
|
797 if [ "$EXTRAVERSION" ]; then
|
al@596
|
798 _n "Updating receipt EXTRAVERSION: \$EXTRAVERSION"
|
pankso@16
|
799 sed -i s/^EXTRAVERSION.*$// receipt
|
pankso@16
|
800 sed -i "s/^VERSION=/EXTRAVERSION=\"$EXTRAVERSION\"\nVERSION=/" receipt
|
pankso@16
|
801 status
|
pankso@16
|
802 fi
|
pankso@16
|
803
|
pankso@16
|
804 # Compress.
|
al@596
|
805 _n "Creating full cpio archive..."
|
pankso@16
|
806 find . -print | cpio -o -H newc --quiet > \
|
pankso@428
|
807 ../$PACKAGE-${VERSION}${EXTRAVERSION}${arch}.tazpkg
|
pankso@16
|
808 status
|
al@596
|
809 _n "Restoring original package tree..."
|
pankso@16
|
810 unlzma -c fs.cpio.lzma | cpio -idm --quiet
|
pankso@16
|
811 status
|
pankso@16
|
812 rm fs.cpio.lzma && cd ..
|
pankso@43
|
813
|
pankso@43
|
814 # QA and give info.
|
pankso@43
|
815 tazpkg=$(ls *.tazpkg)
|
pankso@43
|
816 packit_quality
|
al@596
|
817 separator; _ "Package: \$tazpkg"; newline
|
pankso@1
|
818 }
|
pankso@1
|
819
|
paul@62
|
820 # Verify package quality and consistency.
|
pankso@8
|
821 packit_quality() {
|
al@596
|
822 #gettext "QA: checking for broken link..."
|
pankso@157
|
823 #link=$(find $fs/usr -type l -follow)
|
pankso@157
|
824 #[ "$link" ] && echo -e "\nERROR: broken link in filesystem"
|
pankso@157
|
825 #status
|
pankso@358
|
826
|
pankso@142
|
827 # Exit if any error found in log file.
|
al@596
|
828 lerror=$(_n "ERROR")
|
pascal@613
|
829 if fgrep -q ^$lerror $LOGS/$pkg.log; then
|
pankso@32
|
830 rm -f $command && exit 1
|
pankso@8
|
831 fi
|
pankso@358
|
832
|
al@596
|
833 _n "QA: checking for empty package..."
|
pankso@45
|
834 files=$(cat $WOK/$pkg/taz/$pkg-*/files.list | wc -l)
|
pankso@259
|
835 if [ "$files" == 0 ] && [ "$CATEGORY" != "meta" ]; then
|
al@596
|
836 newline; _ "ERROR: empty package"
|
pankso@32
|
837 rm -f $command && exit 1
|
pankso@8
|
838 else
|
pankso@134
|
839 # Ls sort by name so the first file is the one we want.
|
pankso@136
|
840 old=$(ls $PKGS/$pkg-*.tazpkg 2>/dev/null | head -n 1)
|
pankso@134
|
841 status
|
pankso@154
|
842 if [ -f "$old" ]; then
|
al@596
|
843 old_pkg=$(basename $old)
|
al@596
|
844 _n "Removing old: \$old_pkg"
|
pankso@135
|
845 rm -f $old && status
|
pankso@154
|
846 fi
|
pankso@134
|
847 mv -f $pkgdir/taz/$pkg-*.tazpkg $PKGS
|
pankso@11
|
848 sed -i /^${pkg}$/d $broken
|
pankso@265
|
849 #gettext "Removing source tree..."
|
pankso@265
|
850 #rm -f $WOK/$pkg/source && status
|
pankso@8
|
851 fi
|
pankso@8
|
852 }
|
pankso@8
|
853
|
pankso@427
|
854 # Tic tac, tic tac...
|
pankso@421
|
855 tac() {
|
pascal@285
|
856 sed '1!G;h;$!d' $1
|
pascal@285
|
857 }
|
pascal@285
|
858
|
pankso@428
|
859 # Install package on --install or update the chroot.
|
pankso@428
|
860 install_package() {
|
pankso@428
|
861 case "$ARCH" in
|
pankso@428
|
862 arm|x86_64)
|
pankso@428
|
863 arch="-${ARCH}"
|
pankso@443
|
864 root=$CROSS_TREE/sysroot ;;
|
pankso@428
|
865 esac
|
pankso@428
|
866 # Install package if requested but skip install if target host doesn't
|
pankso@428
|
867 # match build system or it will break the build chroot.
|
pankso@428
|
868 build=$(echo $BUILD_SYSTEM | cut -d "-" -f 1)
|
pankso@428
|
869 if [ "$inst" ] && [ "$build" == "$ARCH" ]; then
|
pankso@428
|
870 if [ -f "$PKGS/$PACKAGE-${VERSION}${EXTRAVERSION}.tazpkg" ]; then
|
pankso@428
|
871 cd $PKGS && tazpkg install \
|
pankso@428
|
872 $PACKAGE-${VERSION}${EXTRAVERSION}.tazpkg --forced
|
pankso@428
|
873 else
|
al@596
|
874 _ "Unable to install package, build has failed."; newline
|
pankso@428
|
875 exit 1
|
pankso@428
|
876 fi
|
pankso@428
|
877 fi
|
pankso@428
|
878
|
pankso@428
|
879 # Install package if part of the chroot to keep env up-to-date.
|
pankso@428
|
880 if [ -d "${root}$INSTALLED/$pkg" ]; then
|
pankso@428
|
881 . /etc/slitaz/cook.conf
|
pankso@428
|
882 . $WOK/$pkg/taz/$pkg-*/receipt
|
al@596
|
883 _ "Updating \$ARCH chroot environment..."
|
al@596
|
884 _ "Updating chroot: \$pkg (\${VERSION}\${EXTRAVERSION}\${arch})" | log
|
pankso@428
|
885 cd $PKGS && tazpkg install \
|
pankso@428
|
886 $pkg-${VERSION}${EXTRAVERSION}${arch}.tazpkg \
|
pankso@428
|
887 --forced --root=$root
|
pankso@428
|
888 fi
|
pankso@428
|
889 }
|
pankso@428
|
890
|
pascal@285
|
891 # Launch the cook command into a chroot jail protected by aufs.
|
pascal@285
|
892 # The current filesystems are used read-only and updates are
|
pascal@285
|
893 # stored in a separate branch.
|
pascal@285
|
894 try_aufs_chroot() {
|
pascal@285
|
895
|
pascal@286
|
896 base=/dev/shm/aufsmnt$$
|
pascal@286
|
897
|
al@596
|
898 # Can we setup the chroot? Is it already done?
|
pascal@292
|
899 grep -q ^AUFS_NOT_SUPPORTED $receipt && return
|
pascal@594
|
900 grep -q ^AUFS_NOT_RAMFS $receipt && base=/mnt/aufsmnt$$
|
pascal@285
|
901 [ -n "$AUFS_MOUNTS" -a ! -f /aufs-umount.sh ] || return
|
pascal@285
|
902 lsmod | grep -q aufs || modprobe aufs 2> /dev/null || return
|
pascal@286
|
903 mkdir ${base}root ${base}rw || return
|
pascal@285
|
904
|
al@596
|
905 _ "Setup aufs chroot..."
|
pascal@285
|
906
|
pascal@285
|
907 # Sanity check
|
pascal@286
|
908 for i in / /proc /sys /dev/shm /home ; do
|
pascal@285
|
909 case " $AUFS_MOUNTS " in
|
pascal@285
|
910 *\ $i\ *) ;;
|
pascal@285
|
911 *) AUFS_MOUNTS="$AUFS_MOUNTS $i" ;;
|
pascal@285
|
912 esac
|
pascal@285
|
913 done
|
pascal@285
|
914 for mnt in $(echo $AUFS_MOUNTS | sort | uniq); do
|
pascal@285
|
915 mount --bind $mnt ${base}root$mnt
|
pascal@285
|
916 if [ $mnt == / ] && ! mount -t aufs -o br=${base}rw:/ none ${base}root; then
|
al@596
|
917 _ "Aufs mountage failure"
|
slaxemulator@519
|
918 umount ${base}root
|
pascal@628
|
919 rm -rf ${base}r*
|
slaxemulator@519
|
920 return
|
pascal@285
|
921 fi
|
pascal@285
|
922 echo "umount ${base}root$mnt" >> ${base}rw/aufs-umount.sh
|
pascal@285
|
923 done
|
pascal@285
|
924
|
pascal@285
|
925 chroot ${base}root $(cd $(dirname $0); pwd)/$(basename $0) "$@"
|
pascal@285
|
926 status=$?
|
pascal@285
|
927
|
al@596
|
928 _ "Leaving aufs chroot..."
|
pascal@285
|
929 tac ${base}rw/aufs-umount.sh | sh
|
pascal@285
|
930 rm -rf ${base}rw
|
pascal@285
|
931 umount ${base}root
|
pascal@285
|
932 rmdir $base*
|
pankso@428
|
933 # Dont install pkg twice... it's done after
|
pankso@428
|
934 #install_package
|
pankso@358
|
935 exit $status
|
pascal@285
|
936 }
|
pascal@285
|
937
|
paul@387
|
938 # Create a XML feed for freshly built packages.
|
pankso@310
|
939 gen_rss() {
|
pankso@310
|
940 pubdate=$(date "+%a, %d %b %Y %X")
|
pankso@310
|
941 cat > $FEEDS/$pkg.xml << EOT
|
pankso@310
|
942 <item>
|
pankso@310
|
943 <title>$PACKAGE $VERSION${EXTRAVERSION}</title>
|
pankso@310
|
944 <link>${COOKER_URL}?pkg=$PACKAGE</link>
|
pankso@310
|
945 <guid>$PACKAGE-$VERSION${EXTRAVERSION}</guid>
|
pankso@310
|
946 <pubDate>$pubdate</pubDate>
|
pankso@310
|
947 <description>$SHORT_DESC</description>
|
pankso@310
|
948 </item>
|
pankso@310
|
949 EOT
|
pankso@310
|
950 }
|
pankso@310
|
951
|
pascal@576
|
952 # Truncate stdout log file to $1 Mb.
|
pascal@576
|
953 loglimit()
|
pascal@576
|
954 {
|
pascal@593
|
955 if [ -n "$DEFAULT_LOG_LIMIT" ]; then
|
pascal@621
|
956 tee /dev/stderr | head -qc ${1:-$DEFAULT_LOG_LIMIT}m
|
pascal@593
|
957 else
|
pascal@593
|
958 tee /dev/stderr
|
pascal@593
|
959 fi
|
pascal@576
|
960 }
|
pascal@576
|
961
|
al@598
|
962 # Search file in mirrored packages
|
al@598
|
963 search_file_mirror()
|
al@598
|
964 {
|
al@598
|
965 busybox unlzma -c $DB/files.list.lzma | grep $1\$ | cut -d: -f1 | sort -u
|
al@598
|
966 }
|
al@598
|
967
|
al@598
|
968 # Search file in local wok packages
|
al@598
|
969 search_file_local()
|
al@598
|
970 {
|
al@598
|
971 # existing packages have precedence over the package/taz folder
|
al@598
|
972 srch=$1
|
al@598
|
973 { for package in $(find $PKGS -name '*.tazpkg'); do
|
al@598
|
974 if [ ! "x$(busybox cpio --to-stdout --quiet -i files.list < $package | grep /$srch\$)" == "x" ]; then
|
al@598
|
975 busybox cpio -i receipt < $package | fgrep PACKAGE | cut -d\" -f2
|
al@598
|
976 fi
|
al@598
|
977 done } | sort -u
|
al@598
|
978 }
|
al@598
|
979
|
al@598
|
980 # Ask in multiple choice
|
al@598
|
981 ask_multiple()
|
al@598
|
982 {
|
al@598
|
983 local multiples first my_choice
|
al@598
|
984 multiples="$1"
|
al@598
|
985 first=$(echo "$multiples" | head -n1)
|
al@598
|
986 newline; _ "Multiple choice:\n$multiples\n"
|
al@598
|
987 _ "Select one [$first]: "; read my_choice
|
al@598
|
988 [ "x$my_choice" == "x" ] && my_choice="$first"
|
al@598
|
989 found=$my_choice
|
al@598
|
990 }
|
al@598
|
991
|
al@598
|
992 # Search file in local cache (fast), local wok packages, mirrored packages
|
al@598
|
993 search_file()
|
al@598
|
994 {
|
al@598
|
995 local srch cache missing
|
al@598
|
996 srch=$1
|
al@598
|
997 cache=/var/cache/ldsearch.cache
|
al@598
|
998 missing=/var/cache/missing.file
|
al@598
|
999 touch $cache $missing
|
al@598
|
1000 found=$(grep $srch $cache | cut -d' ' -f2)
|
al@598
|
1001 if [ "x$found" == "x" ]; then
|
al@598
|
1002 found=$(search_file_local $srch)
|
al@598
|
1003 if [ "x$found" != "x" ]; then
|
al@598
|
1004 if [ $(echo "$found" | wc -l) -gt 1 ]; then
|
al@598
|
1005 ask_multiple "$found"
|
al@598
|
1006 fi
|
al@598
|
1007 echo "$srch $found" >> $cache
|
al@598
|
1008 else
|
al@598
|
1009 found=$(search_file_mirror $srch)
|
al@598
|
1010 if [ "x$found" != "x" ]; then
|
al@598
|
1011 if [ $(echo "$found" | wc -l) -gt 1 ]; then
|
al@598
|
1012 ask_multiple "$found"
|
al@598
|
1013 fi
|
al@598
|
1014 echo "$srch $found" >> $cache
|
al@598
|
1015 else
|
al@598
|
1016 echo "$srch" >> $missing
|
al@598
|
1017 fi
|
al@598
|
1018 fi
|
al@598
|
1019 fi
|
al@598
|
1020 }
|
al@598
|
1021
|
pankso@1
|
1022 #
|
pankso@1
|
1023 # Commands
|
pankso@1
|
1024 #
|
pankso@1
|
1025
|
pankso@1
|
1026 case "$1" in
|
pankso@32
|
1027 usage|help|-u|-h)
|
pankso@1
|
1028 usage ;;
|
pankso@1
|
1029 list-wok)
|
pankso@642
|
1030 newline; _ "List of \$ARCH packages in: \$WOK"; separator
|
pankso@642
|
1031 cd $WOK
|
pankso@642
|
1032 if [ "$ARCH" != "i486" ]; then
|
pankso@643
|
1033 count=0
|
pankso@643
|
1034 for pkg in $(fgrep 'HOST_ARCH=' */receipt | fgrep $ARCH | cut -d : -f 1)
|
pankso@643
|
1035 do
|
pankso@643
|
1036 unset HOST_ARCH
|
pankso@643
|
1037 . $pkg
|
pankso@643
|
1038 count=$(($count + 1))
|
pankso@643
|
1039 colorize 34 "$PACKAGE"
|
pankso@643
|
1040 done
|
pankso@642
|
1041 else
|
pankso@643
|
1042 count=$(ls | wc -l)
|
pankso@643
|
1043 ls -1
|
pankso@642
|
1044 fi
|
pankso@1
|
1045 separator
|
pankso@643
|
1046 _n "Packages:"; colorize 32 " $count"
|
pankso@643
|
1047 newline ;;
|
pankso@378
|
1048 activity)
|
pankso@378
|
1049 cat $activity ;;
|
pankso@69
|
1050 search)
|
pankso@69
|
1051 # Just a simple search function, we dont need more actually.
|
pankso@69
|
1052 query="$2"
|
al@596
|
1053 newline; _ "Search results for: \$query"; separator
|
pankso@69
|
1054 cd $WOK && ls -1 | grep "$query"
|
al@596
|
1055 separator; newline ;;
|
pankso@1
|
1056 setup)
|
pankso@1
|
1057 # Setup a build environment
|
pankso@1
|
1058 check_root
|
al@596
|
1059 _ "Cook: setup environment" | log
|
al@596
|
1060 newline; _ "Setting up your environment"; separator
|
al@596
|
1061 cd $SLITAZ
|
pankso@52
|
1062 init_db_files
|
al@596
|
1063 _ "Checking for packages to install..."
|
pankso@397
|
1064 # Use setup pkgs from cross.conf or cook.conf. When cross compiling
|
pankso@645
|
1065 # ARCH-setup or 'cross check' should be used before: cook setup
|
pankso@397
|
1066 case "$ARCH" in
|
pankso@421
|
1067 arm|x86_64)
|
pankso@397
|
1068 if [ ! -x "/usr/bin/cross" ]; then
|
al@596
|
1069 _ "ERROR: cross is not installed"
|
pankso@397
|
1070 exit 1
|
pankso@397
|
1071 fi
|
al@596
|
1072 _ "Using config file: /etc/slitaz/cross.conf"
|
pankso@397
|
1073 . /etc/slitaz/cross.conf ;;
|
pankso@397
|
1074 esac
|
pankso@397
|
1075 for pkg in $SETUP_PKGS; do
|
pankso@397
|
1076 if [ "$forced" ]; then
|
pankso@421
|
1077 tazpkg -gi $pkg --forced
|
pankso@397
|
1078 else
|
pankso@407
|
1079 [ -d "$INSTALLED/$pkg" ] || tazpkg get-install $pkg
|
pankso@397
|
1080 fi
|
pankso@397
|
1081 done
|
pankso@1
|
1082
|
pankso@1
|
1083 # Handle --options
|
pankso@1
|
1084 case "$2" in
|
pankso@397
|
1085 --wok)
|
pankso@230
|
1086 hg clone $WOK_URL wok || exit 1 ;;
|
pankso@230
|
1087 --stable)
|
pankso@230
|
1088 hg clone $WOK_URL-stable wok || exit 1 ;;
|
pankso@230
|
1089 --undigest)
|
pankso@230
|
1090 hg clone $WOK_URL-undigest wok || exit 1 ;;
|
pankso@397
|
1091 --tiny)
|
pankso@397
|
1092 hg clone $WOK_URL-tiny wok || exit 1 ;;
|
pankso@1
|
1093 esac
|
pankso@1
|
1094
|
pankso@1
|
1095 # SliTaz group and permissions
|
pankso@1
|
1096 if ! grep -q ^slitaz /etc/group; then
|
al@596
|
1097 _ "Adding group: slitaz"
|
pankso@1
|
1098 addgroup slitaz
|
pankso@1
|
1099 fi
|
al@596
|
1100 _ "Setting permissions for slitaz group..."
|
pascal@277
|
1101 find $SLITAZ -maxdepth 2 -exec chown root.slitaz {} \;
|
pascal@277
|
1102 find $SLITAZ -maxdepth 2 -exec chmod g+w {} \;
|
al@596
|
1103 separator; _ "All done, ready to cook packages :-)"; newline ;;
|
pankso@395
|
1104 *-setup)
|
pankso@395
|
1105 # Setup for cross compiling.
|
pankso@395
|
1106 arch=${1%-setup}
|
pankso@397
|
1107 check_root
|
pankso@644
|
1108 . /etc/slitaz/cook.conf
|
pankso@644
|
1109 for pkg in $CROSS_SETUP; do
|
pankso@644
|
1110 if [ "$forced" ]; then
|
pankso@644
|
1111 tazpkg -gi $pkg --forced
|
pankso@644
|
1112 else
|
pankso@644
|
1113 [ -d "$INSTALLED/$pkg" ] || tazpkg -gi $pkg
|
pankso@644
|
1114 fi
|
pankso@644
|
1115 done
|
al@596
|
1116 _ "Cook: setup \$arch cross environment" | log
|
al@596
|
1117 newline; boldify $(_n "Setting up your \$arch cross environment"); separator
|
pankso@397
|
1118 init_db_files
|
pankso@359
|
1119 sed -i \
|
pankso@396
|
1120 -e s"/ARCH=.*/ARCH=\"$arch\"/" \
|
pankso@443
|
1121 -e s"/CROSS_TREE=.*/CROSS_TREE=\"\/cross\/$arch\"/" \
|
pankso@359
|
1122 -e s'/BUILD_SYSTEM=.*/BUILD_SYSTEM=i486-slitaz-linux/' \
|
pankso@395
|
1123 /etc/slitaz/cook.conf
|
pankso@395
|
1124 case "$arch" in
|
pankso@395
|
1125 arm)
|
pankso@650
|
1126 flags="-O2 -march=armv6"
|
pankso@650
|
1127 host="$ARCH-slitaz-linux-gnueabi" ;;
|
pankso@650
|
1128 armv6hf)
|
pankso@650
|
1129 flags="-O2 -march=armv6j -mfpu=vfp -mfloat-abi=hard"
|
pankso@650
|
1130 host="$ARCH-slitaz-linux-gnueabi" ;;
|
pankso@650
|
1131 armv7)
|
pankso@650
|
1132 flags="-Os -march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=softfp -pipe"
|
pankso@650
|
1133 host="$ARCH-slitaz-linux-gnueabi" ;;
|
pankso@395
|
1134 x86_64)
|
pankso@653
|
1135 flags="-02 -march=generic -pipe"
|
pankso@650
|
1136 host="$ARCH-slitaz-linux" ;;
|
pankso@395
|
1137 esac
|
pankso@650
|
1138 sed -i \
|
pankso@650
|
1139 -e s"/CFLAGS=.*/CFLAGS=\"$flags\"/" \
|
pankso@650
|
1140 -e s"/HOST_SYSTEM=.*/HOST_SYSTEM=$host/" \
|
pankso@650
|
1141 /etc/slitaz/cook.conf
|
pankso@359
|
1142 . /etc/slitaz/cook.conf
|
pankso@443
|
1143 sysroot=$CROSS_TREE/sysroot
|
pankso@443
|
1144 tools=/cross/$arch/tools
|
pankso@443
|
1145 root=$sysroot
|
pankso@443
|
1146 CC=$tools/bin/${HOST_SYSTEM}-gcc
|
al@596
|
1147 # L10n: keep the same width of translations to get a consistent view
|
al@596
|
1148 _ "Target arch : \$ARCH"
|
al@596
|
1149 _ "Configure args : \$CONFIGURE_ARGS"
|
pankso@650
|
1150 _ "Build flags : \$flags"
|
al@596
|
1151 _ "Arch sysroot : \$sysroot"
|
al@596
|
1152 _ "Tools prefix : \$tools/bin"
|
paul@455
|
1153 # Tell the packages manager where to find packages.
|
al@596
|
1154 _ "Packages DB : \${root}\$DB"
|
pankso@429
|
1155 mkdir -p ${root}$INSTALLED
|
pankso@426
|
1156 cd ${root}$DB && rm -f *.bak
|
pankso@426
|
1157 for list in packages.list packages.desc packages.equiv packages.md5
|
pankso@426
|
1158 do
|
pankso@426
|
1159 rm -f $list && ln -s $SLITAZ/packages/$list $list
|
pankso@426
|
1160 done
|
pankso@429
|
1161 # We must have the cross compiled glibc-base installed or default
|
pankso@429
|
1162 # i486 package will be used as dep by tazpkg and then break the
|
pankso@429
|
1163 # cross environment
|
pankso@429
|
1164 if [ ! -f "${root}$INSTALLED/glibc-base/receipt" ]; then
|
al@596
|
1165 colorize 36 $(_ "WARNING: (e)glibc-base is not installed in sysroot")
|
pankso@429
|
1166 fi
|
pankso@426
|
1167 # Show GCC version or warn if not yet compiled.
|
pankso@406
|
1168 if [ -x $CC ]; then
|
al@596
|
1169 _ "Cross compiler : \${HOST_SYSTEM}-gcc"
|
pankso@359
|
1170 else
|
al@596
|
1171 colorize 36 $(_ "C compiler is missing: \${HOST_SYSTEM}-gcc")
|
al@596
|
1172 _ "Run 'cross compile' to cook a toolchain"
|
pankso@397
|
1173 fi
|
al@596
|
1174 separator; newline ;;
|
pankso@9
|
1175 test)
|
pankso@9
|
1176 # Test a cook environment.
|
al@596
|
1177 _ "Cook test: testing the cook environment" | log
|
pankso@9
|
1178 [ ! -d "$WOK" ] && exit 1
|
pankso@9
|
1179 [ ! -d "$WOK/cooktest" ] && cp -r $DATA/cooktest $WOK
|
pankso@9
|
1180 cook cooktest ;;
|
pankso@1
|
1181 new)
|
pankso@1
|
1182 # Create the package folder and an empty receipt.
|
pankso@1
|
1183 pkg="$2"
|
pankso@1
|
1184 [ "$pkg" ] || usage
|
pankso@427
|
1185 newline
|
pankso@1
|
1186 if [ -d "$WOK/$pkg" ]; then
|
al@596
|
1187 _ "\$pkg package already exists."
|
al@596
|
1188 exit 1
|
pankso@1
|
1189 fi
|
al@596
|
1190 _n "Creating \$WOK/\$pkg"
|
pankso@1
|
1191 mkdir $WOK/$pkg && cd $WOK/$pkg && status
|
al@596
|
1192 _n "Preparing the package receipt..."
|
pankso@1
|
1193 cp $DATA/receipt .
|
pankso@1
|
1194 sed -i s"/^PACKAGE=.*/PACKAGE=\"$pkg\"/" receipt
|
pankso@427
|
1195 status && newline
|
pankso@358
|
1196
|
pankso@196
|
1197 # Interactive mode, asking and seding.
|
pankso@196
|
1198 case "$3" in
|
paul@214
|
1199 --interactive|-x)
|
al@596
|
1200 _ "Entering interactive mode..."
|
paul@211
|
1201 separator
|
al@596
|
1202 _ "Package : \$pkg"
|
al@596
|
1203 _n "Version : " ; read answer
|
al@596
|
1204 sed -i s/'VERSION=\"\"'/"VERSION=\"$answer\""/ receipt
|
al@596
|
1205 _n "Category : " ; read answer
|
al@596
|
1206 sed -i s/'CATEGORY=\"\"'/"CATEGORY=\"$answer\""/ receipt
|
al@596
|
1207 # L10n: Short description
|
al@596
|
1208 _n "Short desc : " ; read answer
|
al@596
|
1209 sed -i s/'SHORT_DESC=\"\"'/"SHORT_DESC=\"$answer\""/ receipt
|
al@596
|
1210 _n "Maintainer : " ; read answer
|
al@596
|
1211 sed -i s/'MAINTAINER=\"\"'/"MAINTAINER=\"$answer\""/ receipt
|
al@596
|
1212 _n "License : " ; read answer
|
al@596
|
1213 sed -i s/'LICENSE=\"\"'/"LICENSE=\"$answer\""/ receipt
|
al@596
|
1214 _n "Web site : " ; read answer
|
al@596
|
1215 sed -i s#'WEB_SITE=\"\"'#"WEB_SITE=\"$answer\""# receipt
|
pankso@427
|
1216 newline
|
pankso@196
|
1217 # Wget URL.
|
al@596
|
1218 _ "Wget URL to download source tarball."
|
al@596
|
1219 _n "Example : " ; echo '$GNU_MIRROR/$PACKAGE/$TARBALL'
|
al@596
|
1220 _n "Wget url : " ; read answer
|
al@596
|
1221 sed -i s#'WGET_URL=\"$TARBALL\"'#"WGET_URL=\"$answer\""# receipt
|
pankso@196
|
1222 # Ask for a stuff dir.
|
al@596
|
1223 _n "Do you need a stuff directory? (y/N) : " ; read answer
|
al@596
|
1224 if [ "$answer" = "y" ]; then
|
al@596
|
1225 _n "Creating the stuff directory..."
|
pankso@196
|
1226 mkdir $WOK/$pkg/stuff && status
|
pankso@196
|
1227 fi
|
pankso@196
|
1228 # Ask for a description file.
|
al@596
|
1229 _n "Are you going to write a description? (y/N) : " ; read answer
|
al@596
|
1230 if [ "$answer" = "y" ]; then
|
al@596
|
1231 _n "Creating the description.txt file..."
|
pankso@427
|
1232 newline > $WOK/$pkg/description.txt && status
|
pankso@196
|
1233 fi
|
al@596
|
1234 separator; _ "Receipt is ready to use."; newline ;;
|
pankso@196
|
1235 esac ;;
|
pankso@1
|
1236 list)
|
pankso@1
|
1237 # Cook a list of packages (better use the Cooker since it will order
|
pankso@1
|
1238 # packages before executing cook).
|
pankso@1
|
1239 check_root
|
al@596
|
1240 [ -z "$2" ] && (newline; _ "No list in argument."; newline) && exit 1
|
al@596
|
1241 list2=$2
|
al@596
|
1242 [ ! -f "$2" ] && (newline; _ "No list found: \$list2"; newline) && exit 1
|
al@596
|
1243 _ "Cook list starting: \$list2" | log
|
pankso@1
|
1244 for pkg in $(cat $2)
|
pankso@1
|
1245 do
|
pankso@1
|
1246 cook $pkg || broken
|
pankso@1
|
1247 done ;;
|
pankso@1
|
1248 clean-wok)
|
pankso@1
|
1249 check_root
|
al@596
|
1250 newline; _n "Cleaning all packages files..."
|
pankso@1
|
1251 rm -rf $WOK/*/taz $WOK/*/install $WOK/*/source
|
al@596
|
1252 status; newline ;;
|
pankso@1
|
1253 clean-src)
|
pankso@1
|
1254 check_root
|
al@596
|
1255 newline; _n "Cleaning all packages sources..."
|
pankso@1
|
1256 rm -rf $WOK/*/source
|
al@596
|
1257 status; newline ;;
|
pankso@235
|
1258 pkgdb)
|
pankso@235
|
1259 # Create suitable packages list for TazPKG and only for built packages
|
pankso@235
|
1260 # as well as flavors files for TazLiTo. We dont need logs since we do it
|
paul@243
|
1261 # manually to ensure everything is fine before syncing the mirror.
|
pankso@239
|
1262 case "$2" in
|
pankso@239
|
1263 --flavors)
|
pankso@239
|
1264 continue ;;
|
pankso@239
|
1265 *)
|
pankso@240
|
1266 [ "$2" ] && PKGS="$2"
|
pankso@239
|
1267 [ ! -d "$PKGS" ] && \
|
al@596
|
1268 newline && _ "Packages directory doesn't exist" && \
|
al@596
|
1269 newline && exit 1 ;;
|
pankso@239
|
1270 esac
|
pankso@226
|
1271 time=$(date +%s)
|
pankso@239
|
1272 flavors=$SLITAZ/flavors
|
pankso@239
|
1273 live=$SLITAZ/live
|
pankso@235
|
1274 echo "cook:pkgdb" > $command
|
al@596
|
1275 _ "Cook pkgdb: Creating all packages lists" | log
|
al@596
|
1276 newline; _ "Creating lists for: \$PKGS"; separator
|
al@596
|
1277 datenow=$(date "$(_ '+%Y-%m-%d %H:%M')")
|
al@596
|
1278 _ "Cook pkgdb started: \$datenow"
|
pankso@133
|
1279 cd $PKGS
|
pankso@192
|
1280 rm -f packages.*
|
al@596
|
1281 _ "Creating: packages.list"
|
pankso@85
|
1282 ls -1 *.tazpkg | sed s'/.tazpkg//' > $PKGS/packages.list
|
al@596
|
1283 _ "Creating: packages.md5"
|
pankso@1
|
1284 md5sum *.tazpkg > $PKGS/packages.md5
|
gokhlayeh@297
|
1285 md5sum packages.md5 | cut -f1 -d' ' > ID
|
al@596
|
1286 _ "Creating lists from: \$WOK"
|
pankso@1
|
1287 cd $WOK
|
pankso@1
|
1288 for pkg in *
|
pankso@1
|
1289 do
|
pankso@1
|
1290 unset_receipt
|
pankso@1
|
1291 . $pkg/receipt
|
pascal@600
|
1292 # PACKED_SIZE and UNPACKED_SIZE are only in built receipt
|
pascal@600
|
1293 if [ -s $pkg/taz/*/receipt ]; then
|
pascal@600
|
1294 . $pkg/taz/*/receipt
|
pascal@600
|
1295 fi
|
pankso@1
|
1296 if [ -f "$PKGS/$PACKAGE-${VERSION}${EXTRAVERSION}.tazpkg" ]; then
|
pankso@192
|
1297 # packages.desc lets us search easily in DB
|
pankso@1
|
1298 cat >> $PKGS/packages.desc << EOT
|
pankso@235
|
1299 $PACKAGE | ${VERSION}$EXTRAVERSION | $SHORT_DESC | $CATEGORY | $WEB_SITE
|
pankso@1
|
1300 EOT
|
pankso@192
|
1301 # packages.txt used by tazpkg and tazpkg-web also to provide
|
pankso@192
|
1302 # a human readable package list with version and description.
|
pankso@192
|
1303 cat >> $PKGS/packages.txt << EOT
|
pankso@192
|
1304 $PACKAGE
|
pankso@235
|
1305 ${VERSION}$EXTRAVERSION
|
pankso@235
|
1306 $SHORT_DESC
|
pankso@235
|
1307 $PACKED_SIZE ($UNPACKED_SIZE installed)
|
pankso@358
|
1308
|
pankso@192
|
1309 EOT
|
pankso@192
|
1310 # packages.equiv is used by tazpkg install to check depends.
|
pankso@1
|
1311 for i in $PROVIDE; do
|
pankso@1
|
1312 DEST=""
|
pankso@1
|
1313 echo $i | fgrep -q : && DEST="${i#*:}:"
|
pankso@1
|
1314 if grep -qs ^${i%:*}= $PKGS/packages.equiv; then
|
pankso@1
|
1315 sed -i "s/^${i%:*}=/${i%:*}=$DEST$PACKAGE /" \
|
pankso@1
|
1316 $PKGS/packages.equiv
|
pankso@1
|
1317 else
|
pankso@1
|
1318 echo "${i%:*}=$DEST$PACKAGE" >> $PKGS/packages.equiv
|
pankso@1
|
1319 fi
|
pankso@1
|
1320 done
|
paul@197
|
1321 # files.list provides a list of all packages files.
|
pankso@194
|
1322 cat $pkg/taz/*/files.list | sed s/^/"$pkg: \0"/ >> \
|
pankso@194
|
1323 $PKGS/files.list
|
pankso@1
|
1324 fi
|
pankso@1
|
1325 done
|
pankso@358
|
1326
|
pankso@213
|
1327 # Display list size.
|
al@596
|
1328 _ "Done: packages.desc"
|
al@596
|
1329 _ "Done: packages.txt"
|
al@596
|
1330 _ "Done: packages.equiv"
|
pankso@358
|
1331
|
pankso@194
|
1332 # files.list.lzma
|
al@596
|
1333 _ "Creating: files.list.lzma"
|
pankso@235
|
1334 cd $PKGS && lzma e files.list files.list.lzma
|
pankso@194
|
1335 rm -f files.list
|
pankso@358
|
1336
|
pankso@235
|
1337 # Display some info.
|
pankso@1
|
1338 separator
|
pankso@1
|
1339 nb=$(ls $PKGS/*.tazpkg | wc -l)
|
pankso@226
|
1340 time=$(($(date +%s) - $time))
|
al@596
|
1341 # L10n: 's' is for seconds (cooking time)
|
al@596
|
1342 _ "Packages: \$nb - Time: \${time}s"; newline
|
pankso@358
|
1343
|
paul@243
|
1344 # Create all flavors files at once. Do we really need code to monitor
|
al@596
|
1345 # flavors changes? Lets just build them with packages lists before
|
pankso@235
|
1346 # syncing the mirror.
|
pankso@239
|
1347 [ "$2" == "--flavors" ] || exit 1
|
al@596
|
1348 [ ! -d "$flavors" ] && (_ "Missing flavors: \$flavors"; newline) && exit 1
|
pankso@239
|
1349 [ -d "$live" ] || mkdir -p $live
|
al@596
|
1350 _ "Creating flavors files in: \$live"
|
al@596
|
1351 _ "Cook pkgdb: Creating all flavors" | log
|
pankso@235
|
1352 separator
|
al@596
|
1353 _ "Recharging lists to use latest packages..."
|
pankso@329
|
1354 tazpkg recharge >/dev/null 2>/dev/null
|
pankso@358
|
1355
|
pankso@235
|
1356 # We need a custom tazlito config to set working dir to /home/slitaz.
|
pankso@235
|
1357 if [ ! -f "$live/tazlito.conf" ]; then
|
al@596
|
1358 _ "Creating configuration file: tazlito.conf"
|
pankso@235
|
1359 cp /etc/tazlito/tazlito.conf $live
|
pankso@235
|
1360 sed -i s@WORK_DIR=.*@WORK_DIR=\"/home/slitaz\"@ \
|
pankso@235
|
1361 $live/tazlito.conf
|
pankso@235
|
1362 fi
|
pankso@235
|
1363
|
pankso@239
|
1364 # Update Hg flavors repo and pack.
|
pankso@239
|
1365 [ -d "$flavors/.hg" ] && cd $flavors && hg pull -u
|
pankso@358
|
1366
|
pankso@239
|
1367 cd $live
|
al@596
|
1368 _ "Starting to generate flavors..."
|
pankso@235
|
1369 rm -f flavors.list *.flavor
|
pankso@235
|
1370 for i in $flavors/*
|
pankso@235
|
1371 do
|
pankso@235
|
1372 fl=$(basename $i)
|
al@596
|
1373 _ "Packing flavor: \$fl"
|
pankso@235
|
1374 tazlito pack-flavor $fl >/dev/null || exit 1
|
pankso@235
|
1375 tazlito show-flavor $fl --brief --noheader 2> \
|
pankso@235
|
1376 /dev/null >> flavors.list
|
pankso@235
|
1377 done
|
pankso@237
|
1378 cp -f $live/*.flavor $live/flavors.list $PKGS
|
al@596
|
1379 separator
|
al@596
|
1380 fl_size=$(du -sh $live | awk '{print $1}')
|
al@596
|
1381 _ "Flavors size: \$fl_size"; newline
|
al@596
|
1382 rm -f $command
|
al@596
|
1383 separator
|
al@596
|
1384 datenow=$(date "$(_ '+%Y-%m-%d %H:%M')")
|
al@596
|
1385 _ "Cook pkgdb end: \$datenow" ;;
|
pankso@1
|
1386 *)
|
pankso@1
|
1387 # Just cook and generate a package.
|
pankso@1
|
1388 check_root
|
pankso@1
|
1389 time=$(date +%s)
|
pankso@1
|
1390 pkg="$1"
|
pankso@1
|
1391 [ -z "$pkg" ] && usage
|
pankso@44
|
1392 receipt="$WOK/$pkg/receipt"
|
pankso@427
|
1393 check_pkg_in_wok && newline
|
pankso@47
|
1394
|
pankso@377
|
1395 unset inst
|
pankso@377
|
1396 unset_receipt
|
pankso@377
|
1397 . $receipt
|
pankso@377
|
1398
|
pankso@377
|
1399 # Handle cross compilation.
|
pankso@377
|
1400 #
|
pankso@377
|
1401 # CROSS_NOTE: Actually we are running an ARM cooker but running
|
paul@647
|
1402 # the cooker and building each commit in wok is not possible since
|
pankso@377
|
1403 # we dont cook the full wok for this arch. For ARM we need a set
|
paul@387
|
1404 # of packages to handle a touch screen desktop, servers but not
|
al@596
|
1405 # erlang.
|
pankso@377
|
1406 #
|
pankso@377
|
1407 # The temporary solution is to build only reviewed and tested
|
pankso@377
|
1408 # packages with HOST_ARCH set in receipt.
|
pankso@377
|
1409 case "$ARCH" in
|
pankso@377
|
1410 arm)
|
pankso@377
|
1411 if [ ! "$HOST_ARCH" ]; then
|
al@596
|
1412 _ "cook: HOST_ARCH is not set in \$pkg receipt"
|
al@596
|
1413 _ "cook: This package is not included in: \$ARCH"
|
al@596
|
1414 [ "$CROSS_BUGS" ] && _ "bugs: \$CROSS_BUGS"
|
al@596
|
1415 _ "Cook skip: \$pkg is not included in: \$ARCH" | log
|
pankso@427
|
1416 newline && exit 1
|
pankso@377
|
1417 fi ;;
|
pankso@377
|
1418 esac
|
pankso@377
|
1419
|
paul@387
|
1420 # Some packages are not included in some arch or fail to cross compile.
|
pankso@398
|
1421 : ${HOST_ARCH=i486}
|
pankso@381
|
1422 if ! $(echo "$HOST_ARCH" | fgrep -q $ARCH); then
|
al@596
|
1423 _ "cook: HOST_ARCH=\$HOST_ARCH"
|
al@596
|
1424 _ "cook: \$pkg doesn't cook or is not included in: \$ARCH"
|
al@596
|
1425 [ "$CROSS_BUGS" ] && _ "bugs: \$CROSS_BUGS"
|
al@596
|
1426 _ "Cook skip: \$pkg doesn't cook or is not included in: \$ARCH" | log
|
pankso@427
|
1427 newline && exit 1
|
pankso@377
|
1428 fi
|
pankso@377
|
1429
|
pankso@47
|
1430 # Skip blocked, 3 lines also for the Cooker.
|
pankso@151
|
1431 if grep -q "^$pkg$" $blocked && [ "$2" != "--unblock" ]; then
|
al@596
|
1432 _ "Blocked package: \$pkg"; newline
|
al@596
|
1433 exit 0
|
pankso@47
|
1434 fi
|
pankso@47
|
1435
|
pascal@289
|
1436 try_aufs_chroot "$@"
|
pascal@289
|
1437
|
pankso@47
|
1438 # Log and source receipt.
|
al@596
|
1439 _ "Cook started for: <a href='cooker.cgi?pkg=\$pkg'>\$pkg</a>" | log
|
pankso@16
|
1440 echo "cook:$pkg" > $command
|
pascal@285
|
1441
|
pascal@285
|
1442 # Display and log info if cook process stopped.
|
paul@647
|
1443 # FIXME: gettext not working (in single quotes) here!
|
al@596
|
1444 trap '_ "\n\nCook stopped: control-C\n\n" | \
|
pascal@285
|
1445 tee -a $LOGS/$pkg.log' INT
|
pascal@285
|
1446
|
pankso@1
|
1447 # Handle --options
|
pankso@1
|
1448 case "$2" in
|
pankso@1
|
1449 --clean|-c)
|
al@596
|
1450 _n "Cleaning: \$pkg"
|
pankso@1
|
1451 cd $WOK/$pkg && rm -rf install taz source
|
pankso@427
|
1452 status && newline && exit 0 ;;
|
pankso@1
|
1453 --install|-i)
|
pankso@1
|
1454 inst='yes' ;;
|
pankso@49
|
1455 --getsrc|-gs)
|
al@596
|
1456 _ "Getting source for: \$pkg"; separator
|
al@596
|
1457 get_source
|
al@596
|
1458 _ "Tarball: \$SRC/\$TARBALL"; newline
|
al@596
|
1459 exit 0 ;;
|
pankso@49
|
1460 --block|-b)
|
al@596
|
1461 _n "Blocking: \$pkg"
|
pankso@49
|
1462 [ $(grep "^$pkg$" $blocked) ] || echo "$pkg" >> $blocked
|
pankso@427
|
1463 status && newline && exit 0 ;;
|
pankso@49
|
1464 --unblock|-ub)
|
al@596
|
1465 _n "Unblocking: \$pkg"
|
pankso@49
|
1466 sed -i "/^${pkg}$/"d $blocked
|
pankso@427
|
1467 status && newline && exit 0 ;;
|
slaxemulator@501
|
1468 --pack)
|
slaxemulator@501
|
1469 if [ -d $WOK/$pkg/taz ]; then
|
slaxemulator@501
|
1470 rm -rf $WOK/$pkg/taz
|
slaxemulator@501
|
1471 [ -f $LOGS/$pkg-pack.log ] && rm -rf $LOGS/$pkg-pack.log
|
slaxemulator@501
|
1472 packit 2>&1 | tee -a $LOGS/$pkg-pack.log
|
slaxemulator@501
|
1473 clean_log
|
slaxemulator@501
|
1474 else
|
al@596
|
1475 _ "Need to build \$pkg." && exit 0
|
slaxemulator@501
|
1476 fi
|
slaxemulator@501
|
1477 exit 0 ;;
|
al@598
|
1478 --cdeps)
|
al@598
|
1479 [ ! -d $WOK/$pkg/taz ] && _ "Need to build \$pkg." && exit 0
|
al@598
|
1480 _ "Checking depends"; separator
|
al@598
|
1481 lddlist=/tmp/lddlist; touch $lddlist
|
al@598
|
1482 missing=/var/cache/missing.file
|
al@598
|
1483 # find all deps using ldd
|
al@598
|
1484 for exe in $(find $WOK/$pkg/taz -type f -perm +111); do
|
al@598
|
1485 [ "x$(dd if=$exe bs=4 count=1 2>/dev/null)" == "xELF" ] &&
|
al@598
|
1486 ldd $exe | sed 's| ||' | cut -d' ' -f1 >> $lddlist
|
al@598
|
1487 done
|
al@598
|
1488 # remove exe/so duplicates
|
al@598
|
1489 sort -u $lddlist > $lddlist.sorted
|
al@598
|
1490 # search packages
|
al@598
|
1491 for exefile in $(cat $lddlist.sorted); do
|
al@598
|
1492 search_file $exefile
|
al@598
|
1493 echo $found >> $lddlist.pkgs
|
al@598
|
1494 echo -n "."
|
al@598
|
1495 done
|
al@598
|
1496 echo
|
al@598
|
1497 # remove packages duplicates
|
al@598
|
1498 sort -u $lddlist.pkgs > $lddlist.final
|
al@598
|
1499 sort -u $missing > $missing.final
|
al@598
|
1500 rm -f $lddlist $lddlist.sorted $lddlist.pkgs $missing
|
al@598
|
1501 exit 0 ;;
|
pankso@1
|
1502 esac
|
pankso@1
|
1503
|
paul@62
|
1504 # Check if wanted is built now so we have separate log files.
|
pankso@295
|
1505 for wanted in $WANTED ; do
|
pascal@291
|
1506 if grep -q "^$wanted$" $blocked; then
|
al@596
|
1507 _ "WANTED package is blocked: \$wanted" | tee $LOGS/$pkg.log
|
pankso@427
|
1508 newline && rm -f $command && exit 1
|
pankso@217
|
1509 fi
|
pascal@291
|
1510 if grep -q "^$wanted$" $broken; then
|
al@596
|
1511 _ "WANTED package is broken: \$wanted" | tee $LOGS/$pkg.log
|
pankso@427
|
1512 newline && rm -f $command && exit 1
|
pankso@218
|
1513 fi
|
pascal@291
|
1514 if [ ! -d "$WOK/$wanted/install" ]; then
|
pascal@291
|
1515 cook "$wanted" || exit 1
|
pankso@137
|
1516 fi
|
pascal@291
|
1517 done
|
pankso@1
|
1518
|
pankso@1
|
1519 # Cook and pack or exit on error and log everything.
|
pascal@576
|
1520 cookit $@ 2>&1 | loglimit 50 > $LOGS/$pkg.log
|
pankso@15
|
1521 remove_deps | tee -a $LOGS/$pkg.log
|
pankso@1
|
1522 cookit_quality
|
pascal@576
|
1523 packit 2>&1 | loglimit 5 >> $LOGS/$pkg.log
|
pankso@1
|
1524 clean_log
|
pankso@33
|
1525
|
pankso@33
|
1526 # Exit if any error in packing.
|
al@596
|
1527 lerror=$(_n "ERROR")
|
pascal@615
|
1528 if grep -Ev "(/root/.cvspass|conftest|df: /|rm: can't remove)" $LOGS/$pkg.log | \
|
pascal@615
|
1529 grep -Eq "(^$lerror|: No such file or directory|not remade because of errors)"; then
|
pankso@33
|
1530 debug_info | tee -a $LOGS/$pkg.log
|
pankso@33
|
1531 rm -f $command && exit 1
|
pankso@33
|
1532 fi
|
pankso@358
|
1533
|
pankso@310
|
1534 # Create an XML feed
|
pankso@310
|
1535 gen_rss
|
pankso@358
|
1536
|
pankso@1
|
1537 # Time and summary
|
pankso@1
|
1538 time=$(($(date +%s) - $time))
|
pankso@1
|
1539 summary | tee -a $LOGS/$pkg.log
|
pankso@427
|
1540 newline
|
pankso@1
|
1541
|
pankso@428
|
1542 # We may want to install/update.
|
pankso@428
|
1543 install_package
|
pankso@358
|
1544
|
al@596
|
1545 # Finally we DON'T WANT to build the *-dev or packages with WANTED="$pkg"
|
pankso@17
|
1546 # You want automation: use the Cooker Build Bot.
|
pankso@18
|
1547 rm -f $command ;;
|
pankso@1
|
1548 esac
|
pankso@1
|
1549
|
pankso@1
|
1550 exit 0
|