cookutils annotate cook @ rev 610

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