tazwok annotate tazwok @ rev 201

Automated merge with http://repos.slitaz.org/tazwok-experimental
author Antoine Bodin <gokhlayeh@slitaz.org>
date Wed Jan 26 21:45:29 2011 +0100 (2011-01-26)
parents 874d0f334cbd 84421db4cf81
children dbf006430b6e
rev   line source
pankso@7 1 #!/bin/sh
pankso@7 2 # Tazwok - SliTaz source compiler and binary packages generator/cooker.
pankso@7 3 #
MikeDSmith25@82 4 # Tazwok can compile source packages and create binary packages suitable for
MikeDSmith25@82 5 # Tazpkg (Tiny Autonomous zone package manager). You can build individual
MikeDSmith25@82 6 # packages or a list of packages with one command, rebuild the full distro,
pankso@7 7 # generate a packages repository and also list and get info about packages.
pankso@7 8 #
pankso@106 9 # (C) 2007-2009 SliTaz - GNU General Public License.
pankso@7 10 #
pankso@7 11
gokhlayeh@186 12 VERSION=3.9.0
gokhlayeh@186 13 . /usr/lib/slitaz/libtaz
gokhlayeh@186 14 source_lib commons
pankso@7 15
gokhlayeh@186 16 # Use text instead of numbers, don't get $2 here if it's an option.
gokhlayeh@186 17 [ "$2" = "${2#--}" ] && PACKAGE=$2 && LIST=$2 && ARG=$2
gokhlayeh@186 18 COMMAND=$1
pankso@7 19
gokhlayeh@186 20 ########################################################################
gokhlayeh@186 21 # TAZWOK USAGE
gokhlayeh@186 22 ########################
gokhlayeh@186 23 # Print the usage (English).
pankso@7 24
pankso@7 25 usage ()
pankso@7 26 {
pankso@7 27 echo -e "\nSliTaz sources compiler and packages generator - Version: $VERSION\n
pankso@107 28 \033[1mUsage: \033[0m `basename $0` [command] [package|list|category|dir|id] [--option]
pankso@7 29 \033[1mCommands: \033[0m\n
pankso@7 30 usage Print this short usage.
pankso@7 31 stats Print Tazwok statistics from the config file and the wok.
pankso@133 32 edit Edit a package receipt in the current wok.
paul@121 33 build-depends Generate a list of packages to build a wok.
gokhlayeh@186 34 cmp|compare* Compare the wok and the cooked pkgs (--remove old pkgs).
pankso@7 35 list List all packages in the wok tree or by category.
MikeDSmith25@82 36 info Get information about a package in the wok.
pascal@92 37 check Check every receipt for common errors.
pankso@7 38 check-log Check the process log file of a package.
gokhlayeh@186 39 check-depends* Check every receipt for DEPENDS - doesn't scan ELF files.
erjo@159 40 check-src Check upstream tarball for package in the wok.
pankso@7 41 search Search for a package in the wok by pattern or name.
MikeDSmith25@82 42 compile Configure and build a package using the receipt rules.
pankso@7 43 genpkg Generate a suitable package for Tazpkg with the rules.
pankso@7 44 cook Compile and generate a package directly.
pankso@7 45 cook-list Cook all packages specified in the list by order.
gokhlayeh@186 46 cook-commit Cook all modified receipts.
gokhlayeh@186 47 cook-all Cook all packages excepted toolchain.
gokhlayeh@186 48 cook-toolchain Cook the toolchain packages.
gokhlayeh@186 49 gen-cooklist Generate a sorted cooklist using packages or list (--list) in argument.
gokhlayeh@186 50 sort-cooklist Sort the cooklist given in argument.
gokhlayeh@186 51 get-src Download the tarball of the package given in argument.
pankso@7 52 clean Clean all generated files in the package tree.
pankso@7 53 new-tree Prepare a new package tree and receipt (--interactive).
gokhlayeh@186 54 gen-list (Re-)Generate a packages list for a repository.
gokhlayeh@186 55 gen-wok-db (Re-)Generate wok lists with depends and wanted datas.
pankso@7 56 gen-clean-wok Gen a clean wok in a dir ('clean-wok' cleans current wok).
gokhlayeh@186 57 clean-wok Clean entirely the wok.
pankso@107 58 remove Remove a package from the wok.
pankso@108 59 hgup Pull and update a wok under Hg.
pankso@108 60 maintainers List all maintainers in the wok.
gokhlayeh@186 61 maintained-by List packages maintained by a contributor.\n
gokhlayeh@186 62
gokhlayeh@186 63 You can use `basename $0` command --help to list avaible options.
gokhlayeh@186 64 \033[1mImportant - *: \033[0m Commands which need a rewrite."
pankso@7 65 }
pankso@7 66
gokhlayeh@186 67 # This function display an error message without returning any error code.
gokhlayeh@186 68 # It also log the message in source package's warnings.txt; this file can be
gokhlayeh@186 69 # used on an eventual package page on website to display cooking warnings.
gokhlayeh@186 70 tazwok_warning()
pankso@7 71 {
gokhlayeh@186 72 echo -e "tazwok: $1" >&2
gokhlayeh@186 73 echo -e "$1" >> $WOK/${WANTED:-$PACKAGE}/warning.txt
gokhlayeh@186 74 return
pankso@7 75 }
pankso@7 76
gokhlayeh@186 77 ########################################################################
gokhlayeh@186 78 # TAZWOK VARIABLES & INITIAL CONFIGURATION
gokhlayeh@186 79 ########################
gokhlayeh@186 80
gokhlayeh@186 81 get_tazwok_config()
pankso@7 82 {
gokhlayeh@186 83 # Get configuration file.
gokhlayeh@186 84 get_config
gokhlayeh@186 85
gokhlayeh@186 86 # Define & get options.
gokhlayeh@186 87 get_options_list="$get_options_list SLITAZ_DIR SLITAZ_VERSION undigest"
gokhlayeh@186 88 get_options
gokhlayeh@186 89
gokhlayeh@186 90 if [ "$undigest" ]; then
gokhlayeh@186 91 LOCAL_REPOSITORY=$SLITAZ_DIR/$undigest
gokhlayeh@186 92 else
gokhlayeh@186 93 LOCAL_REPOSITORY=$SLITAZ_DIR/$SLITAZ_VERSION
pankso@7 94 fi
gokhlayeh@186 95
gokhlayeh@186 96 # The path to the most important files/dir used by Tazwok.
gokhlayeh@186 97 PACKAGES_REPOSITORY=$LOCAL_REPOSITORY/packages
gokhlayeh@186 98 WOK=$LOCAL_REPOSITORY/wok
gokhlayeh@186 99 INCOMING_REPOSITORY=$LOCAL_REPOSITORY/packages-incoming
gokhlayeh@186 100 SOURCES_REPOSITORY=$LOCAL_REPOSITORY/src
gokhlayeh@186 101 set_common_path
gokhlayeh@186 102
gokhlayeh@186 103 # /!\ This part needs some changes.
gokhlayeh@186 104 # Basically, get theses files from the net if they are missing.
gokhlayeh@186 105 dbtype=wok
gokhlayeh@186 106 dep_db=$INCOMING_REPOSITORY/wok-depends.txt
gokhlayeh@186 107 wan_db=$INCOMING_REPOSITORY/wok-wanted.txt
gokhlayeh@186 108 target_db=$INCOMING_REPOSITORY/wok-depends.txt
gokhlayeh@186 109
gokhlayeh@186 110 # Check commons directories, create them if user is root.
gokhlayeh@186 111 if test $(id -u) = 0 ; then
gokhlayeh@186 112 check_dir $WOK || chmod 777 $WOK
gokhlayeh@186 113 check_dir $PACKAGES_REPOSITORY
gokhlayeh@186 114 check_dir $SOURCES_REPOSITORY
gokhlayeh@186 115 check_dir $INCOMING_REPOSITORY
gokhlayeh@186 116 check_dir $LOCAL_REPOSITORY/log
gokhlayeh@186 117 fi
gokhlayeh@186 118
gokhlayeh@186 119 # Some files are needed by tazwok in PACKAGES_REPOSITORY. Create
gokhlayeh@186 120 # them if they are missing.
gokhlayeh@186 121 for file in broken blocked commit incoming genpkglist cooklist; do
gokhlayeh@186 122 [ ! -f $PACKAGES_REPOSITORY/$file ] && touch $PACKAGES_REPOSITORY/$file
gokhlayeh@186 123 done
gokhlayeh@186 124
gokhlayeh@186 125 # Limit memory usage.
gokhlayeh@186 126 ulimit -v $(awk '/MemTotal/ { print int(($2*80)/100) }' < /proc/meminfo)
pankso@7 127 }
pankso@7 128
gokhlayeh@186 129 # Used in several functions.
gokhlayeh@186 130 set_common_path()
gokhlayeh@186 131 {
gokhlayeh@186 132 # The receipt is used to compile the source code and
gokhlayeh@186 133 # generate suitable packages for Tazpkg.
gokhlayeh@186 134 RECEIPT="$WOK/$PACKAGE/receipt"
gokhlayeh@186 135
gokhlayeh@186 136 # The path to the process log file.
gokhlayeh@186 137 LOG="$WOK/$PACKAGE/process.log"
gokhlayeh@186 138 }
gokhlayeh@186 139
gokhlayeh@186 140 ########################################################################
gokhlayeh@186 141 # TAZWOK CHECK FUNCTIONS
gokhlayeh@186 142 ########################
gokhlayeh@186 143
pankso@7 144 # Check for a package name on cmdline.
pankso@7 145 check_for_package_on_cmdline()
pankso@7 146 {
gokhlayeh@186 147 if [ ! "$PACKAGE" ]; then
gokhlayeh@186 148 echo -e "\nYou must specify a package name on the command line." >&2
gokhlayeh@186 149 echo -e "Example : tazwok $COMMAND package\n" >&2
gokhlayeh@186 150 exit 1
pankso@7 151 fi
pankso@7 152 }
pankso@7 153
pankso@7 154 # Check for the receipt of a package used to cook.
pankso@7 155 check_for_receipt()
pankso@7 156 {
pankso@7 157 if [ ! -f "$RECEIPT" ]; then
gokhlayeh@186 158 echo -e "\nUnable to find the receipt : $RECEIPT\n" >&2
gokhlayeh@186 159 exit 1
pankso@7 160 fi
pankso@7 161 }
pankso@7 162
pankso@7 163 # Check for a specified file list on cmdline.
pankso@7 164 check_for_list()
pankso@7 165 {
gokhlayeh@186 166 if [ ! "$LIST" ]; then
gokhlayeh@186 167 echo -e "\nPlease specify the path to the list of packages to cook.\n" >&2
gokhlayeh@186 168 exit 1
pankso@7 169 fi
gokhlayeh@186 170
MikeDSmith25@82 171 # Check if the list of packages exists.
pankso@7 172 if [ -f "$LIST" ]; then
pankso@7 173 LIST=`cat $LIST`
pankso@7 174 else
gokhlayeh@186 175 echo -e "\nUnable to find $LIST packages list.\n" >&2
gokhlayeh@186 176 exit 1
pankso@7 177 fi
gokhlayeh@186 178
gokhlayeh@186 179 if [ ! "$LIST" ]; then
gokhlayeh@186 180 echo -e "\nList is empty.\n" >&2
gokhlayeh@186 181 exit 1
gokhlayeh@186 182 fi
gokhlayeh@186 183 }
gokhlayeh@186 184
gokhlayeh@186 185
gokhlayeh@186 186 ########################################################################
gokhlayeh@186 187 # TAZWOK CORE FUNCTIONS
gokhlayeh@186 188 ########################
gokhlayeh@186 189
gokhlayeh@186 190 remove_src()
gokhlayeh@186 191 {
gokhlayeh@186 192 look_for_cookopt !remove_src && return
gokhlayeh@186 193 if [ ! -d $WOK/$PACKAGE/install ] && [ "$_pkg" ] && [ -d "$_pkg" ]; then
gokhlayeh@186 194 check_for_var_modification _pkg src || return
gokhlayeh@186 195 mv "$_pkg" $WOK/$PACKAGE/install
gokhlayeh@186 196 fi
gokhlayeh@186 197
gokhlayeh@186 198 # Don't remove sources if a package use src variable in his
gokhlayeh@186 199 # genpkg_rules: it maybe need something inside.
gokhlayeh@186 200 for i in $PACKAGE $(look_for_rwanted); do
gokhlayeh@186 201 sed -n '/^genpkg_rules\(\)/','/}/'p $WOK/$i/receipt | \
gokhlayeh@195 202 fgrep -q '$src' && tazwok_warning "Sources will not be removed \
gokhlayeh@186 203 because $i use \$src in his receipt." && return
gokhlayeh@186 204 done
gokhlayeh@186 205
gokhlayeh@186 206 report step "Removing sources directory"
gokhlayeh@186 207 rm -fr "$src"
gokhlayeh@186 208 report end-step
gokhlayeh@186 209 }
gokhlayeh@186 210
gokhlayeh@186 211 # Check $COOK_OPT; usage : get_cookopt particular_opt
gokhlayeh@186 212 # Return error if not founded
gokhlayeh@186 213 # Return args if the opt is in the format opt=arg1:arg2:etc
gokhlayeh@186 214 look_for_cookopt()
gokhlayeh@186 215 {
gokhlayeh@186 216 for arg in $COOK_OPT; do
gokhlayeh@186 217 case $arg in
gokhlayeh@186 218 $1=*)
gokhlayeh@186 219 arg=${arg#$1=}
gokhlayeh@186 220 while [ "$arg" ]; do
gokhlayeh@186 221 echo "${arg%%:*}"
gokhlayeh@186 222 [ "${arg/:}" = "$arg" ] && return
gokhlayeh@186 223 arg=${arg#*:}
gokhlayeh@186 224 done
gokhlayeh@186 225 ;;
gokhlayeh@186 226 $1)
gokhlayeh@186 227 return
gokhlayeh@186 228 ;;
gokhlayeh@186 229 esac
gokhlayeh@186 230 done
gokhlayeh@186 231 return 1
pankso@7 232 }
pankso@7 233
pankso@7 234 # Check for the wanted package if specified in WANTED
paul@166 235 # receipt variable. Set the $src/$_pkg variable to help compile
paul@166 236 # and generate packages.
pankso@7 237 check_for_wanted()
pankso@7 238 {
gokhlayeh@186 239 if [ "$WANTED" ]; then
gokhlayeh@186 240 report "Checking for the wanted package"
pankso@7 241 if [ ! -d "$WOK/$WANTED" ]; then
gokhlayeh@186 242 report exit "\nWanted package is missing in the work directory.\n"
pankso@7 243 fi
gokhlayeh@186 244
erjo@38 245 # Checking for buildtree of Wanted package
pankso@39 246 if [ ! -d "$WOK/$WANTED/taz" ]; then
erjo@38 247 echo -e "\n\nSource files of wanted package is missing in the work directory."
erjo@38 248 echo -n "Would you like to build the missing package (y/N) ? " ; read anser
erjo@38 249 if [ "$anser" == "y" ]; then
erjo@38 250 tazwok cook $WANTED
erjo@38 251 else
gokhlayeh@186 252 report exit "\nWanted package source tree is missing in the work directory.\n"
erjo@38 253 fi
erjo@38 254 fi
gokhlayeh@186 255 report end-step
gokhlayeh@186 256
pankso@7 257 # Set wanted src path.
gokhlayeh@186 258 set_src_path && set_pkg_path
gokhlayeh@186 259
pankso@7 260 fi
pankso@7 261 }
pankso@7 262
erjo@38 263
pankso@40 264 # Check for build dependencies, notify user and install if specified.
pankso@18 265 check_for_build_depends()
pankso@18 266 {
gokhlayeh@186 267 report step "Looking for build dependencies"
gokhlayeh@186 268
gokhlayeh@186 269 # Keep the list of previously installed build_depends then compare
gokhlayeh@186 270 # it with new build_depends to know what to install and what to
gokhlayeh@186 271 # what to remove.
gokhlayeh@186 272 plan_remove=" $MISSING_PACKAGE $remove_later "
gokhlayeh@186 273 [ ! "${plan_remove// }" ] && unset plan_remove
gokhlayeh@186 274 unset MISSING_PACKAGE remove_later
gokhlayeh@186 275 rwanted=$(look_for_rwanted)
gokhlayeh@186 276
gokhlayeh@186 277 for pkg in $(scan $PACKAGE --look_for=bdep --with_dev | \
gokhlayeh@195 278 fgrep -v -e "Don't make the command fail" $(for i in $(look_for_rwanted); do echo " -e $i"; done))
pankso@18 279 do
gokhlayeh@186 280
gokhlayeh@186 281 # Delay the removing of previous cook depends if they are needed
gokhlayeh@186 282 # for next cook too.
gokhlayeh@186 283 if [ ! -d "$INSTALLED/$pkg" ] ; then
gokhlayeh@186 284 MISSING_PACKAGE="$MISSING_PACKAGE $pkg"
gokhlayeh@186 285 fi
gokhlayeh@186 286 if [ "$plan_remove" != "${plan_remove/ $pkg }" ]; then
gokhlayeh@186 287 plan_remove="${plan_remove/ $pkg / }"
gokhlayeh@186 288 remove_later="$remove_later $pkg"
gokhlayeh@186 289 fi
gokhlayeh@186 290 if grep -q ^$pkg$ $PACKAGES_REPOSITORY/broken; then
gokhlayeh@186 291 broken="$broken$pkg "
pankso@18 292 fi
pankso@18 293 done
gokhlayeh@186 294
gokhlayeh@186 295 # Don't cook if a depend is broken.
gokhlayeh@186 296 if [ "$broken" ]; then
gokhlayeh@186 297 MISSING_PACKAGE=$plan_remove
gokhlayeh@186 298 echo "Can't cook $PACKAGE because broken depend(s) : $broken" >&2
gokhlayeh@186 299 unset plan_remove broken
gokhlayeh@186 300
gokhlayeh@186 301 # Set report step to failed.
gokhlayeh@186 302 report_return_code=1
gokhlayeh@186 303 report end-step
gokhlayeh@186 304 return 1
gokhlayeh@186 305 fi
gokhlayeh@186 306 if [ "$MISSING_PACKAGE" ]; then
gokhlayeh@186 307 install_missing()
gokhlayeh@186 308 {
gokhlayeh@186 309 echo "Installing missing packages : $MISSING_PACKAGE"
gokhlayeh@186 310 for pkg in $MISSING_PACKAGE; do
gokhlayeh@186 311 [ -d "$INSTALLED/$pkg" ] || tazpkg get-install $pkg
gokhlayeh@186 312 done
gokhlayeh@186 313 }
gokhlayeh@186 314 if [ "$auto_install" = yes ]; then
gokhlayeh@186 315 install_missing
gokhlayeh@186 316 else
gokhlayeh@186 317 echo "================================================================================"
gokhlayeh@186 318 for pkg in $MISSING_PACKAGE
gokhlayeh@186 319 do
pankso@18 320 echo "Missing : $pkg"
gokhlayeh@186 321 done
gokhlayeh@186 322 echo "================================================================================"
gokhlayeh@186 323 echo "You can continue, exit or install missing dependencies."
gokhlayeh@186 324 echo -n "Install, continue or exit (install/y/N) ? "; read answer
gokhlayeh@186 325 case $answer in
gokhlayeh@186 326 install)
gokhlayeh@186 327 install_missing ;;
gokhlayeh@186 328 y|yes)
gokhlayeh@186 329 unset MISSING_PACKAGE;;
gokhlayeh@186 330 *)
gokhlayeh@186 331 report stop
gokhlayeh@186 332 exit 0 ;;
gokhlayeh@186 333 esac
gokhlayeh@186 334 fi
gokhlayeh@186 335 fi
gokhlayeh@186 336 report end-step
gokhlayeh@186 337 remove_build_depends $plan_remove
gokhlayeh@186 338 unset plan_remove
gokhlayeh@186 339 }
gokhlayeh@186 340
gokhlayeh@186 341 remove_build_depends()
gokhlayeh@186 342 {
gokhlayeh@186 343 [ "$1" ] || return
gokhlayeh@186 344 report step "Removing previous build dependencies"
gokhlayeh@186 345 echo "Removing theses packages : $@"
gokhlayeh@186 346 for pkg in $@; do
gokhlayeh@186 347 [ -d "$INSTALLED/$pkg" ] && echo y | tazpkg remove $pkg
gokhlayeh@186 348 done
gokhlayeh@186 349 report end-step
gokhlayeh@186 350 }
gokhlayeh@186 351
gokhlayeh@186 352 # Check if we can use the new way to handle tarball
gokhlayeh@186 353 # or if we keep the previous method by check for
gokhlayeh@186 354 # _pkg=/src= in receipt and reverse-wanted.
gokhlayeh@186 355 check_for_var_modification()
gokhlayeh@186 356 {
gokhlayeh@186 357 for var in $@; do
gokhlayeh@186 358 for pkg in $PACKAGE $(look_for_wanted) $(look_for_rwanted); do
gokhlayeh@186 359 [ -f $WOK/$pkg/receipt ] || continue
gokhlayeh@195 360 fgrep -q "$var=" $WOK/$pkg/receipt && return 1
pankso@18 361 done
gokhlayeh@186 362 done
gokhlayeh@186 363
gokhlayeh@186 364 # Tweak to make if; then...; fi function working with this one.
gokhlayeh@186 365 echo -n ""
gokhlayeh@186 366 }
gokhlayeh@186 367
gokhlayeh@186 368 set_src_path()
gokhlayeh@186 369 {
gokhlayeh@186 370 if check_for_var_modification src _pkg; then
gokhlayeh@186 371 src=$WOK/${WANTED:-$PACKAGE}/${WANTED:-$PACKAGE}-$VERSION
gokhlayeh@186 372 else
gokhlayeh@186 373 src=$WOK/${WANTED:-$PACKAGE}/${SOURCE:-${WANTED:-$PACKAGE}}-$VERSION
pankso@18 374 fi
pankso@18 375 }
pascal@76 376
gokhlayeh@186 377 set_pkg_path()
gokhlayeh@186 378 {
gokhlayeh@186 379 if [ -d $WOK/${WANTED:-$PACKAGE}/install ] ; then
gokhlayeh@186 380 _pkg=$WOK/${WANTED:-$PACKAGE}/install
gokhlayeh@186 381 else
gokhlayeh@186 382 _pkg=$src/_pkg
gokhlayeh@186 383 fi
gokhlayeh@186 384
gokhlayeh@186 385 }
gokhlayeh@186 386
gokhlayeh@186 387 # Output $VERSION-$EXTRAVERSION using packages.txt
gokhlayeh@186 388 get_pkg_version()
gokhlayeh@186 389 {
gokhlayeh@186 390 [ "$PACKAGE" ] || return
gokhlayeh@186 391 grep -A1 -sh ^$PACKAGE$ $1/packages.txt | tail -1 | sed 's/ *//'
gokhlayeh@186 392 }
gokhlayeh@186 393
gokhlayeh@186 394
gokhlayeh@186 395 remove_previous_tarball()
gokhlayeh@186 396 {
gokhlayeh@186 397 [ "$prev_VERSION" ] || return
gokhlayeh@186 398 if [ "$VERSION" != "$prev_VERSION" ]; then
gokhlayeh@186 399 rm -f $SOURCES_REPOSITORY/$PACKAGE-$prev_VERSION.tar.lzma
gokhlayeh@186 400 fi
gokhlayeh@186 401 }
gokhlayeh@186 402
gokhlayeh@186 403 remove_previous_package()
gokhlayeh@186 404 {
gokhlayeh@186 405 [ "$prev_VERSION" ] || return
gokhlayeh@186 406 if [ "$VERSION$EXTRAVERSION" != "$prev_VERSION" ]; then
gokhlayeh@186 407 rm -f $1/$PACKAGE-$prev_VERSION.tazpkg
gokhlayeh@186 408 fi
gokhlayeh@186 409 }
gokhlayeh@186 410
gokhlayeh@186 411 # Check for src tarball and wget if needed.
gokhlayeh@186 412 check_for_tarball()
gokhlayeh@186 413 {
gokhlayeh@186 414 if [ "$WGET_URL" ]; then
gokhlayeh@186 415 report step "Checking for source tarball"
gokhlayeh@186 416
gokhlayeh@186 417 if [ ! -f "$SOURCES_REPOSITORY/$TARBALL" ] && \
gokhlayeh@186 418 [ ! -f "$SOURCES_REPOSITORY/$PACKAGE-$VERSION.tar.lzma" ] ; then
gokhlayeh@186 419 cd $SOURCES_REPOSITORY
gokhlayeh@186 420 download $WGET_URL
gokhlayeh@186 421
gokhlayeh@186 422 # If source tarball is unreachable, try to find it on SliTaz
gokhlayeh@186 423 # mirror.
gokhlayeh@186 424 if [ ! -f "$SOURCES_REPOSITORY/$TARBALL" ]; then
gokhlayeh@186 425 report step "Download failed, try with mirror copy... "
gokhlayeh@186 426 download http://mirror.slitaz.org/sources/packages/${PACKAGE:0:1}/$PACKAGE-$VERSION.tar.lzma
gokhlayeh@186 427 fi
gokhlayeh@186 428 if [ ! -f "$SOURCES_REPOSITORY/$TARBALL" ] && \
gokhlayeh@186 429 [ ! -f "$SOURCES_REPOSITORY/$PACKAGE-$VERSION.tar.lzma" ]; then
gokhlayeh@186 430 report step "Download failed, try with mirror copy (again)... "
gokhlayeh@186 431 file=$(basename $WGET_URL)
gokhlayeh@186 432 download http://mirror.slitaz.org/sources/packages/${file:0:1}/$file
gokhlayeh@186 433 fi
gokhlayeh@186 434
gokhlayeh@186 435 # Exit if download failed to avoid errors.
gokhlayeh@186 436 if [ ! -f "$SOURCES_REPOSITORY/$TARBALL" ]; then
gokhlayeh@186 437 echo -e "\nDownload failed, exiting. Please check WGET_URL variable.\n" >&2
gokhlayeh@186 438 report end-step
gokhlayeh@186 439 return 1
gokhlayeh@186 440 fi
gokhlayeh@186 441
gokhlayeh@186 442 fi
gokhlayeh@186 443 report end-step
gokhlayeh@186 444
gokhlayeh@186 445 # Untaring source if necessary. We don't need to extract source if
gokhlayeh@186 446 # the package is built with a wanted source package.
gokhlayeh@186 447 if [ ! "$WANTED" ]; then
gokhlayeh@186 448 report step "Untaring source tarball"
gokhlayeh@186 449 if [ "$target" ]; then
gokhlayeh@186 450 src="$target"
gokhlayeh@186 451 else
gokhlayeh@186 452 set_src_path
gokhlayeh@186 453 fi
gokhlayeh@186 454 if [ ! -d "$src" ]; then
gokhlayeh@186 455
gokhlayeh@186 456 # Log process.
gokhlayeh@186 457 echo "untaring source tarball" >> $LOG
gokhlayeh@186 458
gokhlayeh@186 459 tmp_src=$WOK/$PACKAGE/tmp-src-$$
gokhlayeh@186 460 mkdir $tmp_src
gokhlayeh@186 461 if [ -f "$SOURCES_REPOSITORY/$PACKAGE-$VERSION.tar.lzma" ]; then
gokhlayeh@186 462 lzma d $SOURCES_REPOSITORY/$PACKAGE-$VERSION.tar.lzma -so | \
gokhlayeh@186 463 tar xf - -C $tmp_src
gokhlayeh@186 464 else
gokhlayeh@186 465 case "$TARBALL" in
gokhlayeh@195 466 *zip|*xpi) { cd $tmp_src; unzip -o $SOURCES_REPOSITORY/$TARBALL; };;
gokhlayeh@186 467 *bz2) tar xjf $SOURCES_REPOSITORY/$TARBALL -C $tmp_src;;
gokhlayeh@186 468 *tar) tar xf $SOURCES_REPOSITORY/$TARBALL -C $tmp_src;;
gokhlayeh@186 469 *lzma) unlzma -c $SOURCES_REPOSITORY/$TARBALL | tar xf - -C $tmp_src;;
gokhlayeh@186 470 *xz) unxz -c $SOURCES_REPOSITORY/$TARBALL | tar xf - -C $tmp_src;;
gokhlayeh@186 471 *Z) uncompress -c $SOURCES_REPOSITORY/$TARBALL | tar xf - -C $tmp_src;;
gokhlayeh@186 472 *) tar xzf $SOURCES_REPOSITORY/$TARBALL -C $tmp_src;;
gokhlayeh@186 473 esac || return 1
gokhlayeh@186 474
gokhlayeh@186 475 # Check if uncompressed tarbal is in a root dir or not.
gokhlayeh@186 476 if [ "$(ls -A $tmp_src | wc -l)" -gt 1 ]; then
gokhlayeh@186 477 if check_for_var_modification src _pkg; then
gokhlayeh@186 478 mv $tmp_src $tmp_src-1
gokhlayeh@186 479 mkdir $tmp_src
gokhlayeh@186 480 mv $tmp_src-1 $tmp_src/$PACKAGE-$VERSION
gokhlayeh@186 481 else
gokhlayeh@186 482 mv $tmp_src/* $WOK/$PACKAGE
gokhlayeh@186 483 repack_src=no
gokhlayeh@186 484 rm -r $tmp_src
gokhlayeh@186 485 fi
gokhlayeh@186 486 fi
gokhlayeh@186 487
gokhlayeh@186 488 if [ "$repack_src" = yes ]; then
gokhlayeh@186 489 report step "Repacking sources in .tar.lzma format"
gokhlayeh@186 490 cd $tmp_src
gokhlayeh@186 491 tar -c * | lzma e $SOURCES_REPOSITORY/$PACKAGE-$VERSION.tar.lzma -si
gokhlayeh@186 492 rm $SOURCES_REPOSITORY/$TARBALL
gokhlayeh@186 493 prev_VERSION=$(get_pkg_version $INCOMING_REPOSITORY)
gokhlayeh@186 494
gokhlayeh@186 495 # Remove previous tarball if it's not used either by
gokhlayeh@186 496 # incoming and legacy packages.
gokhlayeh@186 497 [ "$prev_VERSION" != "$(get_pkg_version $PACKAGES_REPOSITORY)" ] && \
gokhlayeh@186 498 remove_previous_tarball
gokhlayeh@186 499
gokhlayeh@186 500 fi
gokhlayeh@186 501 fi
gokhlayeh@186 502 if [ -d "$tmp_src" ]; then
gokhlayeh@186 503 if ! check_for_var_modification src _pkg; then
gokhlayeh@186 504 src="${src%/*}/$(ls $tmp_src)"
gokhlayeh@186 505 fi
gokhlayeh@186 506 mv $(echo $tmp_src/*) "$src"
gokhlayeh@186 507 rm -r $tmp_src
gokhlayeh@186 508
gokhlayeh@186 509 # Permissions settings.
gokhlayeh@186 510 chown -R root.root "$src"
gokhlayeh@186 511 fi
gokhlayeh@186 512 else
gokhlayeh@186 513 echo "There's already something at $src. Abord." >&2
gokhlayeh@186 514 fi
gokhlayeh@186 515 report end-step
gokhlayeh@186 516 fi
gokhlayeh@186 517 fi
gokhlayeh@186 518 }
gokhlayeh@186 519
gokhlayeh@186 520 # Log and execute compile_rules function if it exists, to configure and
gokhlayeh@186 521 # make the package if it exists.
gokhlayeh@186 522 check_for_compile_rules()
gokhlayeh@186 523 {
gokhlayeh@186 524 if grep -q ^compile_rules $RECEIPT; then
gokhlayeh@186 525 echo "executing compile_rules" >> $LOG
gokhlayeh@186 526 report step "Executing compile_rules"
gokhlayeh@186 527 cd $WOK/$PACKAGE
gokhlayeh@186 528 rm -f /tmp/config.site
gokhlayeh@186 529
gokhlayeh@186 530 # Free some RAM by cleaning cache if option is enabled.
slaxemulator@200 531 freeram=$(free | fgrep '/+ buffers' | tr -s ' ' | cut -f 4 -d ' ')
gokhlayeh@186 532
gokhlayeh@186 533 # Disable -pipe in CFLAGS/CXXFLAGS if less than 512Mb of free
gokhlayeh@186 534 # RAM are available.
gokhlayeh@195 535 if [ "$freeram" -lt 524288 ] && [ "$CFLAGS" != "${CFLAGS/-pipe}" -o \
gokhlayeh@195 536 "$CXXFLAGS" != "${CXXFLAGS/-pipe}" ]; then
gokhlayeh@195 537 tazwok_warning "Disabling -pipe compile flag because only ${freeram}b of RAM are available."
gokhlayeh@186 538 CFLAGS="${CFLAGS/-pipe}"
gokhlayeh@186 539 CXXFLAGS="${CXXFLAGS/-pipe}"
gokhlayeh@186 540 fi
gokhlayeh@186 541 unset freeram
gokhlayeh@186 542
gokhlayeh@186 543 # Set cook environnement variables.
gokhlayeh@186 544 [ "$src" ] || set_src_path
gokhlayeh@186 545 [ "$DESTDIR" ] || DESTDIR="$WOK/$PACKAGE/install"
gokhlayeh@186 546 [ "$CONFIG_SITE" ] || CONFIG_SITE=/etc/config.site
gokhlayeh@186 547 export CFLAGS CXXFLAGS MAKEFLAGS DESTDIR BUILD_HOST \
gokhlayeh@186 548 CONFIG_SITE default_prefix \
gokhlayeh@186 549 default_datarootdir default_datadir default_localedir \
gokhlayeh@186 550 default_infodir default_mandir default_build default_host
gokhlayeh@186 551 local LC_ALL=POSIX LANG=POSIX
gokhlayeh@186 552 compile_rules
gokhlayeh@186 553
gokhlayeh@186 554 # Check if config.site has been used.
gokhlayeh@186 555 # /!\ disabled since it screw the return_code of the step.
gokhlayeh@186 556 #if [ -f /tmp/config.site ]; then
gokhlayeh@186 557 # rm /tmp/config.site
gokhlayeh@186 558 #else
gokhlayeh@186 559 # tazwok_warning "config.site hasn't been used during \
gokhlayeh@186 560 #configuration process."
gokhlayeh@186 561 #fi
gokhlayeh@186 562
gokhlayeh@186 563 report end-step
gokhlayeh@186 564 fi
gokhlayeh@186 565 }
gokhlayeh@186 566
gokhlayeh@186 567 # Check for loop in deps tree. /!\ can be removed
pascal@76 568 check_for_deps_loop()
pascal@76 569 {
pascal@76 570 local list
pascal@76 571 local pkg
pascal@76 572 local deps
pascal@76 573 pkg=$1
pascal@76 574 shift
pascal@76 575 [ -n "$1" ] || return
pascal@76 576 list=""
gokhlayeh@186 577
pascal@76 578 # Filter out already processed deps
pascal@76 579 for i in $@; do
pascal@76 580 case " $ALL_DEPS" in
pascal@76 581 *\ $i\ *);;
pascal@76 582 *) list="$list $i";;
pascal@76 583 esac
pascal@76 584 done
pascal@76 585 ALL_DEPS="$ALL_DEPS$list "
pascal@76 586 for i in $list; do
pascal@76 587 [ -f $i/receipt ] || continue
pascal@76 588 deps="$(DEPENDS=""; . $i/receipt; echo $DEPENDS)"
pascal@76 589 case " $deps " in
pascal@76 590 *\ $pkg\ *) echo -e "$MSG $i"; MSG="";;
pascal@76 591 *) check_for_deps_loop $pkg $deps;;
pascal@76 592 esac
pascal@76 593 done
pascal@76 594 }
pascal@76 595
erjo@53 596 download()
erjo@53 597 {
erjo@53 598 for file in $@; do
gokhlayeh@186 599 wget -q $file && break
erjo@53 600 done
erjo@53 601 }
pankso@18 602
gokhlayeh@186 603 # Regenerate every package that wants a PACKAGE compiled
gokhlayeh@186 604 # /!\
pascal@138 605
pascal@156 606 refresh_packages_from_compile()
pascal@156 607 {
pascal@156 608 # make tazwok genpkg happy
pascal@156 609 mkdir $WOK/$PACKAGE/taz
gokhlayeh@186 610
gokhlayeh@186 611 # Cook rwanted in default or specied order
gokhlayeh@186 612 genlist=" $(look_for_rwanted | tr '\n' ' ') "
gokhlayeh@186 613 for i in $(look_for_cookopt genpkg | tac); do
gokhlayeh@186 614 [ "${genlist/ $i }" = "$genlist" ] && continue
gokhlayeh@186 615 genlist=" $i${genlist/ $i / }"
pascal@156 616 done
gokhlayeh@186 617 for i in $genlist; do
gokhlayeh@186 618 tazwok genpkg $i --SLITAZ_VERSION=$SLITAZ_VERSION \
gokhlayeh@186 619 --undigest=$undigest --SLITAZ_DIR=$SLITAZ_DIR
gokhlayeh@186 620 done
gokhlayeh@186 621
pascal@156 622 # Still needs tazwok genpkg for this package
pascal@156 623 rm -rf $WOK/$PACKAGE/taz
pascal@156 624 }
pascal@156 625
MikeDSmith25@82 626 # Copy all generic files (locale, pixmaps, .desktop). We use standard paths,
pankso@22 627 # so some packages need to copy these files with the receipt and genpkg_rules.
pankso@22 628 # This function is executed by gen_package when 'tazwok genpkg'.
pankso@22 629 copy_generic_files()
pankso@22 630 {
MikeDSmith25@82 631 # In most cases, locales are in $_pkg/usr/share/locale so we copy files
pankso@22 632 # using generic variables and $LOCALE from Tazwok config file.
gokhlayeh@186 633 if [ "$LOCALE" ]; then
pankso@22 634 if [ -d "$_pkg/usr/share/locale" ]; then
pankso@22 635 for i in $LOCALE
pankso@22 636 do
pankso@37 637 if [ -d "$_pkg/usr/share/locale/$i" ]; then
pankso@37 638 mkdir -p $fs/usr/share/locale
pankso@37 639 cp -a $_pkg/usr/share/locale/$i $fs/usr/share/locale
pankso@37 640 fi
pankso@22 641 done
pankso@22 642 fi
pankso@22 643 fi
gokhlayeh@186 644
pankso@133 645 # Pixmaps (PNG or/and XPM only). Some icons/images can be added through
MikeDSmith25@82 646 # genpkg_rules and generic copy can be disabled with GENERIC_PIXMAPS="no"
pankso@31 647 # in pkg receipt.
gokhlayeh@186 648 if [ "$GENERIC_PIXMAPS" != "no" ]; then
pankso@22 649 if [ -d "$_pkg/usr/share/pixmaps" ]; then
pankso@27 650 mkdir -p $fs/usr/share/pixmaps
pankso@31 651 cp -a $_pkg/usr/share/pixmaps/$PACKAGE.png \
pankso@31 652 $fs/usr/share/pixmaps 2>/dev/null
pankso@31 653 cp -a $_pkg/usr/share/pixmaps/$PACKAGE.xpm \
pankso@22 654 $fs/usr/share/pixmaps 2>/dev/null
pankso@23 655 fi
gokhlayeh@186 656
MikeDSmith25@82 657 # Custom or homemade PNG pixmap can be in stuff.
pankso@23 658 if [ -f "stuff/$PACKAGE.png" ]; then
pankso@27 659 mkdir -p $fs/usr/share/pixmaps
pankso@23 660 cp -a stuff/$PACKAGE.png $fs/usr/share/pixmaps
pankso@22 661 fi
pankso@22 662 fi
gokhlayeh@186 663
pankso@22 664 # Desktop entry (.desktop).
pankso@22 665 if [ -d "$_pkg/usr/share/applications" ]; then
pankso@22 666 cp -a $_pkg/usr/share/applications $fs/usr/share
pankso@23 667 fi
gokhlayeh@186 668
MikeDSmith25@82 669 # Homemade desktop file(s) can be in stuff.
pankso@34 670 if [ -d "stuff/applications" ]; then
pankso@42 671 mkdir -p $fs/usr/share
pankso@42 672 cp -a stuff/applications $fs/usr/share
pankso@34 673 fi
pankso@34 674 if [ -f "stuff/$PACKAGE.desktop" ]; then
pankso@42 675 mkdir -p $fs/usr/share/applications
pankso@42 676 cp -a stuff/$PACKAGE.desktop $fs/usr/share/applications
pankso@22 677 fi
pankso@22 678 }
pankso@22 679
pankso@25 680 # Find and strip : --strip-all (-s) or --strip-debug on static libs.
pankso@25 681 strip_package()
pankso@25 682 {
gokhlayeh@186 683 look_for_cookopt !strip && return
gokhlayeh@186 684 report step "Executing strip on all files"
gokhlayeh@186 685
pankso@25 686 # Binaries.
pankso@25 687 for dir in $fs/bin $fs/sbin $fs/usr/bin $fs/usr/sbin $fs/usr/games
pankso@25 688 do
pankso@25 689 if [ -d "$dir" ]; then
pankso@25 690 find $dir -type f -exec strip -s '{}' 2>/dev/null \;
pankso@25 691 fi
pankso@25 692 done
gokhlayeh@186 693
pankso@25 694 # Libraries.
pankso@25 695 find $fs -name "*.so*" -exec strip -s '{}' 2>/dev/null \;
pankso@25 696 find $fs -name "*.a" -exec strip --strip-debug '{}' 2>/dev/null \;
gokhlayeh@186 697 report end-step
gokhlayeh@186 698 }
gokhlayeh@186 699
gokhlayeh@186 700 # Remove .pyc and .pyo files from packages
gokhlayeh@186 701 py_compiled_files_remove()
gokhlayeh@186 702 {
gokhlayeh@186 703 report step "Removing all .pyc and .pyo files from package ..."
gokhlayeh@186 704 find $fs -type f -name "*.pyc" -delete 2>/dev/null
gokhlayeh@186 705 find $fs -type f -name "*.pyo" -delete 2>/dev/null
gokhlayeh@186 706 report end-step
pankso@25 707 }
pankso@25 708
pankso@135 709 # Check FSH in a slitaz package (Path: /:/usr)
pankso@135 710 check_fsh()
pankso@135 711 {
pankso@135 712 cd $WOK/$PACKAGE/taz/*/fs
pascal@149 713 [ -n "$FSH" ] || FSH="bin boot dev etc home init lib media mnt proc \
pascal@149 714 root sbin share sys tmp usr var vz usr/bin usr/games usr/include usr/lib \
pascal@149 715 usr/local usr/sbin usr/share usr/src"
pankso@135 716 for i in `ls -d * usr/* 2>/dev/null`
pankso@135 717 do
gokhlayeh@195 718 if ! echo $FSH | fgrep -q $i; then
gokhlayeh@186 719 echo "Wrong path: /$i" >&2
pankso@135 720 error=1
pankso@135 721 fi
pankso@135 722 done
pankso@135 723 if [ "$error" = "1" ]; then
pankso@135 724 cat << _EOT_
pankso@135 725
paul@155 726 Package will install files in a non standard directory and won't be generated.
paul@154 727 You may have a wrong copy path in genpkg_rules or need to add some options to
pankso@135 728 configure in compile_rules. Some valid options for SliTaz (Linux FSH):
pankso@135 729
pankso@135 730 --prefix=/usr
pankso@135 731 --sysconfdir=/etc
pankso@135 732 --libexecdir=/usr/lib/(pkgname)
pankso@135 733 --localstatedir=/var
pankso@135 734 --mandir=/usr/share/man
pankso@135 735 --infodir=/usr/share/info
pankso@135 736
paul@152 737 For more information please read SliTaz docs and run: ./configure --help
pankso@135 738 ================================================================================
pankso@135 739 $PACKAGE package generation aborted.
pankso@135 740
pankso@135 741 _EOT_
gokhlayeh@186 742
pankso@135 743 # Dont generate a corrupted package.
pankso@137 744 cd $WOK/$PACKAGE && rm -rf taz
gokhlayeh@186 745 report exit
pankso@135 746 fi
gokhlayeh@186 747 }
gokhlayeh@186 748
gokhlayeh@186 749 gen_cookmd5()
gokhlayeh@186 750 {
gokhlayeh@186 751 # md5sum of cooking stuff make tazwok able to check for changes
gokhlayeh@186 752 # without hg.
gokhlayeh@186 753 cd $WOK/$PACKAGE
gokhlayeh@186 754 md5sum receipt > md5
gokhlayeh@186 755 [ -f description.txt ] && md5sum description.txt >> md5
gokhlayeh@186 756 if [ -d stuff ]; then
gokhlayeh@186 757 find stuff | while read file; do
gokhlayeh@186 758 md5sum $file >> md5
gokhlayeh@186 759 done
gokhlayeh@186 760 fi
pankso@135 761 }
pankso@135 762
MikeDSmith25@82 763 # Create a package tree and build the gziped cpio archive
pankso@7 764 # to make a SliTaz (.tazpkg) package.
pankso@7 765 gen_package()
pankso@7 766 {
pankso@7 767 check_root
pankso@7 768 check_for_package_on_cmdline
pankso@7 769 check_for_receipt
pascal@74 770 EXTRAVERSION=""
pankso@7 771 . $RECEIPT
gokhlayeh@186 772
pascal@86 773 # May compute VERSION
pascal@86 774 if grep -q ^get_version $RECEIPT; then
pascal@86 775 get_version
pascal@86 776 fi
pankso@7 777 check_for_wanted
pankso@7 778 cd $WOK/$PACKAGE
gokhlayeh@186 779
pankso@7 780 # Remove old Tazwok package files.
gokhlayeh@186 781 [ -d "taz" ] && rm -rf taz
gokhlayeh@186 782
MikeDSmith25@82 783 # Create the package tree and set useful variables.
pankso@7 784 mkdir -p taz/$PACKAGE-$VERSION/fs
pankso@7 785 fs=taz/$PACKAGE-$VERSION/fs
gokhlayeh@186 786
MikeDSmith25@82 787 # Set $src for standard package and $_pkg variables.
gokhlayeh@186 788 set_src_path && set_pkg_path
gokhlayeh@186 789
pankso@135 790 # Execute genpkg_rules, check package and copy generic files to build
pankso@135 791 # the package.
gokhlayeh@186 792 report step "Building $PACKAGE with the receipt"
gokhlayeh@186 793 report open-bloc
pankso@28 794 if grep -q ^genpkg_rules $RECEIPT; then
gokhlayeh@186 795
pankso@7 796 # Log process.
pankso@7 797 echo "executing genpkg_rules" >> $LOG
gokhlayeh@186 798 report step "Executing genpkg_rules"
pascal@126 799 genpkg_rules
gokhlayeh@186 800 report end-step
pankso@135 801 check_fsh
pankso@25 802 cd $WOK/$PACKAGE
gokhlayeh@186 803
pankso@133 804 # Skip generic files for packages with a WANTED variable
pankso@24 805 # (dev and splited pkgs).
gokhlayeh@186 806 if [ ! "$WANTED" ]; then
pankso@24 807 copy_generic_files
pankso@24 808 fi
pankso@25 809 strip_package
gokhlayeh@186 810 py_compiled_files_remove
pankso@7 811 else
gokhlayeh@186 812 echo "No package rules to gen $PACKAGE..." >&2
gokhlayeh@186 813 report exit
pankso@7 814 fi
gokhlayeh@186 815
paul@154 816 # Copy the receipt and description (if exists) into the binary package tree.
pankso@7 817 cd $WOK/$PACKAGE
gokhlayeh@186 818 report step "Copying the receipt"
pankso@7 819 cp receipt taz/$PACKAGE-$VERSION
gokhlayeh@186 820 report end-step
pascal@89 821 if grep -q ^get_version $RECEIPT; then
gokhlayeh@186 822 report step "Updating version in receipt"
pascal@89 823 sed -i "s/^VERSION=.*/VERSION=\"$VERSION\"/" \
pascal@89 824 taz/$PACKAGE-$VERSION/receipt
gokhlayeh@186 825 report end-step
pascal@89 826 fi
pankso@7 827 if [ -f "description.txt" ]; then
gokhlayeh@186 828 report step "Copying the description file"
pankso@7 829 cp description.txt taz/$PACKAGE-$VERSION
gokhlayeh@186 830 report end-step
pankso@7 831 fi
gokhlayeh@186 832
gokhlayeh@186 833 # Generate md5 of cooking stuff to look for commit later.
gokhlayeh@186 834 gen_cookmd5
gokhlayeh@186 835 echo -e "\n# md5sum of cooking stuff :" >> taz/$PACKAGE-$VERSION/receipt
gokhlayeh@186 836 cat md5 | sed 's/^/# /' >> taz/$PACKAGE-$VERSION/receipt
gokhlayeh@186 837
MikeDSmith25@82 838 # Create the files.list by redirecting find output.
gokhlayeh@186 839 report step "Creating the list of files"
pascal@15 840 cd taz/$PACKAGE-$VERSION
pascal@13 841 LAST_FILE=""
gokhlayeh@195 842 { find fs -print; echo; } | while read file; do
gokhlayeh@186 843 if [ "$LAST_FILE" ]; then
pascal@15 844 case "$file" in
pascal@13 845 $LAST_FILE/*)
pankso@133 846 case "$(ls -ld "$LAST_FILE")" in
pascal@15 847 drwxr-xr-x\ *\ root\ *\ root\ *);;
pascal@15 848 *) echo ${LAST_FILE#fs};;
pascal@13 849 esac;;
pascal@15 850 *) echo ${LAST_FILE#fs};;
pascal@13 851 esac
pascal@13 852 fi
pascal@15 853 LAST_FILE="$file"
pascal@15 854 done > files.list
gokhlayeh@186 855
gokhlayeh@186 856 # Next, check if something has changed in lib files.
gokhlayeh@186 857 if [ ! "$cook_rdep" ]; then
gokhlayeh@186 858 report step "Look for changes in libraries"
gokhlayeh@186 859
gokhlayeh@186 860 # Find the most recent previous files.list.
gokhlayeh@186 861 # /!\ need some work to check only for minor update (not micro)
gokhlayeh@186 862 if grep -q ^$PACKAGE$ $INCOMING_REPOSITORY/packages.txt 2>/dev/null; then
gokhlayeh@186 863 files_list_dir=$PACKAGES_INCOMING
gokhlayeh@186 864 elif grep -q ^$PACKAGE$ $PACKAGES_REPOSITORY/packages.txt 2>/dev/null; then
gokhlayeh@186 865 files_list_dir=$PACKAGES_REPOSITORY
gokhlayeh@186 866 elif [ "$undigest" ] && grep -q ^$PACKAGE$ $SLITAZ_DIR/$SLITAZ_VERSION/packages-incoming/packages.txt 2>/dev/null; then
gokhlayeh@186 867 files_list_dir=$SLITAZ_DIR/$SLITAZ_VERSION/packages-incoming
gokhlayeh@186 868 elif [ "$undigest" ] && grep -q ^$PACKAGE$ $SLITAZ_DIR/$SLITAZ_VERSION/packages/packages.txt 2>/dev/null; then
gokhlayeh@186 869 files_list_dir=$SLITAZ_DIR/$SLITAZ_VERSION/packages
gokhlayeh@186 870 fi
gokhlayeh@186 871
gokhlayeh@186 872 # If founded, generate libs.list (new and previous)
gokhlayeh@186 873 if [ "$files_list_dir" ] && [ -f $files_list_dir/files.list.lzma ]; then
gokhlayeh@186 874 grep -e '\.so$' -e '\.so.[0-9]' files.list >> $tmp/libs.list.new
gokhlayeh@186 875 if [ -f $tmp/libs.list.new ]; then
gokhlayeh@186 876 lzma d $files_list_dir/files.list.lzma $tmp/files.list 2>/dev/null
gokhlayeh@186 877 grep ^$PACKAGE: $tmp/files.list >> $tmp/libs.list.previous
gokhlayeh@186 878
gokhlayeh@186 879 # If something as changed in libs path/names, plan recook of all
gokhlayeh@186 880 # reverse build depends.
gokhlayeh@186 881 [ "$(diff -q $tmp/libs.list.old $tmp/libs.list.previous 2>/dev/null)" ] && cook_rdep=yes
gokhlayeh@186 882 rm $tmp/libs.list.new $tmp/files.list $tmp/libs.list.old 2>/dev/null
gokhlayeh@186 883 unset files_list_dir
gokhlayeh@186 884 fi
gokhlayeh@186 885 fi
gokhlayeh@186 886 report end-step
gokhlayeh@186 887 fi
gokhlayeh@186 888 if [ ! "$EXTRAVERSION" ]; then
pascal@84 889 case "$PACKAGE" in
pascal@84 890 linux*);;
pascal@85 891 *) EXTRAVERSION="$(grep '/lib/modules/.*-slitaz/' files.list |\
pascal@84 892 head -1 | sed 's|/lib/modules/\(.*\)-slitaz/.*|_\1|')";;
pascal@84 893 esac
pascal@84 894 fi
gokhlayeh@186 895 rm -f $INCOMING_REPOSITORY/$PACKAGE-$VERSION$EXTRAVERSION.tazpkg 2> /dev/null
gokhlayeh@186 896 report step "Creating md5sum of files"
pascal@70 897 while read file; do
pascal@71 898 [ -L "fs$file" ] && continue
pascal@71 899 [ -f "fs$file" ] || continue
pascal@71 900 md5sum "fs$file" | sed 's/ fs/ /'
pascal@70 901 done < files.list > md5sum
pascal@84 902 UNPACKED_SIZE=$(du -chs fs receipt files.list md5sum description.txt \
pascal@84 903 2> /dev/null | awk '{ sz=$1 } END { print sz }')
gokhlayeh@186 904
pankso@7 905 # Build cpio archives. Find, cpio and gzip the fs, finish by
pankso@7 906 # removing the fs tree.
gokhlayeh@186 907 # Don't log this because compression always output error messages.
gokhlayeh@186 908 report end-step
pascal@150 909 find fs -print | cpio -o -H newc | case "$PACKAGE-$COMPRESSION" in
pascal@150 910 tazpkg-lzma) gzip > fs.cpio.gz;;
pascal@150 911 *-lzma) lzma e fs.cpio.lzma -si;;
pascal@150 912 *) gzip > fs.cpio.gz;;
pascal@150 913 esac && rm -rf fs
pascal@150 914 PACKED_SIZE=$(du -chs fs.cpio.* receipt files.list md5sum \
pascal@84 915 description.txt 2> /dev/null | awk '{ sz=$1 } END { print sz }')
gokhlayeh@186 916 report step "Updating receipt sizes"
pascal@138 917 sed -i '/^PACKED_SIZE/d' receipt
pascal@138 918 sed -i '/^UNPACKED_SIZE/d' receipt
pascal@59 919 sed -i "s/^PACKAGE=/PACKED_SIZE=\"$PACKED_SIZE\"\nUNPACKED_SIZE=\"$UNPACKED_SIZE\"\nPACKAGE=/" receipt
pascal@86 920 sed -i "s/^VERSION=$/VERSION=\"$VERSION\"/" receipt
pascal@72 921 if [ -n "$EXTRAVERSION" ]; then
gokhlayeh@186 922 report step "Updating receipt EXTRAVERSION"
pascal@72 923 sed -i s/^EXTRAVERSION.*$// receipt
pascal@72 924 sed -i "s/^VERSION=/EXTRAVERSION=\"$EXTRAVERSION\"\nVERSION=/" receipt
pascal@72 925 fi
gokhlayeh@186 926 prev_VERSION=$(get_pkg_version $INCOMING_REPOSITORY)
gokhlayeh@186 927 remove_previous_package $INCOMING_REPOSITORY
gokhlayeh@186 928 report step "Creating full cpio archive"
gokhlayeh@186 929 find . -print | cpio -o -H newc > $INCOMING_REPOSITORY/$PACKAGE-$VERSION$EXTRAVERSION.tazpkg
gokhlayeh@186 930
paul@154 931 # Restore package tree in case we want to browse it.
gokhlayeh@186 932 report step "Restoring original package tree"
gokhlayeh@195 933 { zcat fs.cpio.gz 2> /dev/null || unlzma -c fs.cpio.lzma; } | cpio --quiet -id
pascal@150 934 rm fs.cpio.* && cd ..
gokhlayeh@186 935
pankso@7 936 # Log process.
pascal@69 937 echo "$PACKAGE-$VERSION$EXTRAVERSION.tazpkg (done)" >> $LOG
gokhlayeh@186 938 report close-bloc
pascal@68 939 echo "Package $PACKAGE ($VERSION$EXTRAVERSION) generated."
gokhlayeh@186 940 echo "Size : `du -sh $INCOMING_REPOSITORY/$PACKAGE-$VERSION$EXTRAVERSION.tazpkg`"
pankso@7 941 echo ""
gokhlayeh@186 942
gokhlayeh@186 943 # Remove package from broken & genpkg list if needed.
gokhlayeh@186 944 if grep -q ^$PACKAGE$ $PACKAGES_REPOSITORY/broken; then
gokhlayeh@186 945 sed "/^$PACKAGE$/d" -i $PACKAGES_REPOSITORY/broken
gokhlayeh@186 946 regen_cooklist=yes
gokhlayeh@186 947 fi
gokhlayeh@186 948
gokhlayeh@186 949 # Remove package from genpkglist.
gokhlayeh@186 950 sed "/^$PACKAGE$/d" -i $PACKAGES_REPOSITORY/genpkglist
pankso@7 951 }
pankso@7 952
gokhlayeh@186 953 ########################################################################
gokhlayeh@186 954 ######################## START OF NEW FUNCTIONS ########################
gokhlayeh@186 955 ########################################################################
gokhlayeh@186 956
gokhlayeh@186 957 ########################################################################
gokhlayeh@186 958 # This section contains functions used by several other functions
gokhlayeh@186 959 # bellow.
gokhlayeh@186 960 ########################
gokhlayeh@186 961
gokhlayeh@186 962 # Look for receipt/files.list in wok. If they can't be found, get them
gokhlayeh@186 963 # from package. Accept one argument : absolute path to package.
gokhlayeh@186 964 get_pkg_files()
pankso@28 965 {
gokhlayeh@186 966 pkg_files_dir=$tmp/$(basename ${1%.tazpkg})
gokhlayeh@186 967 mkdir -p $pkg_files_dir && \
gokhlayeh@186 968 cd $pkg_files_dir && \
gokhlayeh@186 969 cpio --quiet -idm receipt < $1 && \
gokhlayeh@186 970 cpio --quiet -idm files.list < $1
gokhlayeh@186 971 }
gokhlayeh@170 972
gokhlayeh@186 973 ########################################################################
gokhlayeh@186 974 # This section contains functions to generate packages/wok databases.
gokhlayeh@186 975 ########################
gokhlayeh@186 976
gokhlayeh@186 977 # Generic actions in both gen-packages-db/gen-wok-db
gokhlayeh@186 978 gen_db()
gokhlayeh@186 979 {
gokhlayeh@186 980 report step "Generating $dbtype database"
gokhlayeh@186 981 report open-bloc
gokhlayeh@186 982 report step "Removing old files"
gokhlayeh@186 983 for file in $files_list; do
gokhlayeh@186 984 [ -f $file ] && rm $file
gokhlayeh@186 985 [ "${file##*.}" != lzma ] && touch $file
gokhlayeh@186 986 done
gokhlayeh@186 987
gokhlayeh@186 988 # Generate wok/packages data lists.
gokhlayeh@186 989 gen_${dbtype}_db
gokhlayeh@186 990 report close-bloc
gokhlayeh@186 991 }
gokhlayeh@186 992
gokhlayeh@186 993 gen_packages_db()
gokhlayeh@186 994 {
gokhlayeh@186 995 # pkg_repository can be $PACKAGES_REPOSITORY or $INCOMING_REPOSITORY.
gokhlayeh@186 996 [ ! "$pkg_repository" ] && pkg_repository=$PACKAGES_REPOSITORY
gokhlayeh@186 997 cd $pkg_repository
gokhlayeh@186 998 packages_db_start
gokhlayeh@186 999 unset RECEIPT
gokhlayeh@186 1000 report step "Reading datas from all packages"
gokhlayeh@195 1001 for pkg in $(echo $pkg_repository/*.tazpkg | fgrep -v '*'); do
gokhlayeh@186 1002 get_packages_info
gokhlayeh@186 1003 done
gokhlayeh@186 1004 report end-step
gokhlayeh@186 1005 packages_db_end
gokhlayeh@186 1006 }
gokhlayeh@186 1007
gokhlayeh@186 1008 update_packages_db()
gokhlayeh@186 1009 {
gokhlayeh@186 1010 [ ! "$pkg_repository" ] && pkg_repository=$PACKAGES_REPOSITORY
gokhlayeh@186 1011 cd $pkg_repository
gokhlayeh@186 1012
gokhlayeh@186 1013 # If files are missing, generate the lists - not only update.
gokhlayeh@186 1014 dbtype=packages
gokhlayeh@186 1015 files_list="packages.list packages.equiv packages.md5 packages.desc packages.txt"
gokhlayeh@186 1016 for file in $files_list; do
gokhlayeh@186 1017 if [ ! -f "$file" ]; then
gokhlayeh@186 1018 gen_db
gokhlayeh@186 1019 return
gokhlayeh@186 1020 fi
gokhlayeh@186 1021 done
gokhlayeh@186 1022 if [ -f files.list.lzma ]; then
gokhlayeh@186 1023 lzma d files.list.lzma files.list
gokhlayeh@186 1024 else
gokhlayeh@186 1025 gen_db
gokhlayeh@186 1026 fi
gokhlayeh@186 1027 packages_db_start
gokhlayeh@186 1028 report step "Updating packages lists"
gokhlayeh@186 1029 touch $tmp/pkglist
gokhlayeh@186 1030
gokhlayeh@186 1031 # Look for removed/update packages.
gokhlayeh@186 1032 for PACKAGE in $(grep ^[0-9,a-z,A-Z] packages.txt); do
gokhlayeh@195 1033 pkg="$(grep ^$PACKAGE- packages.list | sed 1!d).tazpkg"
gokhlayeh@195 1034 if ! [ -f "$pkg" ]; then
gokhlayeh@186 1035 erase_package_info
gokhlayeh@186 1036 else
gokhlayeh@186 1037 echo $pkg >> $tmp/pkglist
gokhlayeh@186 1038 if [ "$pkg" -nt "packages.list" ]; then
gokhlayeh@186 1039 erase_package_info
gokhlayeh@186 1040 get_packages_info
gokhlayeh@186 1041 fi
gokhlayeh@170 1042 fi
gokhlayeh@170 1043 done
gokhlayeh@170 1044
gokhlayeh@186 1045 # Look for new packages.
gokhlayeh@195 1046 for pkg in $(echo $pkg_repository/*.tazpkg | fgrep -v '*'); do
gokhlayeh@199 1047 if ! fgrep -q " ${pkg##*/}" $pkg_repository/packages.md5; then
gokhlayeh@186 1048 get_packages_info
gokhlayeh@186 1049 fi
gokhlayeh@186 1050 done
gokhlayeh@186 1051 rm $tmp/pkglist
gokhlayeh@186 1052 report end-step
gokhlayeh@186 1053 packages_db_end
gokhlayeh@186 1054 }
gokhlayeh@186 1055
gokhlayeh@186 1056 packages_db_start()
gokhlayeh@186 1057 {
gokhlayeh@186 1058 if [ ! -s packages.txt ]; then
gokhlayeh@186 1059 echo "# SliTaz GNU/Linux - Packages list
gokhlayeh@186 1060 #
gokhlayeh@186 1061 # Packages : unknow
gokhlayeh@186 1062 # Date : $(date +%Y-%m-%d\ \%H:%M:%S)
gokhlayeh@186 1063 #" > packages.txt
pascal@62 1064 else
gokhlayeh@186 1065 sed -e 's/^# Packages :.*/# Packages : unknow/' \
gokhlayeh@186 1066 -e "s/# Date :.*/# Date : $(date +%Y-%m-%d\ \%H:%M:%S)/" \
gokhlayeh@186 1067 -i packages.txt
pascal@60 1068 fi
gokhlayeh@186 1069
gokhlayeh@186 1070 # Needed in some case as tazwok define RECEIPT at configuration time
gokhlayeh@186 1071 # in this particular case it can broke the script.
gokhlayeh@186 1072 unset RECEIPT
gokhlayeh@186 1073 }
gokhlayeh@186 1074
gokhlayeh@186 1075 erase_package_info()
gokhlayeh@186 1076 {
gokhlayeh@186 1077 cd $pkg_repository
gokhlayeh@186 1078 sed "/^$PACKAGE$/,/^$/d" -i packages.txt
gokhlayeh@186 1079 sed "/^$PACKAGE /d" -i packages.desc
gokhlayeh@186 1080 sed -e "s/=$PACKAGE /= /" -e "s/ $PACKAGE / /" -e "s/ $PACKAGE$//" \
gokhlayeh@186 1081 -e "/=$PACKAGE$/d" -e "s/=[0-9,a-z,A-Z]:$PACKAGE /= /" \
gokhlayeh@186 1082 -e "s/ [0-9,a-z,A-Z]:$PACKAGE / /" -e "s/ [0-9,a-z,A-Z]:$PACKAGE$/ /" \
gokhlayeh@186 1083 -e "/=[0-9,a-z,A-Z]:$PACKAGE$/d" \
gokhlayeh@186 1084 -i packages.equiv
gokhlayeh@186 1085 sed "/^$PACKAGE:/d" -i files.list
gokhlayeh@186 1086 sed "/^$(basename ${pkg%.tazpkg})$/d" -i packages.list
gokhlayeh@186 1087 sed "/ $(basename $pkg)$/d" -i packages.md5
gokhlayeh@186 1088 }
gokhlayeh@186 1089
gokhlayeh@186 1090 get_packages_info()
gokhlayeh@186 1091 {
gokhlayeh@186 1092 # If there's no taz folder in the wok, extract infos from the
gokhlayeh@186 1093 # package.
gokhlayeh@186 1094 get_pkg_files $pkg
gokhlayeh@186 1095 source_receipt
gokhlayeh@186 1096 echo "Getting datas from $PACKAGE"
gokhlayeh@186 1097
gokhlayeh@186 1098 cat >> $pkg_repository/packages.txt << _EOT_
pankso@28 1099
pankso@28 1100 $PACKAGE
gokhlayeh@186 1101 $VERSION$EXTRAVERSION
pankso@28 1102 $SHORT_DESC
pankso@28 1103 _EOT_
gokhlayeh@186 1104 [ "$PACKED_SIZE" ] && cat >> $pkg_repository/packages.txt << _EOT_
pankso@133 1105 $PACKED_SIZE ($UNPACKED_SIZE installed)
pascal@60 1106 _EOT_
gokhlayeh@186 1107
paul@121 1108 # Packages.desc is used by Tazpkgbox <tree>.
gokhlayeh@186 1109 echo "$PACKAGE | $VERSION$EXTRAVERSION | $SHORT_DESC | $CATEGORY | $WEB_SITE" >> $pkg_repository/packages.desc
gokhlayeh@186 1110
paul@121 1111 # Packages.equiv is used by tazpkg install to check depends
pascal@99 1112 for i in $PROVIDE; do
pascal@99 1113 DEST=""
gokhlayeh@195 1114 echo $i | fgrep -q : && DEST="${i#*:}:"
gokhlayeh@186 1115 if grep -qs ^${i%:*}= $pkg_repository/packages.equiv; then
gokhlayeh@186 1116 sed -i "s/^${i%:*}=/${i%:*}=$DEST$PACKAGE /" $pkg_repository/packages.equiv
pascal@99 1117 else
gokhlayeh@186 1118 echo "${i%:*}=$DEST$PACKAGE" >> $pkg_repository/packages.equiv
gokhlayeh@186 1119 fi
gokhlayeh@186 1120 done
gokhlayeh@186 1121
gokhlayeh@186 1122 if [ -f files.list ]; then
gokhlayeh@186 1123 { echo "$PACKAGE"; cat files.list; } | awk '
gokhlayeh@186 1124 BEGIN { name="" } { if (name == "") name=$0; else printf("%s: %s\n",name,$0); }' >> $pkg_repository/files.list
gokhlayeh@186 1125 fi
gokhlayeh@186 1126
gokhlayeh@186 1127 cd .. && rm -r "$pkg_files_dir"
gokhlayeh@186 1128
gokhlayeh@186 1129 cd $pkg_repository
gokhlayeh@186 1130 echo $(basename ${pkg%.tazpkg}) >> packages.list
gokhlayeh@186 1131 [ ! "$package_md5" ] && package_md5=$(md5sum $(basename $pkg))
gokhlayeh@186 1132 echo "$package_md5" >> packages.md5
gokhlayeh@186 1133 unset package_md5
gokhlayeh@186 1134 }
gokhlayeh@186 1135
gokhlayeh@186 1136 source_receipt()
gokhlayeh@186 1137 {
gokhlayeh@186 1138 unset PACKAGE SOURCE VERSION EXTRAVERSION CATEGORY SHORT_DESC \
gokhlayeh@186 1139 MAINTAINER WEB_SITE WGET_URL DEPENDS BUILD_DEPENDS WANTED \
gokhlayeh@186 1140 PACKED_SIZE UNPACKED_SIZE COOK_OPT PROVIDE CONFIG_FILES TAGS \
gokhlayeh@186 1141 src _pkg DESTDIR CONFIG_SITE
gokhlayeh@186 1142 . ${RECEIPT:-$PWD/receipt}
gokhlayeh@186 1143 }
gokhlayeh@186 1144
gokhlayeh@186 1145 packages_db_end()
gokhlayeh@186 1146 {
gokhlayeh@186 1147 cd $pkg_repository
gokhlayeh@186 1148 pkgs=$(wc -l packages.list | sed 's/ .*//')
gokhlayeh@186 1149 sed "s/# Packages : .*/# Packages : $pkgs/" -i packages.txt
gokhlayeh@186 1150
gokhlayeh@186 1151 # If lists was updated it's generally needed to sort them well.
gokhlayeh@186 1152 if ! sort -c packages.list 2> /dev/null; then
gokhlayeh@186 1153 report step "Sorting packages lists"
gokhlayeh@186 1154 for file in packages.list packages.desc packages.equiv; do
gokhlayeh@186 1155 [ -f $file ] || continue
gokhlayeh@186 1156 sort -o $file $file
gokhlayeh@186 1157 done
gokhlayeh@186 1158 report end-step
gokhlayeh@186 1159 fi
gokhlayeh@186 1160
gokhlayeh@186 1161 # Dont log this because lzma always output error.
gokhlayeh@186 1162 lzma e files.list files.list.lzma
gokhlayeh@186 1163 rm files.list 2>/dev/null
gokhlayeh@186 1164 }
gokhlayeh@186 1165
gokhlayeh@186 1166 ########################################################################
gokhlayeh@186 1167 # This section contains functions to generate wok database.
gokhlayeh@186 1168 ########################
gokhlayeh@186 1169
gokhlayeh@186 1170 gen_wok_db()
gokhlayeh@186 1171 {
gokhlayeh@186 1172 get_wok_info $(echo $WOK/*/receipt | sed -e "s~$WOK/~~g" -e "s~/receipt~~g")
gokhlayeh@186 1173 sort_db
gokhlayeh@186 1174 report close-bloc
gokhlayeh@186 1175 }
gokhlayeh@186 1176
gokhlayeh@186 1177 get_wok_info()
gokhlayeh@186 1178 {
gokhlayeh@186 1179 report step "Getting datas from wok"
gokhlayeh@186 1180 report open-bloc
gokhlayeh@186 1181
gokhlayeh@186 1182 report step "Generating wok-wanted.txt"
gokhlayeh@186 1183 for PACKAGE in $@; do
gokhlayeh@186 1184 RECEIPT=$WOK/$PACKAGE/receipt
gokhlayeh@186 1185 source_receipt
gokhlayeh@186 1186 [ "$WANTED" ] || continue
gokhlayeh@186 1187 echo -e $PACKAGE"\t"$WANTED >> $wan_db
gokhlayeh@186 1188 done
gokhlayeh@186 1189
gokhlayeh@186 1190 report step "Generating wok-depends.txt"
gokhlayeh@186 1191 for PACKAGE in $@; do
gokhlayeh@186 1192 RECEIPT=$WOK/$PACKAGE/receipt
gokhlayeh@186 1193 if [ -s $RECEIPT ]; then
gokhlayeh@186 1194 source_receipt
gokhlayeh@186 1195 echo -e $PACKAGE"\t "$DEPENDS" \t "$BUILD_DEPENDS' ' >> $dep_db
pankso@133 1196 fi
pascal@99 1197 done
gokhlayeh@186 1198 report end-step
pankso@28 1199 }
pankso@28 1200
gokhlayeh@186 1201 sort_db()
pascal@91 1202 {
gokhlayeh@186 1203 report step "Generating cookorder.txt"
gokhlayeh@186 1204 rm $PACKAGES_REPOSITORY/blocked && touch $PACKAGES_REPOSITORY/blocked
gokhlayeh@186 1205 cat $dep_db | sed 's/ \t / /' | while read PACKAGE BUILD_DEPENDS; do
gokhlayeh@186 1206 grep -q ^$PACKAGE$'\t' $wan_db && continue
gokhlayeh@186 1207
gokhlayeh@186 1208 # Replace each BUILD_DEPENDS with a WANTED package by it's
gokhlayeh@186 1209 # WANTED package.
gokhlayeh@186 1210 replace_by_wanted()
gokhlayeh@186 1211 {
gokhlayeh@186 1212 for p in $BUILD_DEPENDS; do
gokhlayeh@186 1213 if grep -q ^$p$'\t' $wan_db; then
gokhlayeh@186 1214 echo -n $(grep ^$p$'\t' $wan_db | cut -f 2)' '
gokhlayeh@186 1215 else
gokhlayeh@186 1216 echo -n $p' '
gokhlayeh@186 1217 fi
gokhlayeh@186 1218 done | tr ' ' '\n' | sort -u | sed "/^$PACKAGE$/d" | tr '\n' ' '
gokhlayeh@186 1219 }
gokhlayeh@186 1220 echo -e $PACKAGE"\t $(replace_by_wanted) "
gokhlayeh@186 1221 done > $tmp/db
gokhlayeh@186 1222 while [ -s "$tmp/db" ]; do
gokhlayeh@186 1223 status=start
gokhlayeh@186 1224 for pkg in $(cut -f 1 $tmp/db); do
gokhlayeh@195 1225 if ! fgrep -q ' '$pkg' ' $tmp/db; then
gokhlayeh@186 1226 echo $pkg >> $tmp/cookorder
gokhlayeh@186 1227 sed -e "/^$pkg\t/d" -e "s/ $pkg / /g" -i $tmp/db
gokhlayeh@186 1228 status=proceed
gokhlayeh@186 1229 fi
gokhlayeh@186 1230 done
gokhlayeh@186 1231 if [ "$status" = start ]; then
gokhlayeh@186 1232 cp -f $tmp/db /tmp/remain-depends.txt
gokhlayeh@186 1233 echo "Can't go further because there's depency(ies) loop(s). The remaining packages will be commentend in the cookorder and will be unbuild in case of major update until the problem is solved." >&2
gokhlayeh@186 1234 for blocked in $(cut -f 1 $tmp/db); do
gokhlayeh@186 1235 echo "$blocked" >> $PACKAGES_REPOSITORY/blocked
gokhlayeh@186 1236 done
gokhlayeh@186 1237 break
gokhlayeh@186 1238 fi
gokhlayeh@186 1239 done
gokhlayeh@186 1240 [ -s $tmp/cookorder ] || touch $tmp/cookorder
gokhlayeh@186 1241
gokhlayeh@186 1242 # The toolchain packages are moved in first position.
gokhlayeh@186 1243 grep $(for pkg in `scan "$SLITAZ_TOOLCHAIN $SLITAZ_TOOLCHAIN_EXTRA" \
gokhlayeh@186 1244 --look_for=all --with_args`; do echo " -e ^$pkg$"; done) \
gokhlayeh@186 1245 $tmp/cookorder | tac > $PACKAGES_REPOSITORY/cookorder.txt
gokhlayeh@186 1246 for pkg in $(cat $PACKAGES_REPOSITORY/cookorder.txt); do
gokhlayeh@186 1247 sed "/^$pkg$/d" -i $tmp/cookorder
gokhlayeh@186 1248 done
gokhlayeh@186 1249
gokhlayeh@186 1250 tac $tmp/cookorder >> $PACKAGES_REPOSITORY/cookorder.txt
gokhlayeh@186 1251 report end-step
pascal@91 1252 }
pascal@91 1253
gokhlayeh@186 1254 ########################################################################
gokhlayeh@186 1255 # SCAN CORE
gokhlayeh@186 1256 ########################
gokhlayeh@186 1257 # Include various scan core-functions. It's not intended to be used
gokhlayeh@186 1258 # directly : prefer scan wrappers in next section.
gokhlayeh@186 1259
gokhlayeh@186 1260 look_for_dep()
gokhlayeh@186 1261 {
gokhlayeh@186 1262 if [ "$undigest" ] && [ ! -f "$WOK/$PACKAGE/receipt" ]; then
gokhlayeh@186 1263 grep ^$PACKAGE$'\t' $SLITAZ_DIR/$SLITAZ_VERSION/packages/wok-depends.txt \
gokhlayeh@186 1264 | cut -f 2
gokhlayeh@186 1265 else
gokhlayeh@186 1266 grep ^$PACKAGE$'\t' $INCOMING_REPOSITORY/wok-depends.txt | \
gokhlayeh@186 1267 cut -f 2
gokhlayeh@186 1268 fi
gokhlayeh@186 1269 }
gokhlayeh@186 1270
gokhlayeh@186 1271 look_for_bdep()
gokhlayeh@186 1272 {
gokhlayeh@186 1273 # if [ "$undigest" ] && [ ! -f "$WOK/$PACKAGE/receipt" ]; then
gokhlayeh@186 1274 # grep ^$PACKAGE$'\t' $SLITAZ_DIR/$SLITAZ_VERSION/packages/wok-depends.txt \
gokhlayeh@186 1275 # | cut -f 3
gokhlayeh@186 1276 # else
gokhlayeh@186 1277 # grep ^$PACKAGE$'\t' $INCOMING_REPOSITORY/wok-depends.txt | \
gokhlayeh@186 1278 # cut -f 3
gokhlayeh@186 1279 # fi
gokhlayeh@186 1280 look_for_all
gokhlayeh@186 1281 }
gokhlayeh@186 1282
gokhlayeh@186 1283 look_for_all()
gokhlayeh@186 1284 {
gokhlayeh@186 1285 if [ "$undigest" ] && [ ! -f "$WOK/$PACKAGE/receipt" ]; then
gokhlayeh@186 1286 grep ^$PACKAGE$'\t' $SLITAZ_DIR/$SLITAZ_VERSION/packages/wok-depends.txt \
gokhlayeh@186 1287 | cut -f 2,3 | sed 's/ / /'
gokhlayeh@186 1288 else
gokhlayeh@186 1289 grep ^$PACKAGE$'\t' $INCOMING_REPOSITORY/wok-depends.txt | \
gokhlayeh@186 1290 cut -f 2,3 | sed 's/ / /'
gokhlayeh@186 1291 fi
gokhlayeh@186 1292 }
gokhlayeh@186 1293
gokhlayeh@186 1294 filter()
gokhlayeh@186 1295 {
gokhlayeh@186 1296 for pkg in $(cat); do
gokhlayeh@186 1297 if grep -q ^$pkg$'\t' $dep_db; then
gokhlayeh@186 1298 { grep ^$pkg$'\t' $wan_db || echo $pkg
gokhlayeh@186 1299 } | sed 's/\t/ /'
gokhlayeh@186 1300 else
gokhlayeh@186 1301 echo "Error: $pkg can't be found." >&2
gokhlayeh@186 1302 fi
gokhlayeh@186 1303 done
gokhlayeh@186 1304 }
gokhlayeh@186 1305
gokhlayeh@186 1306 look_for_all_filtered()
gokhlayeh@186 1307 {
gokhlayeh@186 1308 look_for_all | filter
gokhlayeh@186 1309 }
gokhlayeh@186 1310
gokhlayeh@186 1311 look_for_rdep()
gokhlayeh@186 1312 {
gokhlayeh@195 1313 fgrep ' '$PACKAGE' ' $INCOMING_REPOSITORY/wok-depends.txt | cut -f 1
gokhlayeh@186 1314 if [ "$undigest" ]; then
gokhlayeh@195 1315 for rdep in $(fgrep ' '$PACKAGE' ' $SLITAZ_DIR/$SLITAZ_VERSION/packages/wok-depends.txt | cut -f 1); do
gokhlayeh@186 1316 if [ ! -f "WOK$/$rdep/receipt" ]; then
gokhlayeh@186 1317 echo "$rdep"
gokhlayeh@186 1318 fi
gokhlayeh@186 1319 done
gokhlayeh@186 1320 fi
gokhlayeh@186 1321 }
gokhlayeh@186 1322
gokhlayeh@186 1323 look_for_rbdep()
gokhlayeh@186 1324 {
gokhlayeh@195 1325 fgrep ' '$PACKAGE' ' $INCOMING_REPOSITORY/wok-depends.txt | \
gokhlayeh@195 1326 cut -f 1,3 | fgrep ' '$PACKAGE' ' | cut -f 1
gokhlayeh@186 1327 if [ "$undigest" ]; then
gokhlayeh@195 1328 for rdep in $(fgrep ' '$PACKAGE' ' $SLITAZ_DIR/$SLITAZ_VERSION/packages/wok-depends.txt \
gokhlayeh@195 1329 | cut -f 1,3 | fgrep ' '$PACKAGE' ' | cut -f 1); do
gokhlayeh@186 1330 if [ ! -f "WOK$/$rdep/receipt" ]; then
gokhlayeh@186 1331 echo "$rdep"
gokhlayeh@186 1332 fi
gokhlayeh@186 1333 done
gokhlayeh@186 1334 fi
gokhlayeh@186 1335 }
gokhlayeh@186 1336
gokhlayeh@186 1337 # Return WANTED if it exists.
gokhlayeh@186 1338 look_for_wanted()
gokhlayeh@186 1339 {
gokhlayeh@186 1340 if [ "$undigest" ] && [ ! -f "$WOK/$PACKAGE/receipt" ]; then
gokhlayeh@186 1341 grep ^$PACKAGE$'\t' $SLITAZ_DIR/$SLITAZ_VERSION/packages/wok-wanted.txt | cut -f 2
gokhlayeh@186 1342 else
gokhlayeh@186 1343 grep ^$PACKAGE$'\t' $INCOMING_REPOSITORY/wok-wanted.txt | cut -f 2
gokhlayeh@186 1344 fi
gokhlayeh@186 1345 }
gokhlayeh@186 1346
gokhlayeh@186 1347 # Return packages which wants PACKAGE.
gokhlayeh@186 1348 look_for_rwanted()
gokhlayeh@186 1349 {
gokhlayeh@186 1350 grep $'\t'$PACKAGE$ $INCOMING_REPOSITORY/wok-wanted.txt | cut -f 1
gokhlayeh@186 1351 if [ "$undigest" ]; then
gokhlayeh@186 1352 for rwanted in $(grep $'\t'$PACKAGE$ $SLITAZ_DIR/$SLITAZ_VERSION/packages/wok-wanted.txt | cut -f 1); do
gokhlayeh@186 1353 if [ ! -f "$WOK/$rwanted/receipt" ]; then
gokhlayeh@186 1354 echo "$rwanted"
gokhlayeh@186 1355 fi
gokhlayeh@186 1356 done
gokhlayeh@186 1357 fi
gokhlayeh@186 1358 }
gokhlayeh@186 1359
gokhlayeh@186 1360 look_for_dev()
gokhlayeh@186 1361 {
gokhlayeh@186 1362 [ -f "$WOK/$PACKAGE-dev/receipt" ] && echo $PACKAGE-dev && return
gokhlayeh@186 1363 [ "$undigest" ] && [ -f "$SLITAZ_DIR/$SLITAZ_VERSION/wok/$PACKAGE-dev/receipt" ] && \
gokhlayeh@186 1364 echo $PACKAGE-dev
gokhlayeh@186 1365 }
gokhlayeh@186 1366
gokhlayeh@186 1367 ########################################################################
gokhlayeh@186 1368 # SCAN
gokhlayeh@186 1369 ########################
gokhlayeh@186 1370 # Use wok-wanted.txt and wok-depeds.txt to scan depends.
gokhlayeh@186 1371 # Option in command line (must be first arg) :
gokhlayeh@186 1372 # --look_for=bdep/rbdep - Look for depends or reverse depends.
gokhlayeh@186 1373 # --with_dev - Add development packages (*-dev) in the result.
gokhlayeh@186 1374 # --with_wanted - Add package+reverse wanted in the result.
gokhlayeh@186 1375 # --with_args - Include packages in argument in the result.
gokhlayeh@186 1376
gokhlayeh@186 1377 scan()
gokhlayeh@186 1378 {
gokhlayeh@193 1379 # With some commands we don't want report (list output).
gokhlayeh@193 1380 if [ "$COMMAND" = gen-cooklist ] || [ "$COMMAND" = build-depends ]; then
gokhlayeh@193 1381 report(){ : ; }
gokhlayeh@193 1382 fi
gokhlayeh@193 1383
gokhlayeh@193 1384 # Generate wok data files if they're missing. Output message in
gokhlayeh@193 1385 # stderr as stdout output may be used as packages list.
gokhlayeh@193 1386 if [ ! -s "$wan_db" ] || [ ! -s "$dep_db" ]; then
gokhlayeh@193 1387 echo "Missing wok data files, generating them... This may take few minutes." >&2
gokhlayeh@193 1388 gen_wok_db
gokhlayeh@193 1389 fi
gokhlayeh@193 1390
gokhlayeh@186 1391 # Get packages in argument.
gokhlayeh@186 1392 local PACKAGE pkg_list=
gokhlayeh@186 1393 for arg in $@; do
gokhlayeh@186 1394 [ "$arg" = "${arg#--}" ] || continue
gokhlayeh@186 1395 pkg_list="$pkg_list $arg"
gokhlayeh@186 1396 done
gokhlayeh@186 1397
gokhlayeh@186 1398 # Get options.
gokhlayeh@186 1399 [ "$pkg_list" ] || return
gokhlayeh@186 1400 local cooklist= look_for= with_dev= with_wanted= with_args= log_command="$0 $@" \
gokhlayeh@186 1401 get_options_list="look_for with_dev with_wanted with_args cooklist"
gokhlayeh@186 1402 get_options
gokhlayeh@186 1403
gokhlayeh@186 1404 # Cooklist is a special case where we need to modify a little
gokhlayeh@186 1405 # scan behavior
gokhlayeh@186 1406 if [ "$cooklist" ]; then
gokhlayeh@186 1407 look_for=all_filtered && with_args=yes && with_dev= && with_wanted= && rwan=yes
gokhlayeh@186 1408 pkg_list=$(echo $pkg_list | filter)
gokhlayeh@186 1409 fi
gokhlayeh@186 1410
gokhlayeh@186 1411 ##############################################################
gokhlayeh@186 1412 # ADD TO LISTS PROPOSAL ######################################
gokhlayeh@186 1413 ##############################################################
gokhlayeh@186 1414 #
gokhlayeh@186 1415 include_wanted()
gokhlayeh@186 1416 {
gokhlayeh@186 1417 for pkg in $(cat); do
gokhlayeh@186 1418 { grep ^$pkg$'\t' $wan_db || echo $pkg
gokhlayeh@186 1419 } | sed 's/\t/ /'
gokhlayeh@186 1420 done
gokhlayeh@186 1421 }
gokhlayeh@186 1422
gokhlayeh@186 1423 no_duplication()
gokhlayeh@186 1424 {
gokhlayeh@186 1425 for pkg in $(cat); do
gokhlayeh@186 1426 grep -q ^$pkg$ $tmp/list $tmp/dep && continue
gokhlayeh@186 1427 echo $pkg
gokhlayeh@186 1428 done
gokhlayeh@186 1429 }
gokhlayeh@186 1430
gokhlayeh@186 1431 append_to_list()
gokhlayeh@186 1432 {
gokhlayeh@186 1433 no_duplication >> $tmp/list
gokhlayeh@186 1434 # OU
gokhlayeh@186 1435 include_wanted | no_duplication >> $tmp/list
gokhlayeh@186 1436 }
gokhlayeh@186 1437 #
gokhlayeh@186 1438 ##############################################################
gokhlayeh@186 1439 for PACKAGE in $(echo $pkg_list | filter); do
gokhlayeh@186 1440 look_for_$look_for
gokhlayeh@186 1441 done | tr ' ' '\n' | sort -u > $tmp/list
gokhlayeh@186 1442 [ "$look_for" = bdep ] && look_for=dep
gokhlayeh@186 1443 while [ -s $tmp/list ]; do
gokhlayeh@186 1444 PACKAGE=$(sed 1!d $tmp/list)
gokhlayeh@186 1445 sed 1d -i $tmp/list
gokhlayeh@186 1446 echo $PACKAGE >> $tmp/dep
gokhlayeh@186 1447 for depend in $(look_for_$look_for); do
gokhlayeh@186 1448 if ! grep -q ^$depend$ $tmp/list $tmp/dep; then
gokhlayeh@186 1449 echo $depend >> $tmp/list
gokhlayeh@186 1450 fi
gokhlayeh@186 1451 done
gokhlayeh@186 1452 done
gokhlayeh@186 1453 [ "$with_args" ] && echo $pkg_list | tr ' ' '\n' >> $tmp/dep
gokhlayeh@186 1454 if [ -s $tmp/dep ]; then
gokhlayeh@186 1455 if [ "$with_wanted" ]; then
gokhlayeh@186 1456 cat $tmp/dep | while read PACKAGE; do
gokhlayeh@186 1457 look_for_rwanted >> $tmp/dep
gokhlayeh@186 1458 done
gokhlayeh@186 1459 elif [ "$with_dev" ]; then
gokhlayeh@186 1460 cat $tmp/dep | while read PACKAGE; do
gokhlayeh@186 1461 look_for_dev >> $tmp/dep
gokhlayeh@186 1462 done
gokhlayeh@186 1463 fi
gokhlayeh@186 1464 if [ "$cooklist" ]; then
gokhlayeh@186 1465 mv $tmp/dep $tmp/cooklist
gokhlayeh@186 1466 sort_cooklist
gokhlayeh@186 1467 rm $tmp/cooklist
gokhlayeh@186 1468 else
gokhlayeh@186 1469 cat $tmp/dep | sort -u
gokhlayeh@186 1470 fi
gokhlayeh@186 1471 fi
gokhlayeh@186 1472 rm $tmp/dep $tmp/list 2>/dev/null
gokhlayeh@186 1473 }
gokhlayeh@186 1474
gokhlayeh@186 1475 ########################################################################
gokhlayeh@186 1476 # This section contains functions to check package repository and
gokhlayeh@186 1477 # find which packages to cook.
gokhlayeh@186 1478 ########################
gokhlayeh@186 1479
gokhlayeh@186 1480 # Actually its becomes more than check commit... Maybe put this in report
gokhlayeh@186 1481 # function is a good idea.
gokhlayeh@186 1482 check_for_commit()
gokhlayeh@186 1483 {
gokhlayeh@186 1484 report step "Checking for commits"
gokhlayeh@186 1485
gokhlayeh@186 1486 # Clean the list... Later we will perfom a partial clean only to keep
gokhlayeh@186 1487 # some usefull informations
gokhlayeh@186 1488 rm $PACKAGES_REPOSITORY/commit 2>/dev/null
gokhlayeh@186 1489
gokhlayeh@186 1490 # If there's a packages-incoming repository we need to check it too.
gokhlayeh@195 1491 for RECEIPT in $(echo $WOK/*/receipt | fgrep -v '*'); do
gokhlayeh@186 1492 source_receipt
gokhlayeh@186 1493
gokhlayeh@186 1494 # We use md5 of cooking stuff in the packaged receipt to check
gokhlayeh@186 1495 # commit. We look consecutively in 3 different locations :
gokhlayeh@186 1496 # - in the wok/PACKAGE/taz folder
gokhlayeh@186 1497 # - in the receipt in the package in incoming repository
gokhlayeh@186 1498 # - in the receipt in the package in packages repository
gokhlayeh@186 1499 # If md5sum match, there's no commit.
gokhlayeh@186 1500 # If there's not md5sum datas, because the package was cooked
gokhlayeh@186 1501 # with a previous version of tazwok, we don't put in in commit
gokhlayeh@186 1502 # list (need a cook-all to refresh them)
gokhlayeh@186 1503 # If there's no receipt available, package is missing so we put
gokhlayeh@186 1504 # it in commit list.
gokhlayeh@186 1505 # First look for package in packages-incoming.
gokhlayeh@186 1506 check_for_commit_using_md5sum()
gokhlayeh@186 1507 {
gokhlayeh@186 1508 if [ ! -f $WOK/$PACKAGE/md5 ]; then
gokhlayeh@186 1509 sed -n '/# md5sum of cooking stuff :/,$p' receipt | \
gokhlayeh@186 1510 sed -e 1d -e 's/^# //' > $WOK/$PACKAGE/md5
gokhlayeh@186 1511 cd $WOK/$PACKAGE
gokhlayeh@186 1512 fi
gokhlayeh@186 1513
gokhlayeh@186 1514 # Use md5sum list in receipt to check for commit.
gokhlayeh@186 1515 if [ -s md5 ]; then
gokhlayeh@186 1516 if md5sum -cs md5; then
gokhlayeh@186 1517 return_code=0
gokhlayeh@186 1518
gokhlayeh@186 1519 # If md5sum check if ok, check for new files in
gokhlayeh@186 1520 # cooking stuff.
gokhlayeh@186 1521 for file in receipt description.txt $( [ -d stuff ] && find stuff); do
gokhlayeh@195 1522 if [ -f $file ] && ! fgrep -q " $file" md5; then
gokhlayeh@186 1523 set_commited
gokhlayeh@186 1524 fi
gokhlayeh@186 1525 done
gokhlayeh@186 1526 else
gokhlayeh@186 1527 set_commited
gokhlayeh@186 1528 fi
gokhlayeh@186 1529 else
gokhlayeh@186 1530 gen_cookmd5
gokhlayeh@186 1531 fi
gokhlayeh@186 1532 }
gokhlayeh@186 1533 set_commited()
gokhlayeh@186 1534 {
gokhlayeh@186 1535 echo $PACKAGE >> $PACKAGES_REPOSITORY/commit
gokhlayeh@186 1536 echo "Commit: $PACKAGE ($VERSION)"
gokhlayeh@186 1537 gen_cookmd5
gokhlayeh@186 1538 }
gokhlayeh@195 1539 taz_dir=$(echo $WOK/$PACKAGE/taz/$PACKAGE-* | fgrep -v '*')
gokhlayeh@186 1540 if [ -f $WOK/$PACKAGE/md5 ]; then
gokhlayeh@186 1541 cd $WOK/$PACKAGE
gokhlayeh@186 1542 check_for_commit_using_md5sum
gokhlayeh@186 1543 elif [ "$taz_dir" ]; then
gokhlayeh@186 1544 cd $taz_dir
gokhlayeh@186 1545 check_for_commit_using_md5sum
gokhlayeh@186 1546 else
gokhlayeh@195 1547 pkg=$(echo $INCOMING_REPOSITORY/$PACKAGE-$VERSION*.tazpkg | fgrep -v '*')
gokhlayeh@195 1548 [ "$pkg" ] || pkg=$(echo $PACKAGES_REPOSITORY/$PACKAGE-$VERSION*.tazpkg | fgrep -v '*')
gokhlayeh@186 1549 if [ "$pkg" ]; then
gokhlayeh@186 1550 get_pkg_files $pkg
gokhlayeh@186 1551 check_for_commit_using_md5sum
gokhlayeh@186 1552 rm -r $pkg_files_dir
gokhlayeh@186 1553 continue
gokhlayeh@186 1554 fi
gokhlayeh@186 1555 set_commited
gokhlayeh@186 1556 fi
gokhlayeh@186 1557 done
gokhlayeh@186 1558 report end-step
gokhlayeh@186 1559 }
gokhlayeh@186 1560
gokhlayeh@186 1561 gen_cook_list()
gokhlayeh@186 1562 {
gokhlayeh@186 1563 if [ -s $PACKAGES_REPOSITORY/commit ]; then
gokhlayeh@186 1564 report step "Generate genpkg & cook lists."
gokhlayeh@186 1565 cd $PACKAGES_REPOSITORY
gokhlayeh@186 1566 #cp commit $tmp/commit
gokhlayeh@186 1567 #if [ -s broken ]; then
gokhlayeh@186 1568 ## dep_scan return deps including the packages given in argument.
gokhlayeh@186 1569 ## To avoid that, we firt generate a list of direct rdepends of
gokhlayeh@186 1570 ## brokens without packages in argument, then we generate the
gokhlayeh@186 1571 ## full rdeps list. We do this because we don't want to block
gokhlayeh@186 1572 ## packages at source of broken tree if a fix as been commited.
gokhlayeh@186 1573 #for PACKAGE in $(cat broken); do
gokhlayeh@186 1574 #look_for_rdep >> $tmp/broken
gokhlayeh@186 1575 #done
gokhlayeh@186 1576 #cat $tmp/broken
gokhlayeh@186 1577 #look_for=rdep && with_wanted=yes
gokhlayeh@186 1578 #for PACKAGE in $(dep_scan `cat $tmp/broken`); do
gokhlayeh@186 1579 #if grep -q ^$PACKAGE$ $tmp/commit; then
gokhlayeh@186 1580 #sed "/^$PACKAGE$/d" -i $tmp/commit
gokhlayeh@186 1581 #fi
gokhlayeh@186 1582 #done
gokhlayeh@186 1583 #rm $tmp/broken
gokhlayeh@186 1584 #fi
gokhlayeh@186 1585 for PACKAGE in $(cat commit); do
gokhlayeh@186 1586 WANTED="$(look_for_wanted)"
gokhlayeh@186 1587 if [ "$WANTED" ]; then
gokhlayeh@186 1588
gokhlayeh@186 1589 # If cook of wanted package is planned, this one will be
gokhlayeh@186 1590 # packaged at the same time. Else if wanted package is
gokhlayeh@186 1591 # broken or blocked, ignore the commit. Else, put the
gokhlayeh@186 1592 # package in genpkglist.
gokhlayeh@186 1593 { grep -q ^$WANTED$ commit || grep -q ^$WANTED$ broken || \
gokhlayeh@186 1594 grep -q ^$WANTED$ cooklist || grep -q ^$WANTED$ blocked || \
gokhlayeh@186 1595 grep -q ^$WANTED$ genpkglist
gokhlayeh@186 1596 } && continue
gokhlayeh@186 1597 echo $WANTED >> genpkglist
gokhlayeh@186 1598 else
gokhlayeh@186 1599 { grep -q ^$PACKAGE$ blocked || grep -q ^$PACKAGE$ cooklist
gokhlayeh@186 1600 } && continue
gokhlayeh@186 1601 echo $PACKAGE >> cooklist
gokhlayeh@186 1602 sed "/^$PACKAGE$/d" -i broken
gokhlayeh@186 1603 fi
gokhlayeh@186 1604 done
gokhlayeh@186 1605 #rm $tmp/commit
gokhlayeh@186 1606 if [ -s genpkglist ]; then
gokhlayeh@186 1607 echo "genpkglist:"
gokhlayeh@186 1608 cat genpkglist
gokhlayeh@186 1609 fi
gokhlayeh@186 1610 report end-step
gokhlayeh@186 1611 fi
gokhlayeh@186 1612 cooklist=$PACKAGES_REPOSITORY/cooklist
gokhlayeh@186 1613 sort_cooklist
gokhlayeh@186 1614 }
gokhlayeh@186 1615
gokhlayeh@186 1616 sort_cooklist()
gokhlayeh@186 1617 {
gokhlayeh@186 1618 [ ! "$cooklist" ] && cooklist=$PACKAGES_REPOSITORY/cooklist
gokhlayeh@186 1619 [ -s $cooklist ] || [ -s "$tmp/cooklist" ] || return
gokhlayeh@186 1620 [ -s $PACKAGES_REPOSITORY/cookorder.txt ] || gen_wok_db
gokhlayeh@186 1621 [ ! -s "$tmp/cooklist" ] && cp -a $cooklist $tmp/cooklist
gokhlayeh@186 1622 report step "Sorting cooklist"
gokhlayeh@186 1623
gokhlayeh@186 1624 # Use cookorder.txt to sort cooklist.
gokhlayeh@186 1625 cat $PACKAGES_REPOSITORY/cookorder.txt | while read PACKAGE; do
gokhlayeh@186 1626 if grep -q ^$PACKAGE$ $tmp/cooklist; then
gokhlayeh@186 1627 sed "/^$PACKAGE$/d" -i $tmp/cooklist
gokhlayeh@186 1628 echo $PACKAGE >> $tmp/cooklist.tmp
gokhlayeh@186 1629 fi
gokhlayeh@186 1630 done
gokhlayeh@186 1631
gokhlayeh@186 1632 # Remaining packages in cooklist are thoses without compile_rules.
gokhlayeh@186 1633 # They can be cooked first in any order.
gokhlayeh@186 1634 mv -f $tmp/cooklist.tmp $tmp/cooklist
gokhlayeh@186 1635 [ "$cooklist" = "$PACKAGES_REPOSITORY/cooklist" ] && \
gokhlayeh@186 1636 cat $tmp/cooklist > $cooklist
gokhlayeh@186 1637 cat $tmp/cooklist
gokhlayeh@186 1638 report end-step
gokhlayeh@186 1639 }
gokhlayeh@186 1640
gokhlayeh@186 1641 check_for_incoming()
gokhlayeh@186 1642 {
gokhlayeh@186 1643 [ -s $INCOMING_REPOSITORY/packages.txt ] || return
gokhlayeh@186 1644 report step "Checking packages-incoming repository"
gokhlayeh@186 1645 cd $INCOMING_REPOSITORY
gokhlayeh@186 1646 grep ^[0-9,a-z,A-Z] packages.txt > $tmp/incoming
gokhlayeh@186 1647 scan `cat $PACKAGES_REPOSITORY/broken` --look_for=bdep --with_wanted > $tmp/broken
gokhlayeh@186 1648 for PACKAGE in $(scan `cat $tmp/broken` --look_for=rdep --with_wanted --with_args); do
gokhlayeh@186 1649 sed "/^$PACKAGE$/d" -i $tmp/incoming
gokhlayeh@186 1650 for rwanted in $(look_for_rwanted); do
gokhlayeh@186 1651 sed "/^$rwanted$/d" -i $tmp/incoming
gokhlayeh@186 1652 done
gokhlayeh@186 1653 done
gokhlayeh@186 1654 rm $tmp/broken
gokhlayeh@186 1655 if [ "$incoming_delay" != 0 ]; then
gokhlayeh@186 1656 cat $tmp/incoming | while read PACKAGE; do
gokhlayeh@186 1657 [ "$(grep ^$PACKAGE$ $tmp/incoming)" ] || continue
gokhlayeh@186 1658 dep_list=$( { scan $PACKAGE --look_for=bdep --with_wanted && \
gokhlayeh@186 1659 scan $PACKAGE --look_for=rdep --with_wanted --with_args; } \
gokhlayeh@186 1660 | sort -u )
gokhlayeh@186 1661 for dep in $dep_list; do
gokhlayeh@186 1662 [ "$(find -name "`get_pkg_version $INCOMING_REPOSITORY`.tazpkg" -mtime +$incoming_delay)" ] && continue
gokhlayeh@186 1663 for pkg in $dep_list; do
gokhlayeh@186 1664 sed "/^$pkg$/d" -i $tmp/incoming
gokhlayeh@186 1665 done && break
gokhlayeh@186 1666 done
gokhlayeh@186 1667 done
gokhlayeh@186 1668 fi
gokhlayeh@186 1669 if [ -s "$tmp/incoming" ]; then
gokhlayeh@186 1670 for PACKAGE in $(cat $tmp/incoming); do
gokhlayeh@186 1671 prev_VERSION=$(get_pkg_version $PACKAGES_REPOSITORY)
gokhlayeh@186 1672 remove_previous_package $PACKAGES_REPOSITORY
gokhlayeh@186 1673 remove_previous_tarball
gokhlayeh@186 1674 cur_VERSION=$(get_pkg_version $INCOMING_REPOSITORY)
gokhlayeh@186 1675 mv -f $PACKAGE-$cur_VERSION.tazpkg $PACKAGES_REPOSITORY
gokhlayeh@186 1676 echo "Moving $PACKAGE to main repository."
gokhlayeh@186 1677 done
gokhlayeh@186 1678 pkg_repository=$INCOMING_REPOSITORY && update_packages_db
gokhlayeh@186 1679 pkg_repository=$PACKAGES_REPOSITORY && update_packages_db
gokhlayeh@186 1680 fi
gokhlayeh@186 1681 report end-step
gokhlayeh@186 1682 }
gokhlayeh@186 1683
gokhlayeh@186 1684 ########################################################################
gokhlayeh@186 1685 # TAZWOK MAIN FUNCTIONS
gokhlayeh@186 1686 ########################
gokhlayeh@186 1687
gokhlayeh@186 1688 clean()
gokhlayeh@186 1689 {
gokhlayeh@186 1690 cd $WOK/$PACKAGE
gokhlayeh@186 1691 ls -A $WOK/$PACKAGE | grep -q -v -e ^receipt$ -e ^description.txt$ \
gokhlayeh@186 1692 -e ^stuff$ || return
gokhlayeh@186 1693
gokhlayeh@186 1694 report step "Cleaning $PACKAGE"
gokhlayeh@186 1695 # Check for clean_wok function.
gokhlayeh@186 1696 if grep -q ^clean_wok $RECEIPT; then
gokhlayeh@186 1697 clean_wok
gokhlayeh@186 1698 fi
gokhlayeh@186 1699 # Clean should only have a receipt, stuff and optional desc.
gokhlayeh@186 1700 for f in `ls .`
gokhlayeh@186 1701 do
gokhlayeh@186 1702 case $f in
gokhlayeh@186 1703 receipt|stuff|description.txt)
gokhlayeh@186 1704 continue ;;
gokhlayeh@186 1705 *)
gokhlayeh@186 1706 echo "Removing: $f"
gokhlayeh@186 1707 rm -rf $f
gokhlayeh@186 1708 esac
gokhlayeh@186 1709 done
gokhlayeh@186 1710 report end-step
gokhlayeh@186 1711 }
gokhlayeh@186 1712
gokhlayeh@186 1713 # Configure and make a package with the receipt.
gokhlayeh@186 1714 compile_package()
gokhlayeh@186 1715 {
gokhlayeh@186 1716 check_for_package_on_cmdline
gokhlayeh@186 1717
gokhlayeh@186 1718 # Include the receipt to get all needed variables and functions
gokhlayeh@186 1719 # and cd into the work directory to start the work.
gokhlayeh@186 1720 check_for_receipt
gokhlayeh@186 1721 source_receipt
gokhlayeh@186 1722
gokhlayeh@186 1723 # Log the package name and date.
gokhlayeh@186 1724 echo "date `date +%Y%m%d\ \%H:%M:%S`" >> $LOG
gokhlayeh@186 1725 echo "package $PACKAGE (compile)" >> $LOG
gokhlayeh@186 1726
gokhlayeh@186 1727 # Set wanted $src variable to help compiling.
gokhlayeh@186 1728 [ ! "$src" ] && set_src_path
gokhlayeh@186 1729 check_for_build_depends || return 1
gokhlayeh@186 1730 check_for_wanted
gokhlayeh@186 1731 unset target
gokhlayeh@186 1732 check_for_tarball && check_for_compile_rules
gokhlayeh@186 1733 }
gokhlayeh@186 1734
gokhlayeh@186 1735 # Cook command also include all features to manage lists which keep
gokhlayeh@186 1736 # track of wok/packages state.
gokhlayeh@186 1737 cook()
gokhlayeh@186 1738 {
gokhlayeh@186 1739 cook_code=
gokhlayeh@186 1740 set_common_path
gokhlayeh@186 1741 check_for_receipt
gokhlayeh@186 1742 source_receipt
gokhlayeh@186 1743
gokhlayeh@186 1744 # Define log path and start report.
gokhlayeh@186 1745 [ -f $LOCAL_REPOSITORY/log/$PACKAGE.html ] && rm $LOCAL_REPOSITORY/log/$PACKAGE.html
gokhlayeh@186 1746 report sublog $LOCAL_REPOSITORY/log/$PACKAGE.html
gokhlayeh@186 1747 report step "Cooking $PACKAGE"
gokhlayeh@186 1748 report open-bloc
gokhlayeh@186 1749
gokhlayeh@186 1750 # Clean package if needed.
gokhlayeh@186 1751 clean $PACKAGE
gokhlayeh@186 1752
gokhlayeh@186 1753 # Remove PACKAGE from commit & cook lists.
gokhlayeh@186 1754 sed "/^$PACKAGE$/d" -i $PACKAGES_REPOSITORY/commit
gokhlayeh@186 1755 sed "/^$PACKAGE$/d" -i $PACKAGES_REPOSITORY/cooklist
gokhlayeh@186 1756 [ -s $tmp/cooklist ] && sed "/^$PACKAGE$/d" -i $tmp/cooklist
gokhlayeh@186 1757
gokhlayeh@186 1758 if compile_package; then
gokhlayeh@186 1759 refresh_packages_from_compile
gokhlayeh@186 1760 gen_package
gokhlayeh@186 1761 remove_src
gokhlayeh@186 1762
gokhlayeh@186 1763 # Plan recook of reverse build depends if gen_package has detect
gokhlayeh@186 1764 # a change in libraries.
gokhlayeh@186 1765 if [ "$cook_rdep" ]; then
gokhlayeh@186 1766 report step "Look for packages which need a refresh"
gokhlayeh@186 1767 for rdep in $(scan $PACKAGE --look_for=rdep); do
gokhlayeh@186 1768 sed "/^$rdep$/d" -i $PACKAGES_REPOSITORY/broken
gokhlayeh@186 1769 if [ -f $WOK/$rdep/receipt ] && ! grep -q ^$rdep$ $tmp/cooklist; then
gokhlayeh@186 1770 echo "Add $rdep in cooklist to avoid broke caused by library update in $PACKAGE"
gokhlayeh@186 1771 echo $rdep >> $tmp/cooklist
gokhlayeh@186 1772 regen_cooklist=yes
gokhlayeh@186 1773 fi
gokhlayeh@186 1774 done
gokhlayeh@186 1775 report end-step
gokhlayeh@186 1776 fi
gokhlayeh@186 1777
gokhlayeh@186 1778 # Update packages-incoming repository.
gokhlayeh@186 1779 store_pkgname=$PACKAGE
gokhlayeh@186 1780 pkg_repository=$INCOMING_REPOSITORY
gokhlayeh@186 1781 update_packages_db
gokhlayeh@186 1782
gokhlayeh@186 1783 PACKAGE=$store_pkgname
gokhlayeh@186 1784 unset store_pkgname
gokhlayeh@186 1785
gokhlayeh@186 1786 # Upgrade to cooked packages if it was previously installed.
gokhlayeh@186 1787 report step "Look for package(s) to upgrade"
gokhlayeh@186 1788 for pkg in $(look_for_rwanted) $PACKAGE; do
gokhlayeh@186 1789 if [ -d $INSTALLED/$pkg ]; then
gokhlayeh@186 1790 tazpkg get-install $pkg --forced
gokhlayeh@186 1791 fi
gokhlayeh@186 1792 done
gokhlayeh@186 1793 report end-step
gokhlayeh@186 1794 else
gokhlayeh@186 1795
gokhlayeh@186 1796 # Set package as broken.
gokhlayeh@186 1797 if ! grep -q ^$PACKAGE$ $PACKAGES_REPOSITORY/broken; then
gokhlayeh@186 1798 echo $PACKAGE >> $PACKAGES_REPOSITORY/broken
gokhlayeh@186 1799 fi
gokhlayeh@186 1800 gen_cookmd5
gokhlayeh@186 1801 cook_code=1
gokhlayeh@186 1802 fi
gokhlayeh@186 1803
gokhlayeh@186 1804 # Remove build_depends in cook mode (if in cooklist, it's done when
gokhlayeh@186 1805 # checking build_depends of next package and we remove only unneeded
gokhlayeh@186 1806 # packages to keep chroot minimal and gain some time).
gokhlayeh@186 1807 [ "$COMMAND" = cook ] && remove_build_depends $MISSING_PACKAGE
gokhlayeh@186 1808
gokhlayeh@186 1809 # Regen the cooklist if it was planned and command is not cook.
gokhlayeh@186 1810 [ "$regen_cooklist" ] && unset regen_cooklist && \
gokhlayeh@186 1811 [ "$COMMAND" != cook ] && sort_cooklist
gokhlayeh@186 1812
gokhlayeh@186 1813 # Some hacks to set the bloc & function status as failed if cook was
gokhlayeh@186 1814 # failed.
gokhlayeh@186 1815 report_return_code=$cook_code
gokhlayeh@186 1816 report close-bloc
gokhlayeh@186 1817 report end-sublog
gokhlayeh@186 1818 return $cook_code
gokhlayeh@186 1819 }
gokhlayeh@186 1820
gokhlayeh@186 1821 genpkg_list()
gokhlayeh@186 1822 {
gokhlayeh@186 1823 while [ -s $PACKAGES_REPOSITORY/genpkglist ]; do
gokhlayeh@186 1824 PACKAGE=$(sed 1!d $PACKAGES_REPOSITORY/genpkglist)
gokhlayeh@186 1825 gen_package
gokhlayeh@186 1826 done
gokhlayeh@186 1827 }
gokhlayeh@186 1828
gokhlayeh@186 1829 cook_list()
gokhlayeh@186 1830 {
gokhlayeh@186 1831 if [ ! -s $cooklist ]; then
gokhlayeh@186 1832 echo "Nothing to cook."
gokhlayeh@186 1833 return
gokhlayeh@186 1834 fi
gokhlayeh@186 1835 if [ -f /usr/bin/tazchroot ]; then
gokhlayeh@186 1836 # Note : options -main variables- are automatically keeped by
gokhlayeh@186 1837 # the sub-applications tazchroot/tazwok; as well as report data.
gokhlayeh@186 1838 cd $LOCAL_REPOSITORY
gokhlayeh@186 1839 [ ! -f tazchroot.conf ] && configure_tazchroot
gokhlayeh@186 1840 tazchroot tazwok cook-list --SLITAZ_DIR=$SLITAZ_DIR --SLITAZ_VERSION=$SLITAZ_VERSION ${undigest:+ --undigest=$undigest}
gokhlayeh@186 1841 return
gokhlayeh@186 1842 fi
gokhlayeh@186 1843 while [ -s $tmp/cooklist ]; do
gokhlayeh@186 1844 PACKAGE=$(sed 1!d $tmp/cooklist)
gokhlayeh@186 1845 cook
gokhlayeh@186 1846 done
gokhlayeh@186 1847 remove_build_depends $MISSING_PACKAGE $remove_later
gokhlayeh@186 1848 }
gokhlayeh@186 1849
gokhlayeh@186 1850 configure_tazchroot()
gokhlayeh@186 1851 {
gokhlayeh@190 1852 cat > $LOCAL_REPOSITORY/tazchroot.conf << EOF
gokhlayeh@186 1853 # Tazchroot configuration file - created by tazwok.
gokhlayeh@186 1854
gokhlayeh@186 1855 # Default chroot path
gokhlayeh@186 1856 SLITAZ_DIR=$SLITAZ_DIR
gokhlayeh@186 1857 SLITAZ_VERSION=$SLITAZ_VERSION
gokhlayeh@186 1858 $( [ "$undigest" ] && echo "undigest=$undigest" )
gokhlayeh@186 1859 LOCAL_REPOSITORY=$SLITAZ_DIR/$(if [ "$undigest" ]; then echo '$undigest'; else echo '$SLITAZ_VERSION'; fi)
gokhlayeh@186 1860 chroot_dir=\$LOCAL_REPOSITORY/chroot
gokhlayeh@186 1861
gokhlayeh@186 1862 # Default scripts path (theses scripts are added in the
gokhlayeh@186 1863 # $chroot_dir/usr/bin and can be called with tazchroot script)
gokhlayeh@186 1864 script_dir=/var/lib/tazchroot
gokhlayeh@186 1865
gokhlayeh@186 1866 # List of directories to mount.
gokhlayeh@192 1867 list_dir="$(for dir in packages wok src packages-incoming log flavors iso; do echo $LOCAL_REPOSITORY/$dir; done)
gokhlayeh@186 1868 $SLITAZ_LOG$( [ "$undigest" ] && echo -e "\n$SLITAZ_DIR/$SLITAZ_VERSION/packages" )"
gokhlayeh@186 1869
gokhlayeh@186 1870 create_chroot()
gokhlayeh@186 1871 {
gokhlayeh@186 1872 mkdir -p \$chroot_dir
gokhlayeh@186 1873 for pkg in \$(tazwok build-depends toolchain --SLITAZ_DIR=\$SLITAZ_DIR --SLITAZ_VERSION=\$SLITAZ_VERSION${undigest:+ --undigest=\$undigest}); do
gokhlayeh@186 1874 tazpkg get-install \$pkg --root="\$chroot_dir"
gokhlayeh@186 1875 done
gokhlayeh@186 1876
gokhlayeh@186 1877 # Store list of installed packages needed by cleanchroot.
gokhlayeh@194 1878 ls -1 \$chroot_dir/\$INSTALLED > \$chroot_dir/\$LOCALSTATE/chroot-pkgs
gokhlayeh@186 1879
gokhlayeh@186 1880 sed -e "s~^SLITAZ_DIR=.*~SLITAZ_DIR=\$SLITAZ_DIR~" \\
gokhlayeh@186 1881 -e "s/^SLITAZ_VERSION=.*/SLITAZ_VERSION=\$SLITAZ_VERSION/" \\
gokhlayeh@186 1882 -i \$chroot_dir/etc/slitaz/slitaz.conf
gokhlayeh@186 1883 $( [ "$undigest" ] && echo ' echo "undigest='"$undigest"'" >> $chroot_dir/etc/slitaz/tazwok.conf')
gokhlayeh@186 1884 sed 's/LC_ALL/LC_ALL=POSIX/' -i \$chroot_dir/etc/profile
gokhlayeh@186 1885 }
gokhlayeh@186 1886
gokhlayeh@186 1887 mount_chroot()
gokhlayeh@186 1888 {
gokhlayeh@186 1889 cp -a /etc/resolv.conf \$chroot_dir/etc/resolv.conf
gokhlayeh@194 1890 echo "\$LOCAL_REPOSITORY/packages" > \$chroot_dir\$LOCALSTATE/mirror
gokhlayeh@194 1891 mkdir -p \$chroot_dir\$LOCALSTATE/undigest/\${LOCAL_REPOSITORY##*/}-incoming
gokhlayeh@194 1892 echo "\$LOCAL_REPOSITORY/packages-incoming" > \$chroot_dir\$LOCALSTATE/undigest/\${LOCAL_REPOSITORY##*/}-incoming/mirror
gokhlayeh@194 1893 $( [ "$undigest" ] && echo ' mkdir -p $chroot_dir$LOCALSTATE/undigest/$SLITAZ_VERSION
gokhlayeh@194 1894 echo "$SLITAZ_DIR/$SLITAZ_VERSION/packages" > $chroot_dir$LOCALSTATE/undigest/$SLITAZ_VERSION/mirror' )
gokhlayeh@194 1895 echo -e "\${LOCAL_REPOSITORY##*/}-incoming\nmain" > \$chroot_dir\$LOCALSTATE/priority
gokhlayeh@186 1896 mount -t proc proc \$chroot_dir/proc
gokhlayeh@186 1897 mount -t sysfs sysfs \$chroot_dir/sys
gokhlayeh@186 1898 mount -t devpts devpts \$chroot_dir/dev/pts
gokhlayeh@186 1899 mount -t tmpfs shm \$chroot_dir/dev/shm
gokhlayeh@186 1900 for dir in \$list_dir; do
gokhlayeh@186 1901 mkdir -p \$dir \$chroot_dir\$dir
gokhlayeh@186 1902 mount \$dir \$chroot_dir\$dir
gokhlayeh@186 1903 done
gokhlayeh@186 1904 }
gokhlayeh@186 1905
gokhlayeh@186 1906 umount_chroot()
gokhlayeh@186 1907 {
gokhlayeh@186 1908 for dir in \$list_dir; do
gokhlayeh@186 1909 umount \$chroot_dir\$dir
gokhlayeh@186 1910 done
gokhlayeh@186 1911 umount \$chroot_dir/dev/shm
gokhlayeh@186 1912 umount \$chroot_dir/dev/pts
gokhlayeh@186 1913 umount \$chroot_dir/sys
gokhlayeh@186 1914 umount \$chroot_dir/proc
gokhlayeh@186 1915 }
gokhlayeh@186 1916 EOF
gokhlayeh@186 1917 }
gokhlayeh@186 1918
gokhlayeh@186 1919 ########################################################################
gokhlayeh@186 1920 ######################### END OF NEW FUNCTIONS #########################
gokhlayeh@186 1921 ########################################################################
gokhlayeh@186 1922
pascal@111 1923 # List packages providing a virtual package
pascal@111 1924 whoprovide()
pascal@111 1925 {
pascal@111 1926 local i;
gokhlayeh@195 1927 for i in $(fgrep -l PROVIDE $WOK/*/receipt); do
pascal@111 1928 . $i
pascal@111 1929 case " $PROVIDE " in
pascal@111 1930 *\ $1\ *|*\ $1:*) echo $(basename $(dirname $i));;
pascal@111 1931 esac
pascal@111 1932 done
pascal@111 1933 }
pascal@111 1934
gokhlayeh@186 1935 ########################################################################
gokhlayeh@186 1936 # TAZWOK COMMANDS
gokhlayeh@186 1937 ########################
pankso@7 1938
pankso@7 1939 case "$COMMAND" in
pankso@7 1940 stats)
paul@166 1941 # Tazwok general statistics from the wok config file.
pankso@7 1942 #
gokhlayeh@186 1943 get_tazwok_config
gokhlayeh@186 1944 echo -e "\n\033[1mTazwok configuration statistics\033[0m
pankso@7 1945 ================================================================================
pankso@7 1946 Wok directory : $WOK
pankso@7 1947 Packages repository : $PACKAGES_REPOSITORY
gokhlayeh@186 1948 Incoming repository : $INCOMING_REPOSITORY
pankso@7 1949 Sources repository : $SOURCES_REPOSITORY
gokhlayeh@186 1950 Log directory : $LOCAL_REPOSITORY/log
pankso@7 1951 Packages in the wok : `ls -1 $WOK | wc -l`
pankso@16 1952 Cooked packages : `ls -1 $PACKAGES_REPOSITORY/*.tazpkg 2>/dev/null | wc -l`
gokhlayeh@186 1953 Incoming packages : `ls -1 $INCOMING_REPOSITORY/*.tazpkg 2>/dev/null | wc -l`
gokhlayeh@186 1954 ================================================================================\n"
gokhlayeh@186 1955 ;;
pankso@133 1956 edit)
gokhlayeh@186 1957 get_tazwok_config
pankso@133 1958 check_for_package_on_cmdline
pankso@133 1959 check_for_receipt
gokhlayeh@186 1960 $EDITOR $WOK/$PACKAGE/receipt
gokhlayeh@186 1961 ;;
pascal@98 1962 build-depends)
gokhlayeh@186 1963 # List dependencies to rebuild wok, or only a package
gokhlayeh@186 1964 get_tazwok_config
gokhlayeh@186 1965 if [ "$PACKAGE" = toolchain-cooklist ]; then
gokhlayeh@186 1966 scan "$SLITAZ_TOOLCHAIN $SLITAZ_TOOLCHAIN_EXTRA" \
gokhlayeh@186 1967 --cooklist
gokhlayeh@186 1968 elif [ ! "$PACKAGE" ] || [ "$PACKAGE" = toolchain ]; then
gokhlayeh@186 1969 scan "$SLITAZ_TOOLCHAIN $SLITAZ_TOOLCHAIN_EXTRA" \
gokhlayeh@186 1970 --look_for=dep --with_dev --with_args
gokhlayeh@186 1971 else
gokhlayeh@186 1972 check_for_package_on_cmdline
gokhlayeh@186 1973 scan $PACKAGE --look_for=bdep --with_dev
gokhlayeh@186 1974 fi
gokhlayeh@186 1975 ;;
gokhlayeh@186 1976 gen-cooklist)
gokhlayeh@186 1977 get_options_list="list"
gokhlayeh@186 1978 get_tazwok_config
gokhlayeh@186 1979 if [ "$list" ]; then
gokhlayeh@186 1980 LIST="$list"
gokhlayeh@186 1981 check_for_list
gokhlayeh@186 1982 else
gokhlayeh@186 1983 LIST=$(for pkg in $@; do
gokhlayeh@186 1984 [ "$pkg" = "${pkg#--}" ] || continue
gokhlayeh@186 1985 echo -n "$pkg "
gokhlayeh@186 1986 done)
gokhlayeh@186 1987 if [ ! "$LIST" ]; then
gokhlayeh@186 1988 echo "Please give packages or a list file in argument." >&2
gokhlayeh@186 1989 exit
gokhlayeh@186 1990 fi
gokhlayeh@186 1991 fi
gokhlayeh@186 1992 scan $LIST --cooklist
gokhlayeh@186 1993 ;;
pascal@119 1994 check-depends)
gokhlayeh@186 1995 # Check package depends /!\
gokhlayeh@186 1996 get_tazwok_config
pascal@119 1997 echo ""
paul@121 1998 echo -e "\033[1mCheck every receipt for DEPENDS - doesn't scan ELF files\033[0m
pascal@119 1999 ================================================================================"
pascal@119 2000 TMPDIR=/tmp/tazwok$$
pascal@119 2001 DEFAULT_DEPENDS="glibc-base gcc-lib-base"
pascal@119 2002
pascal@119 2003 # Build ALL_DEPENDS variable
pascal@119 2004 scan_dep()
pascal@119 2005 {
pascal@119 2006 local i
pascal@119 2007 ALL_DEPENDS="$ALL_DEPENDS$PACKAGE "
pascal@128 2008 for i in $DEPENDS $SUGGESTED ; do
pascal@119 2009 case " $ALL_DEPENDS " in
pascal@119 2010 *\ $i\ *) continue;;
pascal@119 2011 esac
pascal@120 2012 [ -d $WOK/$i ] || {
pascal@120 2013 ALL_DEPENDS="$ALL_DEPENDS$i "
pascal@120 2014 continue
pascal@120 2015 }
pascal@128 2016 DEPENDS=""
pascal@128 2017 SUGGESTED=""
pascal@119 2018 . $WOK/$i/receipt
pascal@119 2019 scan_dep
pascal@119 2020 done
pascal@119 2021 }
pankso@133 2022
pascal@119 2023 # Check for ELF file
pascal@119 2024 is_elf()
pascal@119 2025 {
pascal@119 2026 [ "$(dd if=$1 bs=1 skip=1 count=3 2> /dev/null)" \
pascal@119 2027 = "ELF" ]
pascal@119 2028 }
pascal@119 2029
pascal@119 2030 # Print shared library dependencies
pascal@119 2031 ldd()
pascal@119 2032 {
pascal@130 2033 LD_TRACE_LOADED_OBJECTS=1 /lib/ld*.so $1 2> /dev/null
pascal@119 2034 }
pascal@119 2035
pascal@119 2036 mkdir $TMPDIR
pascal@119 2037 cd $TMPDIR
pascal@140 2038 for i in $LOCALSTATE/files.list.lzma \
pascal@140 2039 $LOCALSTATE/undigest/*/files.list.lzma ; do
pascal@119 2040 [ -f $i ] && lzma d $i -so >> files.list
pascal@119 2041 done
pascal@119 2042 for pkg in $PACKAGES_REPOSITORY/*.tazpkg ; do
pascal@119 2043 tazpkg extract $pkg > /dev/null 2>&1
pascal@119 2044 . */receipt
pascal@119 2045 ALL_DEPENDS="$DEFAULT_DEPENDS "
pascal@119 2046 scan_dep
pascal@119 2047 find */fs -type f | while read file ; do
pascal@119 2048 is_elf $file || continue
pascal@119 2049 case "$file" in
pascal@119 2050 *.o|*.ko|*.ko.gz) continue;;
pascal@119 2051 esac
pascal@119 2052 ldd $file | while read lib rem; do
pascal@119 2053 case "$lib" in
pascal@128 2054 statically|linux-gate.so*|ld-*.so|*/ld-*.so)
pascal@119 2055 continue;;
pascal@119 2056 esac
gokhlayeh@195 2057 for dep in $(fgrep $lib files.list | cut -d: -f1); do
pascal@119 2058 case " $ALL_DEPENDS " in
pascal@119 2059 *\ $dep\ *) continue 2;;
pascal@119 2060 esac
gokhlayeh@195 2061 for vdep in $(fgrep $dep $LOCALSTATE/packages.equiv | cut -d= -f1); do
pascal@128 2062 case " $ALL_DEPENDS " in
pascal@129 2063 *\ $vdep\ *) continue 3;;
pascal@128 2064 esac
pascal@128 2065 done
pascal@119 2066 done
pascal@128 2067 [ -n "$dep" ] || dep="UNKNOWN"
pascal@119 2068 echo "$(basename $pkg): ${file#*fs} depends on package $dep for the shared library $lib"
pascal@119 2069 done
pascal@119 2070 done
pascal@119 2071 rm -rf */
pascal@119 2072 done
pascal@119 2073 cd /tmp
pascal@119 2074 rm -rf $TMPDIR
gokhlayeh@186 2075 ;;
pascal@76 2076 check)
paul@154 2077 # Check wok consistency
gokhlayeh@186 2078 get_tazwok_config
pascal@76 2079 echo ""
pascal@76 2080 echo -e "\033[1mWok and packages checking\033[0m
pascal@76 2081 ================================================================================"
pascal@77 2082 cd $WOK
pascal@77 2083 for pkg in $(ls)
pascal@76 2084 do
pascal@76 2085 [ -f $pkg/receipt ] || continue
gokhlayeh@186 2086 RECEIPT= $pkg/receipt
gokhlayeh@186 2087 source_receipt
gokhlayeh@186 2088 [ "$PACKAGE" = "$pkg" ] || echo "Package $PACKAGE should be $pkg" >&2
gokhlayeh@186 2089 [ -n "$VERSION" ] || echo "Package $PACKAGE has no VERSION" >&2
gokhlayeh@186 2090 [ -n "$PACKED_SIZE" ] && echo "Package $PACKAGE has hardcoded PACKED_SIZE" >&2
gokhlayeh@186 2091 [ -n "$UNPACKED_SIZE" ] && echo "Package $PACKAGE has hardcoded UNPACKED_SIZE" >&2
gokhlayeh@186 2092 [ -n "$EXTRAVERSION" ] && echo "Package $PACKAGE has hardcoded EXTRAVERSION" >&2
pascal@97 2093 if [ -n "$WANTED" ]; then
pascal@97 2094 if [ ! -f $WANTED/receipt ]; then
gokhlayeh@186 2095 echo "Package $PACKAGE wants unknown $WANTED package" >&2
pascal@97 2096 else
pascal@97 2097 BASEVERSION=$(. $WANTED/receipt ; echo $VERSION)
pascal@103 2098 if [ "$VERSION" = "$WANTED" ]; then
pascal@103 2099 # BASEVERSION is computed in receipt
gokhlayeh@195 2100 fgrep -q '_pkg=' $pkg/receipt &&
pascal@103 2101 BASEVERSION=$VERSION
pascal@103 2102 fi
pascal@97 2103 if [ "$VERSION" != "$BASEVERSION" ]; then
gokhlayeh@186 2104 echo "Package $PACKAGE ($VERSION) wants $WANTED ($BASEVERSION)" >&2
pascal@97 2105 fi
pascal@97 2106 fi
pascal@97 2107 fi
pascal@97 2108
pascal@94 2109 if [ -n "$CATEGORY" ]; then
pascal@94 2110 case " $(echo $CATEGORIES) " in
pascal@94 2111 *\ $CATEGORY\ *);;
gokhlayeh@186 2112 *) echo "Package $PACKAGE has an invalid CATEGORY" >&2;;
pascal@94 2113 esac
pascal@94 2114 else
gokhlayeh@186 2115 echo"Package $PACKAGE has no CATEGORY" >&2
pascal@94 2116 fi
gokhlayeh@186 2117 [ -n "$SHORT_DESC" ] || echo "Package $PACKAGE has no SHORT_DESC" >&2
gokhlayeh@186 2118 [ -n "$MAINTAINER" ] || echo "Package $PACKAGE has no MAINTAINER" >&2
pascal@122 2119 case "$WGET_URL" in
pascal@178 2120 ftp*|http*) busybox wget -s $WGET_URL 2> /dev/null ||
gokhlayeh@186 2121 echo "Package $PACKAGE has a wrong WGET_URL" >&2;;
pascal@122 2122 '') ;;
gokhlayeh@186 2123 *) echo "Package $PACKAGE has an invalid WGET_URL" >&2;;
pascal@122 2124 esac
pascal@112 2125 case "$WEB_SITE" in
pascal@125 2126 ftp*|http*);;
gokhlayeh@186 2127 '') echo "Package $PACKAGE has no WEB_SITE" >&2;;
gokhlayeh@186 2128 *) echo "Package $PACKAGE has an invalid WEB_SITE" >&2;;
pascal@112 2129 esac
pascal@78 2130 case "$MAINTAINER" in
gokhlayeh@186 2131 *\<*|*\>*) echo "Package $PACKAGE has an invalid MAINTAINER: $MAINTAINER" >&2;;
pascal@78 2132 esac
pascal@78 2133 case "$MAINTAINER" in
pascal@78 2134 *@*);;
gokhlayeh@186 2135 *) echo "Package $PACKAGE MAINTAINER is not an email address" >&2;;
pascal@78 2136 esac
gokhlayeh@186 2137 MSG="Missing dependencies for $PACKAGE $VERSION$EXTRAVERSION :\n" >&2
pascal@76 2138 for i in $DEPENDS; do
pascal@76 2139 [ -d $i ] && continue
pascal@111 2140 [ -n "$(whoprovide $i)" ] && continue
pascal@76 2141 echo -e "$MSG $i"
pascal@76 2142 MSG=""
pascal@76 2143 done
gokhlayeh@186 2144 MSG="Missing build dependencies for $PACKAGE $VERSION$EXTRAVERSION :\n" >&2
pascal@92 2145 for i in $BUILD_DEPENDS; do
pascal@92 2146 [ -d $i ] && continue
pascal@111 2147 [ -n "$(whoprovide $i)" ] && continue
pascal@92 2148 echo -e "$MSG $i"
pascal@92 2149 MSG=""
pascal@92 2150 done
pascal@76 2151 MSG="Dependencies loop between $PACKAGE and :\n"
pascal@76 2152 ALL_DEPS=""
pascal@76 2153 check_for_deps_loop $PACKAGE $DEPENDS
pascal@140 2154 [ -d $WOK/$pkg/taz ] && for i in $BUILD_DEPENDS; do
pascal@141 2155 [ $WOK/$pkg/taz -nt $INSTALLED/$i/files.list ] && continue
paul@154 2156 echo "$pkg should be rebuilt after $i installation"
pascal@140 2157 done
pascal@76 2158 done
gokhlayeh@186 2159 ;;
pankso@7 2160 list)
paul@166 2161 # List packages in wok directory. User can specify a category.
pankso@7 2162 #
gokhlayeh@186 2163 get_tazwok_config
pankso@7 2164 if [ "$2" = "category" ]; then
pankso@7 2165 echo -e "\033[1m\nPackages categories :\033[0m $CATEGORIES\n"
pankso@7 2166 exit 0
pankso@7 2167 fi
pankso@7 2168 # Check for an asked category.
pankso@7 2169 if [ -n "$2" ]; then
pankso@7 2170 ASKED_CATEGORY=$2
pankso@7 2171 echo ""
pankso@7 2172 echo -e "\033[1mPackages in category :\033[0m $ASKED_CATEGORY"
pankso@7 2173 echo "================================================================================"
pankso@7 2174 for pkg in $WOK/*
pankso@7 2175 do
erjo@168 2176 [ ! -f $pkg/receipt ] && continue
pankso@7 2177 . $pkg/receipt
pankso@7 2178 if [ "$CATEGORY" == "$ASKED_CATEGORY" ]; then
pankso@7 2179 echo -n "$PACKAGE"
pankso@28 2180 echo -e "\033[28G $VERSION"
pankso@7 2181 packages=$(($packages+1))
pankso@7 2182 fi
pankso@7 2183 done
pankso@7 2184 echo "================================================================================"
gokhlayeh@186 2185 echo -e "$PACKAGEs packages in category $ASKED_CATEGORY.\n"
pankso@7 2186 else
pankso@7 2187 # By default list all packages and version.
pankso@7 2188 echo ""
pankso@7 2189 echo -e "\033[1mList of packages in the wok\033[0m"
pankso@7 2190 echo "================================================================================"
pankso@7 2191 for pkg in $WOK/*
pankso@7 2192 do
erjo@168 2193 [ ! -f $pkg/receipt ] && continue
pankso@7 2194 . $pkg/receipt
pankso@7 2195 echo -n "$PACKAGE"
pankso@28 2196 echo -en "\033[28G $VERSION"
pankso@7 2197 echo -e "\033[42G $CATEGORY"
pankso@7 2198 packages=$(($packages+1))
pankso@7 2199 done
pankso@7 2200 echo "================================================================================"
gokhlayeh@186 2201 echo -e "$PACKAGEs packages available in the wok.\n"
pankso@7 2202 fi
pankso@7 2203 ;;
pankso@7 2204 info)
MikeDSmith25@82 2205 # Information about a package.
pankso@7 2206 #
gokhlayeh@186 2207 get_tazwok_config
pankso@7 2208 check_for_package_on_cmdline
pankso@7 2209 check_for_receipt
pankso@7 2210 . $WOK/$PACKAGE/receipt
pankso@7 2211 echo ""
MikeDSmith25@82 2212 echo -e "\033[1mTazwok package information\033[0m
pankso@7 2213 ================================================================================
pankso@7 2214 Package : $PACKAGE
pankso@7 2215 Version : $VERSION
pankso@7 2216 Category : $CATEGORY
pankso@7 2217 Short desc : $SHORT_DESC
pankso@7 2218 Maintainer : $MAINTAINER"
pankso@7 2219 if [ ! "$WEB_SITE" = "" ]; then
pankso@7 2220 echo "Web site : $WEB_SITE"
pankso@7 2221 fi
pankso@7 2222 if [ ! "$DEPENDS" = "" ]; then
pankso@7 2223 echo "Depends : $DEPENDS"
pankso@7 2224 fi
pankso@7 2225 if [ ! "$WANTED" = "" ]; then
pankso@7 2226 echo "Wanted src : $WANTED"
pankso@7 2227 fi
pankso@7 2228 echo "================================================================================"
pankso@7 2229 echo ""
gokhlayeh@186 2230 ;;
pankso@7 2231 check-log)
pankso@7 2232 # We just cat the file log to view process info.
pankso@7 2233 #
gokhlayeh@186 2234 get_tazwok_config
pankso@7 2235 if [ ! -f "$LOG" ]; then
gokhlayeh@186 2236 echo -e "\nNo process log found. The package is probably not cooked.\n" >&2
gokhlayeh@186 2237 exit 1
pankso@7 2238 else
pankso@7 2239 echo ""
pankso@7 2240 echo -e "\033[1mPackage process log for :\033[0m $PACKAGE"
pankso@7 2241 echo "================================================================================"
pankso@7 2242 cat $LOG
pankso@7 2243 echo "================================================================================"
pankso@7 2244 echo ""
pankso@7 2245 fi
gokhlayeh@186 2246 ;;
pankso@7 2247 search)
pankso@7 2248 # Search for a package by pattern or name.
pankso@7 2249 #
gokhlayeh@186 2250 get_tazwok_config
pankso@7 2251 if [ -z "$2" ]; then
gokhlayeh@186 2252 echo -e "\nPlease specify a pattern or a package name to search." >&2
gokhlayeh@186 2253 echo -e "Example : 'tazwok search gcc'.\n" >&2
gokhlayeh@186 2254 exit 1
pankso@7 2255 fi
pankso@7 2256 echo ""
pankso@7 2257 echo -e "\033[1mSearch result for :\033[0m $2"
pankso@7 2258 echo "================================================================================"
gokhlayeh@195 2259 list=`ls -1 $WOK | fgrep $2`
pankso@7 2260 for pkg in $list
pankso@7 2261 do
pankso@7 2262 . $WOK/$pkg/receipt
pankso@7 2263 echo -n "$PACKAGE "
pankso@7 2264 echo -en "\033[24G $VERSION"
pankso@7 2265 echo -e "\033[42G $CATEGORY"
gokhlayeh@186 2266 packages=$(($PACKAGEs+1))
pankso@7 2267 done
pankso@7 2268 echo "================================================================================"
gokhlayeh@186 2269 echo "$PACKAGEs packages found for : $2"
pankso@7 2270 echo ""
gokhlayeh@186 2271 ;;
pankso@7 2272 compile)
pankso@7 2273 # Configure and make a package with the receipt.
pankso@7 2274 #
gokhlayeh@186 2275 get_tazwok_config
gokhlayeh@186 2276 source_lib report
gokhlayeh@186 2277 report start
pankso@7 2278 compile_package
gokhlayeh@186 2279 ;;
pankso@7 2280 genpkg)
paul@121 2281 # Generate a package.
pankso@7 2282 #
gokhlayeh@186 2283 get_tazwok_config
gokhlayeh@186 2284 source_lib report
gokhlayeh@186 2285 report start
pankso@7 2286 gen_package
gokhlayeh@186 2287 ;;
pankso@7 2288 cook)
pankso@7 2289 # Compile and generate a package. Just execute tazwok with
pankso@7 2290 # the good commands.
pankso@7 2291 #
pankso@7 2292 check_root
gokhlayeh@186 2293 get_tazwok_config
gokhlayeh@186 2294 source_lib report
gokhlayeh@186 2295 report start
gokhlayeh@186 2296 cook
gokhlayeh@186 2297 ;;
gokhlayeh@186 2298 sort-cooklist)
gokhlayeh@186 2299 if [ ! "$LIST" ]; then
gokhlayeh@186 2300 echo "Usage : tazwok sort-cooklist cooklist" >&2\
gokhlayeh@186 2301 exit 1
gokhlayeh@186 2302 fi
gokhlayeh@186 2303 get_tazwok_config
gokhlayeh@186 2304 source_lib report
gokhlayeh@186 2305 report start
gokhlayeh@186 2306 cooklist=$LIST
gokhlayeh@186 2307 sort_cooklist
gokhlayeh@186 2308 cp -af $tmp/cooklist $cooklist
gokhlayeh@186 2309 ;;
pankso@7 2310 cook-list)
pankso@7 2311 # Cook all packages listed in a file. The path to the cooklist must
pankso@7 2312 # be specified on the cmdline.
gokhlayeh@186 2313 # /!\
gokhlayeh@186 2314 check_root
gokhlayeh@186 2315 get_tazwok_config
gokhlayeh@186 2316 source_lib report
gokhlayeh@186 2317 report start
gokhlayeh@186 2318 cooklist=${LIST:-$PACKAGES_REPOSITORY/cooklist}
gokhlayeh@186 2319 if [ "$LIST" ]; then
gokhlayeh@186 2320 sort_cooklist
gokhlayeh@186 2321 else
gokhlayeh@186 2322 cp $cooklist $tmp/cooklist
gokhlayeh@186 2323 fi
gokhlayeh@186 2324 cook_list
gokhlayeh@186 2325 ;;
gokhlayeh@186 2326 clean)
gokhlayeh@186 2327 # Clean up a package work directory + thoses which want it.
pankso@7 2328 #
gokhlayeh@186 2329 get_tazwok_config
pankso@7 2330 check_for_package_on_cmdline
pankso@7 2331 check_for_receipt
gokhlayeh@186 2332 source_lib report
gokhlayeh@186 2333 report start
pankso@7 2334 . $RECEIPT
gokhlayeh@186 2335 clean
gokhlayeh@186 2336 ;;
pankso@7 2337 gen-clean-wok)
paul@121 2338 # Generate a clean wok from the current wok by copying all receipts
pankso@7 2339 # and stuff directory.
pankso@7 2340 #
gokhlayeh@186 2341 get_tazwok_config
gokhlayeh@186 2342 source_lib report
gokhlayeh@186 2343 report start
gokhlayeh@186 2344 if [ -z "$ARG" ]; then
gokhlayeh@186 2345 echo -e "\nPlease specify the destination for the new clean wok.\n" >&2
gokhlayeh@186 2346 exit 1
pankso@7 2347 else
gokhlayeh@186 2348 dest=$ARG
pankso@7 2349 mkdir -p $dest
pankso@7 2350 fi
gokhlayeh@186 2351 report step "Creating clean wok in : $dest"
pankso@7 2352 for pkg in `ls -1 $WOK`
pankso@7 2353 do
pankso@7 2354 mkdir -p $dest/$pkg
pankso@7 2355 cp -a $WOK/$pkg/receipt $dest/$pkg
gokhlayeh@186 2356 [ -f $WOK/$pkg/description.txt ] && \
gokhlayeh@186 2357 cp -a $WOK/$pkg/description.txt $dest/$pkg
pankso@7 2358 if [ -d "$WOK/$pkg/stuff" ]; then
pankso@7 2359 cp -a $WOK/$pkg/stuff $dest/$pkg
pankso@7 2360 fi
pankso@7 2361 done
gokhlayeh@186 2362 [ -d $WOK/.hg ] && cp -a $WOK/.hg $dest
gokhlayeh@186 2363 report end-step
pankso@7 2364 echo "Packages cleaned : `ls -1 $dest | wc -l`"
pankso@7 2365 echo ""
gokhlayeh@186 2366 ;;
pankso@7 2367 clean-wok)
pankso@7 2368 # Clean all packages in the work directory
pankso@7 2369 #
gokhlayeh@186 2370 get_tazwok_config
gokhlayeh@186 2371 source_lib report
gokhlayeh@186 2372 report start
gokhlayeh@186 2373 report step "Cleaning wok"
gokhlayeh@186 2374 report open-bloc
gokhlayeh@186 2375 for PACKAGE in `ls -1 $WOK`
pankso@7 2376 do
gokhlayeh@186 2377 set_common_path
gokhlayeh@186 2378 source_receipt
gokhlayeh@186 2379 clean
pankso@7 2380 done
gokhlayeh@186 2381 report close-bloc
pankso@7 2382 echo "`ls -1 $WOK | wc -l` packages cleaned."
gokhlayeh@186 2383 ;;
pankso@7 2384 gen-list)
gokhlayeh@186 2385 check_root
gokhlayeh@186 2386 get_tazwok_config
gokhlayeh@186 2387 source_lib report
gokhlayeh@186 2388 report start
gokhlayeh@186 2389 dbtype=packages
gokhlayeh@186 2390 mode=gen
gokhlayeh@186 2391 for pkg_repository in $PACKAGES_REPOSITORY $INCOMING_REPOSITORY; do
gokhlayeh@186 2392 files_list="$pkg_repository/files.list.lzma \
gokhlayeh@186 2393 $pkg_repository/packages.list \
gokhlayeh@186 2394 $pkg_repository/packages.txt \
gokhlayeh@186 2395 $pkg_repository/packages.desc \
gokhlayeh@186 2396 $pkg_repository/packages.equiv \
gokhlayeh@186 2397 $pkg_repository/packages.md5"
gokhlayeh@186 2398 gen_db
gokhlayeh@186 2399 echo "$pkgs packages in the repository."
gokhlayeh@186 2400 echo ""
gokhlayeh@186 2401 done
gokhlayeh@186 2402 ;;
gokhlayeh@186 2403 check-list)
gokhlayeh@186 2404 # The directory to move into by default is the repository,
gokhlayeh@186 2405 # if $2 is not empty cd into $2.
pankso@7 2406 #
gokhlayeh@186 2407 get_tazwok_config
gokhlayeh@186 2408 if [ -z "$2" ]; then
pankso@7 2409 PACKAGES_REPOSITORY=$PACKAGES_REPOSITORY
pankso@7 2410 else
pankso@7 2411 if [ -d "$2" ]; then
pankso@7 2412 PACKAGES_REPOSITORY=$2
pankso@7 2413 else
gokhlayeh@186 2414 echo -e "\nUnable to find directory : $2\n" >&2
gokhlayeh@186 2415 exit 1
pankso@7 2416 fi
pankso@7 2417 fi
gokhlayeh@186 2418
gokhlayeh@186 2419 # Use report shared library to control output.
gokhlayeh@186 2420 tmp=/tmp/tazwok-$$
gokhlayeh@186 2421 source_lib report
gokhlayeh@186 2422 dbtype=packages
gokhlayeh@186 2423 mode=update
pankso@7 2424 cd $PACKAGES_REPOSITORY
gokhlayeh@186 2425 for pkg in $(echo *.tazpkg); do
gokhlayeh@186 2426 package_md5=$(md5sum $pkg)
gokhlayeh@195 2427 [ "$package_md5" = "$(fgrep " $pkg" packages.md5)" ] && continue
gokhlayeh@186 2428 erase_package_info
gokhlayeh@186 2429 get_packages_info
gokhlayeh@186 2430 done
pankso@7 2431 echo "$pkgs packages in the repository."
pankso@7 2432 echo ""
gokhlayeh@186 2433 ;;
pankso@7 2434 new-tree)
MikeDSmith25@82 2435 # Just create a few directories and generate an empty receipt to prepare
pankso@7 2436 # the creation of a new package.
pankso@7 2437 #
gokhlayeh@186 2438 get_tazwok_config
pankso@7 2439 check_for_package_on_cmdline
pankso@7 2440 if [ -d $WOK/$PACKAGE ]; then
gokhlayeh@186 2441 echo -e "\n$PACKAGE package tree already exists.\n" >&2
gokhlayeh@186 2442 exit 1
pankso@7 2443 fi
pankso@7 2444 echo "Creating : $WOK/$PACKAGE"
pankso@7 2445 mkdir $WOK/$PACKAGE
pankso@7 2446 cd $WOK/$PACKAGE
pankso@7 2447 echo -n "Preparing the receipt..."
pankso@7 2448 #
pankso@7 2449 # Default receipt begin.
pankso@7 2450 #
pankso@7 2451 echo "# SliTaz package receipt." > receipt
pankso@7 2452 echo "" >> receipt
pankso@7 2453 echo "PACKAGE=\"$PACKAGE\"" >> receipt
pankso@7 2454 # Finish the empty receipt.
pankso@7 2455 cat >> receipt << "EOF"
pankso@7 2456 VERSION=""
pankso@7 2457 CATEGORY=""
pankso@7 2458 SHORT_DESC=""
pankso@7 2459 MAINTAINER=""
pankso@7 2460 DEPENDS=""
pankso@7 2461 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@7 2462 WEB_SITE=""
pankso@7 2463 WGET_URL=""
pankso@7 2464
pankso@7 2465 # Rules to configure and make the package.
pankso@7 2466 compile_rules()
pankso@7 2467 {
pankso@7 2468 cd $src
pankso@113 2469 ./configure \
pankso@113 2470 --prefix=/usr \
pankso@113 2471 --infodir=/usr/share/info \
pankso@113 2472 --mandir=/usr/share/man \
pankso@113 2473 $CONFIGURE_ARGS &&
pascal@169 2474 make -j 4 && make DESTDIR=$PWD/_pkg install
pankso@7 2475 }
pankso@7 2476
pankso@7 2477 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@7 2478 genpkg_rules()
pankso@7 2479 {
pankso@7 2480 mkdir -p $fs/usr
pankso@7 2481 cp -a $_pkg/usr/bin $fs/usr
pankso@7 2482 }
pankso@7 2483
pankso@7 2484 EOF
pankso@7 2485 #
pankso@7 2486 # Default receipt end.
pankso@7 2487 #
pankso@7 2488 status
pankso@7 2489 # Interactive mode, asking and seding.
pankso@7 2490 if [ "$3" = "--interactive" ]; then
paul@154 2491 echo "Entering into interactive mode..."
pankso@7 2492 echo "================================================================================"
pankso@7 2493 echo "Package : $PACKAGE"
pankso@7 2494 # Version.
pankso@7 2495 echo -n "Version : " ; read anser
pankso@7 2496 sed -i s/'VERSION=\"\"'/"VERSION=\"$anser\""/ receipt
pankso@7 2497 # Category.
pankso@7 2498 echo -n "Category : " ; read anser
pankso@7 2499 sed -i s/'CATEGORY=\"\"'/"CATEGORY=\"$anser\""/ receipt
pankso@7 2500 # Short description.
pankso@7 2501 echo -n "Short desc : " ; read anser
pankso@7 2502 sed -i s/'SHORT_DESC=\"\"'/"SHORT_DESC=\"$anser\""/ receipt
pankso@7 2503 # Maintainer.
pankso@7 2504 echo -n "Maintainer : " ; read anser
pankso@7 2505 sed -i s/'MAINTAINER=\"\"'/"MAINTAINER=\"$anser\""/ receipt
pankso@7 2506 # Web site.
pankso@7 2507 echo -n "Web site : " ; read anser
pankso@133 2508 sed -i s#'WEB_SITE=\"\"'#"WEB_SITE=\"$anser\""# receipt
pankso@7 2509 echo ""
pankso@7 2510 # Wget URL.
pankso@7 2511 echo "Wget URL to download source tarball."
pankso@7 2512 echo "Example : \$GNU_MIRROR/\$PACKAGE/\$TARBALL"
pankso@7 2513 echo -n "Wget url : " ; read anser
pankso@7 2514 sed -i s#'WGET_URL=\"\"'#"WGET_URL=\"$anser\""# receipt
pankso@7 2515 # Ask for a stuff dir.
pankso@7 2516 echo -n "Do you need a stuff directory ? (y/N) : " ; read anser
pankso@7 2517 if [ "$anser" = "y" ]; then
pankso@7 2518 echo -n "Creating the stuff directory..."
pankso@7 2519 mkdir stuff && status
pankso@7 2520 fi
pankso@7 2521 # Ask for a description file.
pankso@7 2522 echo -n "Are you going to write a description ? (y/N) : " ; read anser
pankso@7 2523 if [ "$anser" = "y" ]; then
pankso@7 2524 echo -n "Creating the description.txt file..."
pankso@7 2525 echo "" > description.txt && status
pankso@7 2526 fi
pankso@7 2527 echo "================================================================================"
pankso@7 2528 echo ""
pankso@7 2529 fi
gokhlayeh@186 2530 ;;
pankso@7 2531 remove)
pankso@7 2532 # Remove a package from the wok.
pankso@7 2533 #
gokhlayeh@186 2534 get_tazwok_config
pankso@7 2535 check_for_package_on_cmdline
pankso@7 2536 echo ""
pascal@83 2537 echo -n "Please confirm deletion (y/N) : "; read anser
pascal@83 2538 if [ "$anser" = "y" ]; then
pascal@83 2539 echo -n "Removing $PACKAGE..."
pascal@83 2540 rm -rf $WOK/$PACKAGE && status
pascal@83 2541 echo ""
pascal@83 2542 fi
gokhlayeh@186 2543 ;;
pankso@106 2544 hgup)
paul@166 2545 # Pull and update a Hg wok.
gokhlayeh@186 2546 get_tazwok_config
gokhlayeh@195 2547 if ls -l $WOK/.hg/hgrc | fgrep -q "root"; then
pankso@106 2548 check_root
pankso@106 2549 fi
pankso@106 2550 cd $WOK
gokhlayeh@186 2551 hg pull && hg update
gokhlayeh@186 2552 ;;
pankso@108 2553 maintainers)
gokhlayeh@186 2554 get_tazwok_config
pankso@108 2555 echo ""
pankso@108 2556 echo "List of maintainers for: $WOK"
pankso@108 2557 echo "================================================================================"
pankso@108 2558 touch /tmp/slitaz-maintainers
pankso@108 2559 for pkg in $WOK/*
pankso@108 2560 do
pankso@108 2561 . $pkg/receipt
gokhlayeh@195 2562 if ! fgrep -q "$MAINTAINER" /tmp/slitaz-maintainers; then
pankso@108 2563 echo "$MAINTAINER" >> /tmp/slitaz-maintainers
pankso@108 2564 echo "$MAINTAINER"
pankso@108 2565 fi
pankso@108 2566 done
pankso@108 2567 echo "================================================================================"
pankso@108 2568 echo "Maintainers: `cat /tmp/slitaz-maintainers | wc -l`"
pankso@108 2569 echo ""
pankso@108 2570 # Remove tmp files
gokhlayeh@186 2571 rm -f /tmp/slitaz-maintainers
gokhlayeh@186 2572 ;;
pankso@107 2573 maintained-by)
paul@166 2574 # Search for packages maintained by a contributor.
gokhlayeh@186 2575 get_tazwok_config
pankso@107 2576 if [ ! -n "$2" ]; then
gokhlayeh@186 2577 echo "Specify a name or email of a maintainer." >&2
gokhlayeh@186 2578 exit 1
pankso@107 2579 fi
pankso@107 2580 echo "Maintainer packages"
pankso@107 2581 echo "================================================================================"
pankso@107 2582 for pkg in $WOK/*
pankso@107 2583 do
pankso@107 2584 . $pkg/receipt
gokhlayeh@195 2585 if echo "$MAINTAINER" | fgrep -q "$2"; then
pankso@107 2586 echo "$PACKAGE"
gokhlayeh@186 2587 packages=$(($PACKAGEs+1))
pankso@107 2588 fi
pankso@107 2589 done
pankso@107 2590 echo "================================================================================"
gokhlayeh@186 2591 echo "Packages maintained by $2: $PACKAGEs"
gokhlayeh@186 2592 echo ""
gokhlayeh@186 2593 ;;
erjo@159 2594 check-src)
erjo@159 2595 # Verify if upstream package is still available
erjo@159 2596 #
gokhlayeh@186 2597 get_tazwok_config
erjo@159 2598 check_for_package_on_cmdline
erjo@159 2599 check_for_receipt
gokhlayeh@186 2600 source_receipt
erjo@159 2601 check_src()
erjo@159 2602 {
erjo@159 2603 for url in $@; do
pascal@178 2604 busybox wget -s $url 2>/dev/null && break
erjo@159 2605 done
erjo@159 2606 }
gokhlayeh@186 2607 if [ "$WGET_URL" ];then
erjo@159 2608 echo -n "$PACKAGE : "
erjo@159 2609 check_src $WGET_URL
erjo@159 2610 status
erjo@159 2611 else
erjo@159 2612 echo "No tarball to check for $PACKAGE"
erjo@159 2613 fi
gokhlayeh@186 2614 ;;
gokhlayeh@186 2615 get-src)
gokhlayeh@186 2616 check_root
gokhlayeh@186 2617 get_options_list="target"
gokhlayeh@186 2618 get_tazwok_config
gokhlayeh@186 2619 check_for_package_on_cmdline
gokhlayeh@186 2620 check_for_receipt
gokhlayeh@186 2621 source_receipt
gokhlayeh@186 2622 if [ "$WGET_URL" ];then
gokhlayeh@186 2623 source_lib report
gokhlayeh@186 2624 report start
gokhlayeh@186 2625 check_for_tarball
gokhlayeh@186 2626 else
gokhlayeh@186 2627 echo "No tarball to download for $PACKAGE"
gokhlayeh@186 2628 fi
gokhlayeh@186 2629 ;;
gokhlayeh@198 2630 rec-commit)
gokhlayeh@186 2631 check_root
gokhlayeh@186 2632 get_tazwok_config
gokhlayeh@186 2633 source_lib report
gokhlayeh@186 2634 report start
gokhlayeh@186 2635 check_for_commit
gokhlayeh@186 2636 gen_cook_list
gokhlayeh@186 2637 ;;
gokhlayeh@186 2638 cook-commit)
gokhlayeh@186 2639 check_root
gokhlayeh@186 2640 get_tazwok_config
gokhlayeh@186 2641 source_lib report
gokhlayeh@186 2642 report start
gokhlayeh@186 2643 check_for_commit
gokhlayeh@186 2644 # 2) update cook-database (actually complete regeneration)
gokhlayeh@186 2645 dbtype=wok
gokhlayeh@186 2646 mode=gen
gokhlayeh@186 2647 files_list="$dep_db $wan_db $PACKAGE_REPOSITORY/cookorder.txt"
gokhlayeh@186 2648 gen_db
gokhlayeh@186 2649 # 3) check cooklist
gokhlayeh@186 2650 # 3.1) rename pkgs with wanted variable to wanted pkg
gokhlayeh@186 2651 gen_cook_list
gokhlayeh@186 2652 cook_list
gokhlayeh@186 2653 ;;
gokhlayeh@186 2654 cook-all)
gokhlayeh@186 2655 check_root
gokhlayeh@186 2656 get_tazwok_config
gokhlayeh@186 2657 source_lib report
gokhlayeh@186 2658 report start
gokhlayeh@186 2659 # 2) update cook-database (actually complete regeneration)
gokhlayeh@186 2660 dbtype=wok
gokhlayeh@186 2661 mode=gen
gokhlayeh@186 2662 files_list="$dep_db $wan_db $PACKAGE_REPOSITORY/cookorder.txt"
gokhlayeh@186 2663 gen_db
gokhlayeh@186 2664 # Add all packages, without toolchain, in cooklist.
gokhlayeh@186 2665 # Recook toolchain need to be coded.
gokhlayeh@186 2666 echo -n "" > $PACKAGES_REPOSITORY/cooklist
gokhlayeh@186 2667 for pkg in $(cd $WOK && echo *); do
gokhlayeh@186 2668 echo $pkg >> $PACKAGES_REPOSITORY/cooklist
gokhlayeh@186 2669 done
gokhlayeh@186 2670 for pkg in $(scan gcc --look_for=all --with_wanted --with_args); do
gokhlayeh@186 2671 sed "/^$pkg$/d" -i $PACKAGES_REPOSITORY/cooklist
gokhlayeh@186 2672 done
gokhlayeh@186 2673 sort_cooklist
gokhlayeh@186 2674 cook_list
gokhlayeh@186 2675 ;;
gokhlayeh@186 2676 gen-wok-db)
gokhlayeh@186 2677 check_root
gokhlayeh@186 2678 get_tazwok_config
gokhlayeh@186 2679 source_lib report
gokhlayeh@186 2680 report start
gokhlayeh@186 2681 dbtype=wok
gokhlayeh@186 2682 mode=gen
gokhlayeh@186 2683 files_list="$dep_db $wan_db $PACKAGE_REPOSITORY/cookorder.txt"
gokhlayeh@186 2684 gen_db
gokhlayeh@186 2685 ;;
gokhlayeh@186 2686 report)
gokhlayeh@186 2687 check_root
gokhlayeh@186 2688 get_tazwok_config
gokhlayeh@186 2689 cd $PACKAGES_REPOSITORY
gokhlayeh@186 2690 for i in commit genpkglist cooklist incoming broken blocked; do
gokhlayeh@186 2691 if [ -s $i ]; then
gokhlayeh@186 2692 echo -e "\n********************* $i *********************\n$(cat $i)\n*********************"
gokhlayeh@186 2693 fi
gokhlayeh@186 2694 done
gokhlayeh@186 2695 ;;
gokhlayeh@186 2696 check-incoming)
gokhlayeh@186 2697 check_root
gokhlayeh@186 2698 get_tazwok_config
gokhlayeh@186 2699 source_lib report
gokhlayeh@186 2700 report start
gokhlayeh@186 2701 check_for_incoming
gokhlayeh@186 2702 ;;
gokhlayeh@190 2703 configure-chroot)
gokhlayeh@190 2704 check_root
gokhlayeh@190 2705 get_tazwok_config
gokhlayeh@190 2706 if [ -f /usr/bin/tazchroot ]; then
gokhlayeh@190 2707 cd $LOCAL_REPOSITORY
gokhlayeh@190 2708 configure_tazchroot
gokhlayeh@190 2709 else
gokhlayeh@190 2710 echo "The packages tazchroot need to be installed" >&2
gokhlayeh@190 2711 exit 1
gokhlayeh@190 2712 fi
gokhlayeh@190 2713 ;;
gokhlayeh@186 2714 chroot)
gokhlayeh@186 2715 check_root
gokhlayeh@186 2716 get_tazwok_config
gokhlayeh@186 2717 # Merge this and the other chroot function ?.
gokhlayeh@186 2718 if [ -f /usr/bin/tazchroot ]; then
gokhlayeh@186 2719 cd $LOCAL_REPOSITORY
gokhlayeh@186 2720 [ ! -f tazchroot.conf ] && configure_tazchroot
gokhlayeh@186 2721 tazchroot
gokhlayeh@186 2722 else
gokhlayeh@186 2723 echo "The packages tazchroot need to be installed" >&2
gokhlayeh@186 2724 exit 1
gokhlayeh@186 2725 fi
gokhlayeh@186 2726 ;;
gokhlayeh@186 2727 cook-toolchain)
gokhlayeh@186 2728 check_root
gokhlayeh@186 2729 get_tazwok_config
gokhlayeh@186 2730 echo -n "" > $PACKAGES_REPOSITORY/broken
gokhlayeh@186 2731 if [ -f /usr/bin/tazchroot ]; then
gokhlayeh@186 2732 cd $LOCAL_REPOSITORY
gokhlayeh@186 2733 [ ! -f tazchroot.conf ] && configure_tazchroot
gokhlayeh@186 2734 tazchroot cook-toolchain
gokhlayeh@186 2735 # Buggy : chroot can be elsewhere.
gokhlayeh@186 2736 rm -r $LOCAL_REPOSITORY/chroot
gokhlayeh@186 2737 # /!\ to be writed :
gokhlayeh@186 2738 # next rm chroot and plan cook-all by pushing all packages
gokhlayeh@186 2739 # in cooklist.
gokhlayeh@186 2740 else
gokhlayeh@186 2741 echo "The packages tazchroot need to be installed" >&2
gokhlayeh@186 2742 exit 1
gokhlayeh@186 2743 fi
gokhlayeh@186 2744 ;;
pankso@7 2745 usage|*)
MikeDSmith25@82 2746 # Print usage also for all unknown commands.
pankso@7 2747 #
pankso@7 2748 usage
gokhlayeh@186 2749 ;;
pankso@7 2750 esac
pankso@7 2751
gokhlayeh@186 2752 [ -d "$tmp" ] && rm -r $tmp
gokhlayeh@186 2753 report stop 2>/dev/null || exit 0