tazwok annotate tazwok @ rev 107

Add command 'maintained-by' to list pkgs by maintainer
author Christophe Lincoln <pankso@slitaz.org>
date Sat Jan 17 23:55:08 2009 +0100 (2009-01-17)
parents b314f3de7edf
children 5511fa6e344d
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 #
pascal@100 11 VERSION=2.1
pankso@7 12
pankso@7 13 ####################
pankso@7 14 # Tazwok variables #
pankso@7 15 ####################
pankso@7 16
pankso@7 17 # Packages categories.
pankso@25 18 CATEGORIES="
pankso@25 19 base-system
pascal@94 20 x-window
pankso@25 21 utilities
pankso@25 22 network
pankso@25 23 graphics
pankso@25 24 multimedia
pankso@25 25 office
pankso@25 26 development
pankso@25 27 system-tools
pankso@25 28 security
pankso@26 29 games
pankso@26 30 misc
pankso@43 31 meta
pankso@43 32 non-free"
pankso@7 33
MikeDSmith25@82 34 # Use words rather than numbers in the code.
pankso@7 35 COMMAND=$1
pankso@7 36 PACKAGE=$2
pankso@7 37 LIST=$2
pankso@7 38
MikeDSmith25@82 39 # Include config file or exit if no file found.
erjo@38 40 if [ -f "./tazwok.conf" ]; then
erjo@38 41 . ./tazwok.conf
erjo@38 42 elif [ -f "/etc/tazwok.conf" ]; then
pankso@7 43 . /etc/tazwok.conf
pankso@7 44 else
pankso@7 45 echo -e "\nUnable to find the configuration file : /etc/tazwok.conf"
pankso@7 46 echo -e "Please read the Tazwok documentation.\n"
pankso@7 47 exit 0
pankso@7 48 fi
pankso@7 49
MikeDSmith25@82 50 # Create Taz wok needed directories if user is root.
pankso@7 51 if test $(id -u) = 0 ; then
pankso@7 52 # Check for the wok directory.
pankso@7 53 if [ ! -d "$WOK" ]; then
pankso@7 54 echo "Creating the wok directory..."
pankso@7 55 mkdir -p $WOK
pankso@7 56 chmod 777 $WOK
pankso@7 57 fi
pankso@7 58 # Check for the packages repository.
pankso@7 59 if [ ! -d "$PACKAGES_REPOSITORY" ]; then
pankso@7 60 echo "Creating the packages repository..."
pankso@7 61 mkdir -p $PACKAGES_REPOSITORY
pankso@7 62 fi
pankso@7 63 # Check for the sources repository.
pankso@7 64 if [ ! -d "$SOURCES_REPOSITORY" ]; then
pankso@7 65 echo "Creating the sources repository..."
pankso@17 66 mkdir -p $SOURCES_REPOSITORY
pankso@7 67 fi
pankso@7 68 fi
pankso@7 69
pankso@7 70 # The path to the most important file used by Tazwok.
pankso@7 71 # The receipt is used to compile the source code and
MikeDSmith25@82 72 # generate suitable packages for Tazpkg.
pankso@7 73 RECEIPT="$WOK/$PACKAGE/receipt"
pankso@7 74
pankso@7 75 # The path to the process log file.
pankso@7 76 LOG="$WOK/$PACKAGE/process.log"
pankso@7 77
pankso@7 78 ####################
pankso@7 79 # Tazwok functions #
pankso@7 80 ####################
pankso@7 81
pankso@7 82 # Print the usage (English).
pankso@7 83 usage ()
pankso@7 84 {
pankso@7 85 echo -e "\nSliTaz sources compiler and packages generator - Version: $VERSION\n
pankso@107 86 \033[1mUsage: \033[0m `basename $0` [command] [package|list|category|dir|id] [--option]
pankso@7 87 \033[1mCommands: \033[0m\n
pankso@7 88 usage Print this short usage.
pankso@7 89 stats Print Tazwok statistics from the config file and the wok.
pascal@98 90 build-depends Generate a list of package to build wok.
pankso@66 91 cmp|compare Compare the wok and the cooked pkgs (--remove old pkgs).
pankso@7 92 list List all packages in the wok tree or by category.
MikeDSmith25@82 93 info Get information about a package in the wok.
pascal@92 94 check Check every receipt for common errors.
pankso@7 95 check-log Check the process log file of a package.
pankso@7 96 search Search for a package in the wok by pattern or name.
MikeDSmith25@82 97 compile Configure and build a package using the receipt rules.
pankso@7 98 genpkg Generate a suitable package for Tazpkg with the rules.
pankso@7 99 cook Compile and generate a package directly.
pankso@7 100 cook-list Cook all packages specified in the list by order.
pankso@7 101 clean Clean all generated files in the package tree.
pankso@7 102 new-tree Prepare a new package tree and receipt (--interactive).
MikeDSmith25@82 103 gen-list Generate a packages list for a repository (--text).
pankso@7 104 gen-clean-wok Gen a clean wok in a dir ('clean-wok' cleans current wok).
pankso@107 105 remove Remove a package from the wok.
pankso@107 106 hgup Pull and update a wok under HG.
pankso@107 107 maintained-by List packages maintained by a contributor\n"
pankso@7 108 }
pankso@7 109
pankso@7 110 # Status function.
pankso@7 111 status()
pankso@7 112 {
pankso@7 113 local CHECK=$?
pankso@7 114 echo -en "\\033[70G[ "
pankso@7 115 if [ $CHECK = 0 ]; then
pankso@7 116 echo -en "\\033[1;33mOK"
pankso@7 117 else
pankso@7 118 echo -en "\\033[1;31mFailed"
pankso@7 119 fi
pankso@7 120 echo -e "\\033[0;39m ]"
pankso@7 121 }
pankso@7 122
pankso@7 123 # Check if user is root.
pankso@7 124 check_root()
pankso@7 125 {
pankso@7 126 if test $(id -u) != 0 ; then
pankso@7 127 echo -e "\nYou must be root to run `basename $0` with this option."
pankso@7 128 echo -e "Please type 'su' and root password to become super-user.\n"
pankso@7 129 exit 0
pankso@7 130 fi
pankso@7 131 }
pankso@7 132
pankso@7 133 # Check for a package name on cmdline.
pankso@7 134 check_for_package_on_cmdline()
pankso@7 135 {
pankso@7 136 if [ -z "$PACKAGE" ]; then
pankso@7 137 echo -e "\nYou must specify a package name on the command line."
pankso@7 138 echo -e "Example : tazwok $COMMAND package\n"
pankso@7 139 exit 0
pankso@7 140 fi
pankso@7 141 }
pankso@7 142
pankso@7 143 # Check for the receipt of a package used to cook.
pankso@7 144 check_for_receipt()
pankso@7 145 {
pankso@7 146 if [ ! -f "$RECEIPT" ]; then
pankso@7 147 echo -e "\nUnable to find the receipt : $RECEIPT\n"
pankso@7 148 exit 0
pankso@7 149 fi
pankso@7 150 }
pankso@7 151
pankso@7 152 # Check for a specified file list on cmdline.
pankso@7 153 check_for_list()
pankso@7 154 {
pankso@7 155 if [ -z "$LIST" ]; then
pankso@7 156 echo -e "\nPlease specify the path to the list of packages to cook.\n"
pankso@7 157 exit 0
pankso@7 158 fi
MikeDSmith25@82 159 # Check if the list of packages exists.
pankso@7 160 if [ -f "$LIST" ]; then
pankso@7 161 LIST=`cat $LIST`
pankso@7 162 else
pankso@7 163 echo -e "\nUnable to find $LIST packages list.\n"
pankso@7 164 exit 0
pankso@7 165 fi
pankso@7 166 }
pankso@7 167
pankso@7 168 # Check for the wanted package if specified in WANTED
pankso@7 169 # receipt variable. Set the $src/$_pkg variable to help compiling
pankso@7 170 # and generating packages.
pankso@7 171 check_for_wanted()
pankso@7 172 {
pankso@7 173 if [ ! "$WANTED" = "" ]; then
pankso@7 174 echo -n "Checking for the wanted package..."
pankso@7 175 if [ ! -d "$WOK/$WANTED" ]; then
pankso@7 176 echo -e "\nWanted package is missing in the work directory.\n"
pankso@7 177 exit 0
pankso@7 178 fi
erjo@38 179 # Checking for buildtree of Wanted package
pankso@39 180 if [ ! -d "$WOK/$WANTED/taz" ]; then
erjo@38 181 echo -e "\n\nSource files of wanted package is missing in the work directory."
erjo@38 182 echo -n "Would you like to build the missing package (y/N) ? " ; read anser
erjo@38 183 if [ "$anser" == "y" ]; then
erjo@38 184 tazwok cook $WANTED
erjo@38 185 else
erjo@38 186 echo -e "\nWanted package source tree is missing in the work directory.\n"
erjo@38 187 exit 0
erjo@38 188 fi
erjo@38 189 fi
pankso@7 190 status
pankso@7 191 # Set wanted src path.
pankso@7 192 src=$WOK/$WANTED/$WANTED-$VERSION
pankso@7 193 _pkg=$src/_pkg
pankso@7 194 fi
pankso@7 195 }
pankso@7 196
erjo@38 197
pankso@40 198 # Check for build dependencies, notify user and install if specified.
pankso@18 199 check_for_build_depends()
pankso@18 200 {
pankso@18 201 echo "Checking for build dependencies..."
pankso@18 202 for pkg in $BUILD_DEPENDS
pankso@18 203 do
pankso@18 204 if [ ! -d "/var/lib/tazpkg/installed/$pkg" ]; then
pankso@18 205 MISSING_PACKAGE=$pkg
pankso@18 206 fi
pankso@18 207 done
pankso@18 208 if [ ! "$MISSING_PACKAGE" = "" ]; then
pankso@18 209 echo "================================================================================"
pankso@18 210 for pkg in $BUILD_DEPENDS
pankso@18 211 do
pankso@18 212 if [ ! -d "/var/lib/tazpkg/installed/$pkg" ]; then
pankso@18 213 MISSING_PACKAGE=$pkg
pankso@18 214 echo "Missing : $pkg"
pankso@18 215 fi
pankso@18 216 done
pankso@18 217 echo "================================================================================"
pankso@40 218 echo "You can continue, exit or install missing dependencies."
pankso@40 219 echo -n "Install, continue or exit (install/y/N) ? "; read anser
pankso@40 220 case $anser in
pankso@40 221 install)
pankso@40 222 for pkg in $BUILD_DEPENDS
pankso@40 223 do
pankso@40 224 if [ ! -d "/var/lib/tazpkg/installed/$pkg" ]; then
pankso@40 225 tazpkg get-install $pkg
pankso@40 226 fi
pankso@40 227 done ;;
pankso@40 228 y|yes)
pankso@40 229 continue ;;
pankso@40 230 *)
pankso@40 231 exit 0 ;;
pankso@40 232 esac
pankso@18 233 fi
pankso@18 234 }
pascal@76 235
pascal@76 236 # Check for loop in deps tree.
pascal@76 237 check_for_deps_loop()
pascal@76 238 {
pascal@76 239 local list
pascal@76 240 local pkg
pascal@76 241 local deps
pascal@76 242 pkg=$1
pascal@76 243 shift
pascal@76 244 [ -n "$1" ] || return
pascal@76 245 list=""
pascal@76 246 # Filter out already processed deps
pascal@76 247 for i in $@; do
pascal@76 248 case " $ALL_DEPS" in
pascal@76 249 *\ $i\ *);;
pascal@76 250 *) list="$list $i";;
pascal@76 251 esac
pascal@76 252 done
pascal@76 253 ALL_DEPS="$ALL_DEPS$list "
pascal@76 254 for i in $list; do
pascal@76 255 [ -f $i/receipt ] || continue
pascal@76 256 deps="$(DEPENDS=""; . $i/receipt; echo $DEPENDS)"
pascal@76 257 case " $deps " in
pascal@76 258 *\ $pkg\ *) echo -e "$MSG $i"; MSG="";;
pascal@76 259 *) check_for_deps_loop $pkg $deps;;
pascal@76 260 esac
pascal@76 261 done
pascal@76 262 }
pascal@76 263
erjo@53 264 download()
erjo@53 265 {
erjo@53 266 for file in $@; do
erjo@53 267 wget $file && break
erjo@53 268 done
erjo@53 269 }
pankso@18 270
pankso@7 271 # Configure and make a package with the receipt.
pankso@7 272 compile_package()
pankso@7 273 {
pankso@7 274 check_for_package_on_cmdline
pankso@7 275 # Include the receipt to get all needed variables and functions
pankso@7 276 # and cd into the work directory to start the work.
pankso@7 277 check_for_receipt
pankso@7 278 . $RECEIPT
pankso@7 279 # Log the package name and date.
pankso@7 280 echo "date `date +%Y%m%d\ \%H:%M:%S`" >> $LOG
pankso@7 281 echo "package $PACKAGE (compile)" >> $LOG
pankso@7 282 # Set wanted $src variable to help compiling.
pankso@7 283 if [ ! "$SOURCE" = "" ]; then
pankso@7 284 src=$WOK/$PACKAGE/$SOURCE-$VERSION
pankso@7 285 else
pankso@7 286 src=$WOK/$PACKAGE/$PACKAGE-$VERSION
pankso@7 287 fi
pankso@18 288 check_for_build_depends
pankso@7 289 check_for_wanted
pankso@7 290 echo ""
pankso@7 291 echo "Starting to cook $PACKAGE..."
pankso@7 292 echo "================================================================================"
pankso@7 293 # Check for src tarball and wget if needed.
pankso@28 294 if [ ! "$WGET_URL" = "" ]; then
pankso@7 295 echo "Checking for source tarball... "
pankso@7 296 if [ ! -f "$SOURCES_REPOSITORY/$TARBALL" ]; then
pankso@7 297 cd $SOURCES_REPOSITORY
erjo@53 298 download $WGET_URL
erjo@53 299 #wget $WGET_URL
pankso@7 300 # Exit if download failed to avoid errors.
pankso@7 301 if [ ! -f "$SOURCES_REPOSITORY/$TARBALL" ]; then
pankso@7 302 echo -e "\nDownload failed, exiting. Please check WGET_URL variable.\n"
pankso@7 303 exit 1
pankso@7 304 fi
pankso@7 305 else
pankso@7 306 echo -n "Source tarball exit... "
pankso@7 307 status
pankso@7 308 fi
MikeDSmith25@82 309 # Untaring source if necessary. We don't need to extract source if
MikeDSmith25@82 310 # the package is built with a wanted source package.
pankso@7 311 if [ "$WANTED" = "" ]; then
pankso@7 312 if [ ! -d $src ]; then
pankso@7 313 # Log process.
pankso@7 314 echo "untaring $TARBALL" >> $LOG
pankso@7 315 echo -n "Untaring $TARBALL... "
pascal@48 316 case "$TARBALL" in
pascal@97 317 *zip) ( cd $WOK/$PACKAGE; unzip -o $SOURCES_REPOSITORY/$TARBALL );;
pascal@48 318 *bz2) tar xjf $SOURCES_REPOSITORY/$TARBALL -C $WOK/$PACKAGE;;
pascal@48 319 *tar) tar xf $SOURCES_REPOSITORY/$TARBALL -C $WOK/$PACKAGE;;
pascal@88 320 *Z) tar xZf $SOURCES_REPOSITORY/$TARBALL -C $WOK/$PACKAGE;;
pascal@48 321 *) tar xzf $SOURCES_REPOSITORY/$TARBALL -C $WOK/$PACKAGE;;
pascal@48 322 esac
pankso@7 323 status
pankso@52 324 # Permissions settings
pankso@52 325 chown -R root.root $WOK/$PACKAGE/$PACKAGE-* 2>/dev/null
pankso@52 326 chown -R root.root $WOK/$PACKAGE/$SOURCE-* 2>/dev/null
pankso@7 327 else
pankso@7 328 echo -n "Source direcory exit... " && status
pankso@7 329 fi
pankso@7 330 fi
pankso@7 331 fi
pankso@7 332 cd $WOK/$PACKAGE
MikeDSmith25@82 333 # Log and execute compile_rules function if it exists, to configure and
MikeDSmith25@82 334 # make the package if it exists.
pankso@28 335 if grep -q ^compile_rules $RECEIPT; then
pankso@7 336 echo "executing compile_rules" >> $LOG
pankso@7 337 compile_rules
pankso@7 338 # Exit if compilation failed so the binary package
pankso@7 339 # is not generated when using the cook comand.
pankso@7 340 local CHECK=$?
pankso@7 341 if [ $CHECK = 0 ]; then
pankso@7 342 echo "================================================================================"
pankso@7 343 echo "$PACKAGE compiled on : `date +%Y%m%d\ \%H:%M:%S`"
pankso@7 344 echo ""
pankso@7 345 echo "compilation done : `date +%Y%m%d\ \%H:%M:%S`" >> $LOG
pankso@7 346 else
pankso@7 347 echo "================================================================================"
pankso@7 348 echo "Compilation failed. Please read the compilator output."
pankso@7 349 echo "" && exit 1
pankso@7 350 fi
pankso@7 351 else
pankso@7 352 echo "no compile_rules" >> $LOG
pankso@7 353 echo -e "No compile rules for $PACKAGE...\n"
pankso@7 354 fi
pankso@7 355 }
pankso@7 356
MikeDSmith25@82 357 # Copy all generic files (locale, pixmaps, .desktop). We use standard paths,
pankso@22 358 # so some packages need to copy these files with the receipt and genpkg_rules.
pankso@22 359 # This function is executed by gen_package when 'tazwok genpkg'.
pankso@22 360 copy_generic_files()
pankso@22 361 {
MikeDSmith25@82 362 # In most cases, locales are in $_pkg/usr/share/locale so we copy files
pankso@22 363 # using generic variables and $LOCALE from Tazwok config file.
pankso@22 364 if [ ! "$LOCALE" = "" ]; then
pankso@22 365 if [ -d "$_pkg/usr/share/locale" ]; then
pankso@22 366 for i in $LOCALE
pankso@22 367 do
pankso@37 368 if [ -d "$_pkg/usr/share/locale/$i" ]; then
pankso@37 369 mkdir -p $fs/usr/share/locale
pankso@37 370 cp -a $_pkg/usr/share/locale/$i $fs/usr/share/locale
pankso@37 371 fi
pankso@22 372 done
pankso@22 373 fi
pankso@22 374 fi
MikeDSmith25@82 375 # Pixmaps (PNG or/and XPM only). Some icons/images can be added through
MikeDSmith25@82 376 # genpkg_rules and generic copy can be disabled with GENERIC_PIXMAPS="no"
pankso@31 377 # in pkg receipt.
pankso@22 378 if [ ! "$GENERIC_PIXMAPS" = "no" ]; then
pankso@22 379 if [ -d "$_pkg/usr/share/pixmaps" ]; then
pankso@27 380 mkdir -p $fs/usr/share/pixmaps
pankso@31 381 cp -a $_pkg/usr/share/pixmaps/$PACKAGE.png \
pankso@31 382 $fs/usr/share/pixmaps 2>/dev/null
pankso@31 383 cp -a $_pkg/usr/share/pixmaps/$PACKAGE.xpm \
pankso@22 384 $fs/usr/share/pixmaps 2>/dev/null
pankso@23 385 fi
MikeDSmith25@82 386 # Custom or homemade PNG pixmap can be in stuff.
pankso@23 387 if [ -f "stuff/$PACKAGE.png" ]; then
pankso@27 388 mkdir -p $fs/usr/share/pixmaps
pankso@23 389 cp -a stuff/$PACKAGE.png $fs/usr/share/pixmaps
pankso@22 390 fi
pankso@22 391 fi
pankso@22 392 # Desktop entry (.desktop).
pankso@22 393 if [ -d "$_pkg/usr/share/applications" ]; then
pankso@22 394 cp -a $_pkg/usr/share/applications $fs/usr/share
pankso@23 395 fi
MikeDSmith25@82 396 # Homemade desktop file(s) can be in stuff.
pankso@34 397 if [ -d "stuff/applications" ]; then
pankso@42 398 mkdir -p $fs/usr/share
pankso@42 399 cp -a stuff/applications $fs/usr/share
pankso@34 400 fi
pankso@34 401 if [ -f "stuff/$PACKAGE.desktop" ]; then
pankso@42 402 mkdir -p $fs/usr/share/applications
pankso@42 403 cp -a stuff/$PACKAGE.desktop $fs/usr/share/applications
pankso@22 404 fi
pankso@22 405 }
pankso@22 406
pankso@25 407 # Find and strip : --strip-all (-s) or --strip-debug on static libs.
pankso@25 408 strip_package()
pankso@25 409 {
pankso@25 410 echo -n "Executing strip on all files..."
pankso@25 411 # Binaries.
pankso@25 412 for dir in $fs/bin $fs/sbin $fs/usr/bin $fs/usr/sbin $fs/usr/games
pankso@25 413 do
pankso@25 414 if [ -d "$dir" ]; then
pankso@25 415 find $dir -type f -exec strip -s '{}' 2>/dev/null \;
pankso@25 416 fi
pankso@25 417 done
pankso@25 418 # Libraries.
pankso@25 419 find $fs -name "*.so*" -exec strip -s '{}' 2>/dev/null \;
pankso@25 420 find $fs -name "*.a" -exec strip --strip-debug '{}' 2>/dev/null \;
pankso@25 421 status
pankso@25 422 }
pankso@25 423
MikeDSmith25@82 424 # Create a package tree and build the gziped cpio archive
pankso@7 425 # to make a SliTaz (.tazpkg) package.
pankso@7 426 gen_package()
pankso@7 427 {
pankso@7 428 check_root
pankso@7 429 check_for_package_on_cmdline
pankso@7 430 check_for_receipt
pascal@74 431 EXTRAVERSION=""
pankso@7 432 . $RECEIPT
pascal@86 433 # May compute VERSION
pascal@86 434 if grep -q ^get_version $RECEIPT; then
pascal@86 435 get_version
pascal@86 436 fi
pankso@7 437 check_for_wanted
pankso@7 438 cd $WOK/$PACKAGE
pankso@7 439 # Remove old Tazwok package files.
pankso@7 440 if [ -d "taz" ]; then
pankso@7 441 rm -rf taz
pankso@7 442 fi
MikeDSmith25@82 443 # Create the package tree and set useful variables.
pankso@7 444 mkdir -p taz/$PACKAGE-$VERSION/fs
pankso@7 445 fs=taz/$PACKAGE-$VERSION/fs
MikeDSmith25@82 446 # Set $src for standard package and $_pkg variables.
pankso@7 447 if [ "$WANTED" = "" ]; then
pankso@7 448 src=$WOK/$PACKAGE/$PACKAGE-$VERSION
pankso@7 449 _pkg=$src/_pkg
pankso@7 450 fi
pankso@7 451 if [ ! "$SOURCE" = "" ]; then
pankso@7 452 src=$WOK/$PACKAGE/$SOURCE-$VERSION
pankso@7 453 _pkg=$src/_pkg
pankso@7 454 fi
pankso@7 455 cd $WOK/$PACKAGE
pankso@22 456 # Execute genpkg_rules and copy generic files to build the package.
pankso@7 457 echo ""
pascal@87 458 echo "Building $PACKAGE with the receipt..."
pankso@7 459 echo "================================================================================"
pankso@28 460 if grep -q ^genpkg_rules $RECEIPT; then
pankso@7 461 # Log process.
pankso@7 462 echo "executing genpkg_rules" >> $LOG
pankso@7 463 genpkg_rules
pankso@25 464 cd $WOK/$PACKAGE
pankso@24 465 # Skip generic files for packages with a WANTED variable
pankso@24 466 # (dev and splited pkgs).
pankso@24 467 if [ ! "$WANTED" = "" ]; then
pankso@24 468 continue
pankso@24 469 else
pankso@24 470 copy_generic_files
pankso@24 471 fi
pankso@25 472 strip_package
pankso@7 473 else
pankso@7 474 echo "No package rules to gen $PACKAGE..."
pankso@22 475 exit 1
pankso@7 476 fi
MikeDSmith25@82 477 # Copy the receipt and description (if exists) in the binary package tree.
pankso@7 478 cd $WOK/$PACKAGE
pankso@7 479 echo -n "Copying the receipt..."
pankso@7 480 cp receipt taz/$PACKAGE-$VERSION
pankso@7 481 status
pascal@89 482 if grep -q ^get_version $RECEIPT; then
pascal@89 483 echo -n "Update version in receipt..."
pascal@89 484 sed -i "s/^VERSION=.*/VERSION=\"$VERSION\"/" \
pascal@89 485 taz/$PACKAGE-$VERSION/receipt
pascal@89 486 status
pascal@89 487 fi
pankso@7 488 if [ -f "description.txt" ]; then
pankso@7 489 echo -n "Copying the description file..."
pankso@7 490 cp description.txt taz/$PACKAGE-$VERSION
pankso@7 491 status
pankso@7 492 fi
MikeDSmith25@82 493 # Create the files.list by redirecting find output.
pankso@7 494 echo -n "Creating the list of files..."
pascal@15 495 cd taz/$PACKAGE-$VERSION
pascal@13 496 LAST_FILE=""
pascal@15 497 ( find fs -print; echo ) | while read file; do
pascal@13 498 if [ "$LAST_FILE" != "" ]; then
pascal@15 499 case "$file" in
pascal@13 500 $LAST_FILE/*)
pascal@15 501 case "$(ls -ld "$LAST_FILE")" in
pascal@15 502 drwxr-xr-x\ *\ root\ *\ root\ *);;
pascal@15 503 *) echo ${LAST_FILE#fs};;
pascal@13 504 esac;;
pascal@15 505 *) echo ${LAST_FILE#fs};;
pascal@13 506 esac
pascal@13 507 fi
pascal@15 508 LAST_FILE="$file"
pascal@15 509 done > files.list
pankso@7 510 status
pascal@84 511 if [ -z "$EXTRAVERSION" ]; then
pascal@84 512 case "$PACKAGE" in
pascal@84 513 linux*);;
pascal@85 514 *) EXTRAVERSION="$(grep '/lib/modules/.*-slitaz/' files.list |\
pascal@84 515 head -1 | sed 's|/lib/modules/\(.*\)-slitaz/.*|_\1|')";;
pascal@84 516 esac
pascal@84 517 fi
pascal@87 518 rm -f $PACKAGES_REPOSITORY/$PACKAGE-$VERSION$EXTRAVERSION.tazpkg 2> /dev/null
pascal@70 519 echo -n "Creating md5sum of files..."
pascal@70 520 while read file; do
pascal@71 521 [ -L "fs$file" ] && continue
pascal@71 522 [ -f "fs$file" ] || continue
pascal@71 523 md5sum "fs$file" | sed 's/ fs/ /'
pascal@70 524 done < files.list > md5sum
pascal@97 525 #[ -s md5sum ] || rm -f md5sum
pascal@70 526 status
pascal@84 527 UNPACKED_SIZE=$(du -chs fs receipt files.list md5sum description.txt \
pascal@84 528 2> /dev/null | awk '{ sz=$1 } END { print sz }')
pankso@7 529 # Build cpio archives. Find, cpio and gzip the fs, finish by
pankso@7 530 # removing the fs tree.
pankso@7 531 echo -n "Compressing the fs... "
pankso@56 532 find fs -print | cpio -o -H newc | gzip > fs.cpio.gz && rm -rf fs
pascal@84 533 PACKED_SIZE=$(du -chs fs.cpio.gz receipt files.list md5sum \
pascal@84 534 description.txt 2> /dev/null | awk '{ sz=$1 } END { print sz }')
pascal@59 535 echo -n "Undating receipt sizes..."
pascal@59 536 sed -i s/^PACKED_SIZE.*$// receipt
pascal@59 537 sed -i s/^UNPACKED_SIZE.*$// receipt
pascal@59 538 sed -i "s/^PACKAGE=/PACKED_SIZE=\"$PACKED_SIZE\"\nUNPACKED_SIZE=\"$UNPACKED_SIZE\"\nPACKAGE=/" receipt
pascal@86 539 sed -i "s/^VERSION=$/VERSION=\"$VERSION\"/" receipt
pascal@59 540 status
pascal@72 541 if [ -n "$EXTRAVERSION" ]; then
pascal@72 542 echo -n "Undating receipt EXTRAVERSION..."
pascal@72 543 sed -i s/^EXTRAVERSION.*$// receipt
pascal@72 544 sed -i "s/^VERSION=/EXTRAVERSION=\"$EXTRAVERSION\"\nVERSION=/" receipt
pascal@72 545 status
pascal@72 546 fi
pankso@7 547 echo -n "Creating full cpio archive... "
pascal@68 548 find . -print | cpio -o -H newc > $PACKAGES_REPOSITORY/$PACKAGE-$VERSION$EXTRAVERSION.tazpkg
MikeDSmith25@82 549 # Restore package tree incase we want to browse it.
pankso@7 550 echo -n "Restoring original package tree... "
pascal@14 551 zcat fs.cpio.gz | cpio -id
pascal@14 552 rm fs.cpio.gz && cd ..
pankso@7 553 # Log process.
pascal@69 554 echo "$PACKAGE-$VERSION$EXTRAVERSION.tazpkg (done)" >> $LOG
pankso@7 555 echo "================================================================================"
pascal@68 556 echo "Package $PACKAGE ($VERSION$EXTRAVERSION) generated."
pascal@68 557 echo "Size : `du -sh $PACKAGES_REPOSITORY/$PACKAGE-$VERSION$EXTRAVERSION.tazpkg`"
pankso@7 558 echo ""
pankso@7 559 }
pankso@7 560
pankso@28 561 # Optional text packages list for gen-list.
pankso@28 562 gen_textlist()
pankso@28 563 {
pascal@99 564 rm -f packages.desc packages.equiv
pankso@28 565 DATE=`date +%Y-%m-%d\ \%H:%M:%S`
pankso@28 566 echo -n "Creating the text packages list... "
pankso@28 567 cat >> packages.txt << _EOT_
pankso@28 568 # SliTaz GNU/Linux - Packages list
pankso@28 569 #
pankso@28 570 # Packages : _packages_
pankso@28 571 # Date : $DATE
pankso@28 572 #
pankso@28 573 _EOT_
pankso@28 574 for pkg in $WOK/*
pankso@28 575 do
pascal@99 576 PROVIDE=""
pankso@58 577 PACKAGE=""
pascal@60 578 PACKED_SIZE=""
pascal@60 579 if [ -f $pkg/taz/*/receipt ]; then
pascal@62 580 . $pkg/taz/*/receipt
pascal@62 581 else
pascal@60 582 . $pkg/receipt
pascal@60 583 fi
pankso@28 584 cat >> packages.txt << _EOT_
pankso@28 585
pankso@28 586 $PACKAGE
pankso@28 587 $VERSION
pankso@28 588 $SHORT_DESC
pankso@28 589 _EOT_
pascal@60 590 if [ -n "$PACKED_SIZE" ]; then
pascal@60 591 cat >> packages.txt << _EOT_
pascal@64 592 $PACKED_SIZE ($UNPACKED_SIZE installed)
pascal@60 593 _EOT_
pascal@60 594 fi
MikeDSmith25@82 595 # packages.desc is used by Tazpkgbox <tree>.
pankso@58 596 echo "$PACKAGE | $VERSION | $SHORT_DESC | $CATEGORY | $WEB_SITE" >> packages.desc
pascal@99 597 # packages.equiv is used by tazpkg install to check depends
pascal@104 598 touch packages.equiv
pascal@99 599 for i in $PROVIDE; do
pascal@99 600 DEST=""
pascal@99 601 echo $i | grep -q : && DEST="${i#*:}:"
pascal@99 602 if grep -qs ^${i%:*}= packages.equiv; then
pascal@99 603 sed -i "s/^${i%:*}=/${i%:*}=$DEST$PACKAGE /" packages.equiv
pascal@99 604 else
pascal@99 605 echo "${i%:*}=$DEST$PACKAGE" >> packages.equiv
pascal@99 606 fi
pascal@99 607 done
pankso@28 608 packages=$(($packages+1))
pankso@28 609 done && status
pascal@61 610 echo -n "Creating the text files list... "
pascal@61 611 for pkg in $WOK/*
pascal@61 612 do
pascal@63 613 if [ -f $pkg/taz/*/files.list ]; then
pascal@61 614 . $pkg/taz/*/receipt
pascal@61 615 ( echo "$PACKAGE"; cat $pkg/taz/*/files.list ) | awk '
pascal@61 616 BEGIN { name="" } { if (name == "") name=$0; else printf("%s: %s\n",name,$0); }'
pascal@61 617 else
pascal@61 618 echo "No files_list in $pkg" 1>&2
pascal@61 619 fi
pascal@61 620 done | lzma e files.list.lzma -si && status
pankso@28 621 sed -i s/"_packages_"/"$packages"/ packages.txt
pankso@28 622 }
pankso@28 623
pascal@91 624 # Return the date of the last commit in seconds since Jan 1 1970
pascal@91 625 hgdate()
pascal@91 626 {
pascal@91 627 local pkg
pascal@91 628 local date
pascal@91 629 local mon
pascal@91 630 # Default date is Jan 1 1970
pascal@97 631 [ -d $WOK/.hg -a -x /usr/bin/hg ] || { echo "010100001970"; return; }
pascal@91 632 pkg=$(basename $1)
pascal@91 633 # Get date for last commit
pascal@91 634 date="$( cd $WOK; hg log $(find $pkg/receipt $pkg/stuff -type f \
pascal@91 635 2> /dev/null) | grep date: | head -1 | cut -c 6-)"
pascal@97 636 [ -n "$date" ] || { echo "010100001970"; return; }
pascal@91 637 case "$(echo $date | awk '{ print $2 }')" in
pascal@91 638 Jan) mon="01";; Feb) mon="02";; Mar) mon="03";; Apr) mon="04";;
pascal@91 639 May) mon="05";; Jun) mon="06";; Jul) mon="07";; Aug) mon="08";;
pascal@91 640 Sep) mon="09";; Oct) mon="10";; Nov) mon="11";; Dec) mon="12";;
pascal@91 641 esac
pascal@91 642 # Reformat, don't mind about TZ: we look for days or months delta
pascal@91 643 echo $date | sed "s|[^ ]* [^ ]* \\(.*\\) \\(.*\\):\\(.*\\):\\(.*\\) \\(.*\\) .*|$mon\1\2\3\5|"
pascal@91 644 }
pascal@91 645
pankso@7 646 ###################
pankso@7 647 # Tazwok commands #
pankso@7 648 ###################
pankso@7 649
pankso@7 650 case "$COMMAND" in
pankso@7 651 stats)
pankso@7 652 # Tazwok general statistics from the config file the wok.
pankso@7 653 #
pankso@7 654 echo ""
pankso@7 655 echo -e "\033[1mTazwok configuration statistics\033[0m
pankso@7 656 ================================================================================
pankso@7 657 Wok directory : $WOK
pankso@7 658 Packages repository : $PACKAGES_REPOSITORY
pankso@7 659 Sources repository : $SOURCES_REPOSITORY
pankso@7 660 Packages in the wok : `ls -1 $WOK | wc -l`
pankso@16 661 Cooked packages : `ls -1 $PACKAGES_REPOSITORY/*.tazpkg 2>/dev/null | wc -l`
pankso@7 662 ================================================================================"
pankso@7 663 echo ""
pankso@7 664 ;;
pascal@98 665 build-depends)
pascal@98 666 # List dependancies to rebuild wok
pascal@98 667 cd $WOK
pascal@98 668 ALL_DEPS="slitaz-toolchain"
pascal@98 669 echo $ALL_DEPS
pascal@98 670 for pkg in $(ls $2)
pascal@98 671 do
pascal@98 672 [ -f $pkg/receipt ] || continue
pascal@98 673 BUILD_DEPENDS=""
pascal@98 674 . $pkg/receipt
pascal@98 675 for i in $BUILD_DEPENDS; do
pascal@98 676 case " $ALL_DEPS " in
pascal@98 677 *\ $i\ *);;
pascal@98 678 *) ALL_DEPS="$ALL_DEPS $i"
pascal@98 679 echo $i;;
pascal@98 680 esac
pascal@98 681 done
pascal@98 682 done
pascal@98 683 ;;
pascal@76 684 check)
pascal@76 685 # Check wok consistancy
pascal@76 686 echo ""
pascal@76 687 echo -e "\033[1mWok and packages checking\033[0m
pascal@76 688 ================================================================================"
pascal@77 689 cd $WOK
pascal@77 690 for pkg in $(ls)
pascal@76 691 do
pascal@76 692 [ -f $pkg/receipt ] || continue
pascal@76 693 PACKAGE=""
pascal@76 694 VERSION=""
pascal@76 695 CATEGORY=""
pascal@76 696 SHORT_DESC=""
pascal@76 697 MAINTAINER=""
pascal@76 698 WEB_SITE=""
pascal@79 699 DEPENDS=""
pascal@93 700 BUILD_DEPENDS=""
pascal@97 701 WANTED=""
pascal@76 702 . $pkg/receipt
pascal@76 703 [ "$PACKAGE" = "$pkg" ] || echo "Package $PACKAGE should be $pkg"
pascal@76 704 [ -n "$VERSION" ] || echo "Package $PACKAGE has no VERSION"
pascal@97 705 if [ -n "$WANTED" ]; then
pascal@97 706 if [ ! -f $WANTED/receipt ]; then
pascal@97 707 echo "Package $PACKAGE want unknown $WANTED package"
pascal@97 708 else
pascal@97 709 BASEVERSION=$(. $WANTED/receipt ; echo $VERSION)
pascal@103 710 if [ "$VERSION" = "$WANTED" ]; then
pascal@103 711 # BASEVERSION is computed in receipt
pascal@103 712 grep -q '_pkg=' $pkg/receipt &&
pascal@103 713 BASEVERSION=$VERSION
pascal@103 714 fi
pascal@97 715 if [ "$VERSION" != "$BASEVERSION" ]; then
pascal@97 716 echo "Package $PACKAGE ($VERSION) want $WANTED ($BASEVERSION)"
pascal@97 717 fi
pascal@97 718 fi
pascal@97 719 fi
pascal@97 720
pascal@94 721 if [ -n "$CATEGORY" ]; then
pascal@94 722 case " $(echo $CATEGORIES) " in
pascal@94 723 *\ $CATEGORY\ *);;
taziden@105 724 *) echo "Package $PACKAGE has an invalid CATEGORY";;
pascal@94 725 esac
pascal@94 726 else
pascal@94 727 echo"Package $PACKAGE has no CATEGORY"
pascal@94 728 fi
pascal@76 729 [ -n "$SHORT_DESC" ] || echo "Package $PACKAGE has no SHORT_DESC"
pascal@76 730 [ -n "$MAINTAINER" ] || echo "Package $PACKAGE has no MAINTAINER"
pascal@76 731 [ -n "$WEB_SITE" ] || echo "Package $PACKAGE has no WEB_SITE"
pascal@78 732 case "$MAINTAINER" in
pascal@78 733 *\<*|*\>*) echo "Package $PACKAGE has an invalid MAINTAINER: $MAINTAINER";;
pascal@78 734 esac
pascal@78 735 case "$MAINTAINER" in
pascal@78 736 *@*);;
pascal@78 737 *) echo "Package $PACKAGE MAINTAINER is not an email address";;
pascal@78 738 esac
pascal@76 739 MSG="Missing dependencies for $PACKAGE $VERSION$EXTRAVERSION :\n"
pascal@76 740 for i in $DEPENDS; do
pascal@76 741 [ -d $i ] && continue
pascal@76 742 echo -e "$MSG $i"
pascal@76 743 MSG=""
pascal@76 744 done
pascal@92 745 MSG="Missing build dependencies for $PACKAGE $VERSION$EXTRAVERSION :\n"
pascal@92 746 for i in $BUILD_DEPENDS; do
pascal@92 747 [ -d $i ] && continue
pascal@92 748 echo -e "$MSG $i"
pascal@92 749 MSG=""
pascal@92 750 done
pascal@76 751 MSG="Dependencies loop between $PACKAGE and :\n"
pascal@76 752 ALL_DEPS=""
pascal@76 753 check_for_deps_loop $PACKAGE $DEPENDS
pascal@76 754 done
pascal@76 755 ;;
pankso@66 756 cmp|compare)
MikeDSmith25@82 757 # Compare the wok and packages repository to help with maintaining
pankso@66 758 # a mirror.
pankso@65 759 echo ""
MikeDSmith25@82 760 echo -e "\033[1mWok and packages comparison\033[0m
pankso@65 761 ================================================================================"
pankso@65 762 for pkg in $WOK/*
pankso@65 763 do
pascal@98 764 WANTED=""
pankso@65 765 . $pkg/receipt
pascal@95 766 echo "$PACKAGE-$VERSION.tazpkg" >> /tmp/wok.list.$$
pascal@102 767 tpkg="$(ls $PACKAGES_REPOSITORY/$PACKAGE-$VERSION*.tazpkg 2> /dev/null | head -1)"
pascal@91 768 if [ -z "$tpkg" ]; then
pascal@74 769 echo "Missing package: $PACKAGE ($VERSION)"
pascal@95 770 echo "$PACKAGE" >> /tmp/pkgs.missing.$$
pascal@91 771 elif [ -f $pkg/taz/*/receipt -a ! -f $pkg/taz/*/md5sum ]; then
pascal@91 772 echo "Obsolete package: $PACKAGE ($VERSION)"
pascal@95 773 echo "$PACKAGE" >> /tmp/pkgs.missing.$$
pascal@97 774 elif [ $pkg/receipt -nt $tpkg ]; then
pascal@97 775 echo "Refresh package: $PACKAGE ($VERSION)"
pascal@97 776 echo "$PACKAGE" >> /tmp/pkgs.missing.$$
pascal@91 777 else
pascal@91 778 srcdate=$(hgdate $pkg)
pascal@91 779 pkgdate=$(date -u -r $tpkg '+%m%d%H%M%Y')
pascal@91 780 if [ $(date -d $pkgdate +%s) -lt $(date -d $srcdate +%s) ]; then
pascal@91 781 echo "Rebuild package: $PACKAGE ($VERSION) cooked $(date -d $pkgdate "+%x %X"), modified $(date -d $srcdate "+%x %X")"
pascal@95 782 echo "$PACKAGE" >> /tmp/pkgs.missing.$$
pascal@95 783 else
pascal@95 784 continue
pascal@91 785 fi
pankso@65 786 fi
pascal@95 787 if [ "$2" = "--cook" ]; then
pascal@98 788 if [ -n "$WANTED" -a ! -d $WOK/$WANTED/taz ]; then
pascal@98 789 yes '' | tazwok cook $WANTED
pascal@98 790 fi
pascal@96 791 yes '' | tazwok cook $PACKAGE
pascal@95 792 fi
pankso@65 793 done
pankso@66 794 for pkg in `cd $PACKAGES_REPOSITORY && ls *.tazpkg`
pankso@66 795 do
pascal@95 796 # grep $pkg in /tmp/wok.list.$$
pascal@90 797 # may include EXTRAVERSION or computed VERSION
pascal@95 798 for i in $(grep ^${pkg%-*} /tmp/wok.list.$$); do
pascal@74 799 case "$pkg" in
pascal@75 800 ${i%.tazpkg}*.tazpkg) continue 2;;
pascal@74 801 esac
pascal@74 802 done
MikeDSmith25@82 803 # Not found
pascal@95 804 echo $pkg >> /tmp/pkgs.old.$$
pascal@74 805 if [ "$2" = "--remove" ]; then
pascal@74 806 echo "Removing package: $pkg"
pascal@74 807 rm $PACKAGES_REPOSITORY/$pkg
pascal@74 808 else
pascal@74 809 echo "Old package: $pkg"
pascal@74 810 fi
pankso@66 811 done
pankso@66 812 cd /tmp
pankso@65 813 echo "================================================================================"
pascal@95 814 echo "Wok: `cat wok.list.$$ | wc -l` - \
pankso@66 815 Cooked: `ls -1 $PACKAGES_REPOSITORY/*.tazpkg 2>/dev/null | wc -l` - \
pascal@95 816 Missing: `cat pkgs.missing.$$ 2>/dev/null | wc -l` - \
pascal@95 817 Old: `cat pkgs.old.$$ 2>/dev/null | wc -l`"
pankso@65 818 echo ""
pascal@95 819 rm -f wok.list.$$ pkgs.old.$$ pkgs.missing.$$
pankso@65 820 ;;
pankso@7 821 list)
pankso@7 822 # List packages in wok directory. User can specifiy a category
pankso@7 823 #
pankso@7 824 if [ "$2" = "category" ]; then
pankso@7 825 echo -e "\033[1m\nPackages categories :\033[0m $CATEGORIES\n"
pankso@7 826 exit 0
pankso@7 827 fi
pankso@7 828 # Check for an asked category.
pankso@7 829 if [ -n "$2" ]; then
pankso@7 830 ASKED_CATEGORY=$2
pankso@7 831 echo ""
pankso@7 832 echo -e "\033[1mPackages in category :\033[0m $ASKED_CATEGORY"
pankso@7 833 echo "================================================================================"
pankso@7 834 for pkg in $WOK/*
pankso@7 835 do
pankso@7 836 . $pkg/receipt
pankso@7 837 if [ "$CATEGORY" == "$ASKED_CATEGORY" ]; then
pankso@7 838 echo -n "$PACKAGE"
pankso@28 839 echo -e "\033[28G $VERSION"
pankso@7 840 packages=$(($packages+1))
pankso@7 841 fi
pankso@7 842 done
pankso@7 843 echo "================================================================================"
pankso@7 844 echo -e "$packages packages in category $ASKED_CATEGORY.\n"
pankso@7 845 else
pankso@7 846 # By default list all packages and version.
pankso@7 847 echo ""
pankso@7 848 echo -e "\033[1mList of packages in the wok\033[0m"
pankso@7 849 echo "================================================================================"
pankso@7 850 for pkg in $WOK/*
pankso@7 851 do
pankso@7 852 . $pkg/receipt
pankso@7 853 echo -n "$PACKAGE"
pankso@28 854 echo -en "\033[28G $VERSION"
pankso@7 855 echo -e "\033[42G $CATEGORY"
pankso@7 856 packages=$(($packages+1))
pankso@7 857 done
pankso@7 858 echo "================================================================================"
MikeDSmith25@82 859 echo -e "$packages packages available in the wok.\n"
pankso@7 860 fi
pankso@7 861 ;;
pankso@7 862 info)
MikeDSmith25@82 863 # Information about a package.
pankso@7 864 #
pankso@7 865 check_for_package_on_cmdline
pankso@7 866 check_for_receipt
pankso@7 867 . $WOK/$PACKAGE/receipt
pankso@7 868 echo ""
MikeDSmith25@82 869 echo -e "\033[1mTazwok package information\033[0m
pankso@7 870 ================================================================================
pankso@7 871 Package : $PACKAGE
pankso@7 872 Version : $VERSION
pankso@7 873 Category : $CATEGORY
pankso@7 874 Short desc : $SHORT_DESC
pankso@7 875 Maintainer : $MAINTAINER"
pankso@7 876 if [ ! "$WEB_SITE" = "" ]; then
pankso@7 877 echo "Web site : $WEB_SITE"
pankso@7 878 fi
pankso@7 879 if [ ! "$DEPENDS" = "" ]; then
pankso@7 880 echo "Depends : $DEPENDS"
pankso@7 881 fi
pankso@7 882 if [ ! "$WANTED" = "" ]; then
pankso@7 883 echo "Wanted src : $WANTED"
pankso@7 884 fi
pankso@7 885 echo "================================================================================"
pankso@7 886 echo ""
pankso@7 887
pankso@7 888 ;;
pankso@7 889 check-log)
pankso@7 890 # We just cat the file log to view process info.
pankso@7 891 #
pankso@7 892 if [ ! -f "$LOG" ]; then
MikeDSmith25@82 893 echo -e "\nNo process log found. The package is probably not cooked.\n"
pankso@7 894 exit 0
pankso@7 895 else
pankso@7 896 echo ""
pankso@7 897 echo -e "\033[1mPackage process log for :\033[0m $PACKAGE"
pankso@7 898 echo "================================================================================"
pankso@7 899 cat $LOG
pankso@7 900 echo "================================================================================"
pankso@7 901 echo ""
pankso@7 902 fi
pankso@7 903 ;;
pankso@7 904 search)
pankso@7 905 # Search for a package by pattern or name.
pankso@7 906 #
pankso@7 907 if [ -z "$2" ]; then
pankso@7 908 echo -e "\nPlease specify a pattern or a package name to search."
pankso@7 909 echo -e "Example : 'tazwok search gcc'.\n"
pankso@7 910 exit 0
pankso@7 911 fi
pankso@7 912 echo ""
pankso@7 913 echo -e "\033[1mSearch result for :\033[0m $2"
pankso@7 914 echo "================================================================================"
pankso@7 915 list=`ls -1 $WOK | grep $2`
pankso@7 916 for pkg in $list
pankso@7 917 do
pankso@7 918 . $WOK/$pkg/receipt
pankso@7 919 echo -n "$PACKAGE "
pankso@7 920 echo -en "\033[24G $VERSION"
pankso@7 921 echo -e "\033[42G $CATEGORY"
pankso@7 922 packages=$(($packages+1))
pankso@7 923 done
pankso@7 924 echo "================================================================================"
pankso@7 925 echo "$packages packages found for : $2"
pankso@7 926 echo ""
pankso@7 927 ;;
pankso@7 928 compile)
pankso@7 929 # Configure and make a package with the receipt.
pankso@7 930 #
pankso@7 931 compile_package
pankso@7 932 ;;
pankso@7 933 genpkg)
pankso@7 934 # Generate a package
pankso@7 935 #
pankso@7 936 gen_package
pankso@7 937 ;;
pankso@7 938 cook)
pankso@7 939 # Compile and generate a package. Just execute tazwok with
pankso@7 940 # the good commands.
pankso@7 941 #
pankso@7 942 check_root
pankso@7 943 compile_package
pankso@7 944 gen_package
pankso@7 945 ;;
pankso@7 946 cook-list)
pankso@7 947 # Cook all packages listed in a file. The path to the cooklist must
pankso@7 948 # be specified on the cmdline.
pankso@7 949 #
pankso@7 950 check_root
pankso@7 951 check_for_list
pankso@7 952 for pkg in $LIST
pankso@7 953 do
pankso@7 954 tazwok compile $pkg
pankso@7 955 tazwok genpkg $pkg
pankso@7 956 done
pankso@7 957 ;;
pankso@7 958 clean)
pankso@7 959 # Clean up a package work directory.
pankso@7 960 #
pankso@7 961 check_for_package_on_cmdline
pankso@7 962 check_for_receipt
pankso@7 963 . $RECEIPT
pankso@7 964 cd $WOK/$PACKAGE
pankso@7 965 echo ""
pankso@7 966 echo "Cleaning $PACKAGE..."
pankso@7 967 echo "================================================================================"
pankso@28 968 # Check for clean_wok function.
pankso@28 969 if grep -q ^clean_wok $RECEIPT; then
pankso@28 970 clean_wok
pankso@28 971 fi
MikeDSmith25@82 972 # Remove taz/ and source tree if exists.
pankso@7 973 if [ -d "taz" ]; then
pankso@7 974 echo -n "Removing taz files..."
pascal@95 975 rm -rf taz
pascal@95 976 status
pankso@7 977 fi
pascal@95 978 for i in $PACKAGE-$VERSION $SOURCE-$VERSION ; do
pascal@95 979 [ -e "$i" ] || continue
pankso@7 980 echo -n "Removing source files..."
pascal@95 981 if [ -L $i ]; then
pascal@95 982 target=$(readlink $i)
pascal@95 983 [ -d "$target" ] && case "$target" in
pascal@95 984 /*|.|./*|..|../*);;
pascal@95 985 *) rm -rf $target;;
pascal@95 986 esac
pascal@95 987 fi
pascal@95 988 rm -rf $i
pascal@95 989 status
pascal@95 990 done
pankso@7 991 # Remove an envental $PACKAGE-build directory.
pankso@7 992 if [ -d "$PACKAGE-build" ]; then
pankso@7 993 echo -n "Removing build tree..."
pankso@7 994 rm -rf $PACKAGE-build && status
pankso@7 995 fi
pankso@7 996 # Remove process log file.
pankso@7 997 if [ -f "process.log" ]; then
pankso@7 998 echo -n "Removing process log file..."
pankso@7 999 rm process.log && status
pankso@28 1000 echo "================================================================================"
pankso@7 1001 fi
pankso@7 1002 echo "$PACKAGE is clean. You can cook it again..."
pankso@7 1003 echo ""
pankso@7 1004 ;;
pankso@7 1005 gen-clean-wok)
pankso@7 1006 # Generate a clean wok from the current wok by copying all receipt
pankso@7 1007 # and stuff directory.
pankso@7 1008 #
pankso@7 1009 if [ -z "$2" ]; then
pankso@7 1010 echo -e "\nPlease specify the destination for the new clean wok.\n"
pankso@7 1011 exit 0
pankso@7 1012 else
pankso@7 1013 dest=$2
pankso@7 1014 mkdir -p $dest
pankso@7 1015 fi
pankso@7 1016 echo "New wok is going to : $dest"
pankso@7 1017 for pkg in `ls -1 $WOK`
pankso@7 1018 do
pankso@7 1019 echo "----"
pankso@7 1020 echo -n "Preparing $pkg..."
pankso@7 1021 mkdir -p $dest/$pkg
pankso@7 1022 status
pankso@7 1023 echo -n "Copying the receipt..."
pankso@7 1024 cp -a $WOK/$pkg/receipt $dest/$pkg
pankso@7 1025 status
pankso@7 1026 if [ -d "$WOK/$pkg/stuff" ]; then
pankso@7 1027 echo -n "Copying all the stuff directory..."
pankso@7 1028 cp -a $WOK/$pkg/stuff $dest/$pkg
pankso@7 1029 status
pankso@7 1030 fi
pankso@7 1031 done
pankso@7 1032 echo "================================================================================"
pankso@7 1033 echo "Clean wok generated in : $dest"
pankso@7 1034 echo "Packages cleaned : `ls -1 $dest | wc -l`"
pankso@7 1035 echo ""
pankso@7 1036 ;;
pankso@7 1037 clean-wok)
pankso@7 1038 # Clean all packages in the work directory
pankso@7 1039 #
pankso@7 1040 for pkg in `ls -1 $WOK`
pankso@7 1041 do
pankso@7 1042 tazwok clean $pkg
pankso@7 1043 done
pankso@7 1044 echo "================================================================================"
pankso@7 1045 echo "`ls -1 $WOK | wc -l` packages cleaned."
pankso@7 1046 echo ""
pankso@7 1047 ;;
pankso@7 1048 gen-list)
pankso@7 1049 # Sed is used to remove all the .tazpkg extensions from the
pankso@7 1050 # packages.list. The directory to move in by default is the repository
pankso@28 1051 # if $2 is not empty cd into $2. A text packages list can also be gen
pankso@28 1052 # with the option --text.
pankso@7 1053 #
pascal@104 1054 fakewok="no"
pankso@28 1055 if [ "$2" == "--text" ]; then
pankso@28 1056 textlist="yes"
pascal@104 1057 if [ "$3" == "--fakewok" ]; then
pascal@104 1058 fakewok="yes"
pascal@104 1059 WOK=/tmp/fakewok-$$
pascal@104 1060 mkdir -p $WOK
pascal@104 1061 PACKAGES_REPOSITORY=$(pwd)
pascal@104 1062 for i in *.tazpkg; do
pascal@104 1063 (cd $WOK; cpio -i receipt files.list) < $i
pascal@104 1064 . $WOK/receipt
pascal@104 1065 mkdir -p $WOK/$PACKAGE/taz/$PACKAGE-$VERSION
pascal@104 1066 mv $WOK/receipt $WOK/files.list \
pascal@104 1067 $WOK/$PACKAGE/taz/$PACKAGE-$VERSION
pascal@104 1068 ln $WOK/$PACKAGE/taz/$PACKAGE-$VERSION/receipt $WOK/$PACKAGE
pascal@104 1069 done
pascal@104 1070 fi
pankso@28 1071 elif [ -z "$2" ]; then
pankso@7 1072 PACKAGES_REPOSITORY=$PACKAGES_REPOSITORY
pankso@7 1073 else
pankso@7 1074 if [ -d "$2" ]; then
pankso@7 1075 PACKAGES_REPOSITORY=$2
pankso@7 1076 else
pankso@7 1077 echo -e "\nUnable to find directory : $2\n"
pankso@7 1078 exit 0
pankso@7 1079 fi
pankso@7 1080 fi
pankso@7 1081 cd $PACKAGES_REPOSITORY
MikeDSmith25@82 1082 # Remove old packages.list and md5sum, they will soon be rebuilt.
pankso@28 1083 rm -f packages.list packages.md5 packages.txt
pankso@7 1084 echo ""
pankso@28 1085 echo -e "\033[1mGenerating packages lists\033[0m"
pankso@28 1086 echo "================================================================================"
pankso@28 1087 echo -n "Repository path : $PACKAGES_REPOSITORY" && status
MikeDSmith25@82 1088 # Generate packages.txt
pankso@28 1089 if [ "$textlist" == "yes" ]; then
pankso@28 1090 gen_textlist
pascal@104 1091 [ "$fakewok" == "yes" ] && rm -rf $WOK
pankso@28 1092 fi
pankso@28 1093 echo -n "Creating the raw packages list... "
pankso@17 1094 ls -1 *.tazpkg > /tmp/packages.list
pankso@7 1095 sed -i s/'.tazpkg'/''/ /tmp/packages.list
pankso@7 1096 status
pankso@7 1097 echo -n "Building the md5sum for all packages... "
pankso@7 1098 md5sum * > packages.md5
pankso@7 1099 status
pankso@7 1100 mv /tmp/packages.list $PACKAGES_REPOSITORY
pankso@7 1101 echo "================================================================================"
pankso@7 1102 pkgs=`cat $PACKAGES_REPOSITORY/packages.list | wc -l`
pankso@7 1103 echo "$pkgs packages in the repository."
pankso@7 1104 echo ""
pankso@7 1105 ;;
pankso@7 1106 new-tree)
MikeDSmith25@82 1107 # Just create a few directories and generate an empty receipt to prepare
pankso@7 1108 # the creation of a new package.
pankso@7 1109 #
pankso@7 1110 check_for_package_on_cmdline
pankso@7 1111 if [ -d $WOK/$PACKAGE ]; then
MikeDSmith25@82 1112 echo -e "\n$PACKAGE package tree already exists.\n"
pankso@7 1113 exit 0
pankso@7 1114 fi
pankso@7 1115 echo "Creating : $WOK/$PACKAGE"
pankso@7 1116 mkdir $WOK/$PACKAGE
pankso@7 1117 cd $WOK/$PACKAGE
pankso@7 1118 echo -n "Preparing the receipt..."
pankso@7 1119 #
pankso@7 1120 # Default receipt begin.
pankso@7 1121 #
pankso@7 1122 echo "# SliTaz package receipt." > receipt
pankso@7 1123 echo "" >> receipt
pankso@7 1124 echo "PACKAGE=\"$PACKAGE\"" >> receipt
pankso@7 1125 # Finish the empty receipt.
pankso@7 1126 cat >> receipt << "EOF"
pankso@7 1127 VERSION=""
pankso@7 1128 CATEGORY=""
pankso@7 1129 SHORT_DESC=""
pankso@7 1130 MAINTAINER=""
pankso@7 1131 DEPENDS=""
pankso@7 1132 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@7 1133 WEB_SITE=""
pankso@7 1134 WGET_URL=""
pankso@7 1135
pankso@7 1136 # Rules to configure and make the package.
pankso@7 1137 compile_rules()
pankso@7 1138 {
pankso@7 1139 cd $src
pankso@7 1140 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@87 1141 --mandir=/usr/share/man $CONFIGURE_ARGS && \
pascal@87 1142 make && make DESTDIR=$PWD/_pkg install
pankso@7 1143 }
pankso@7 1144
pankso@7 1145 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@7 1146 genpkg_rules()
pankso@7 1147 {
pankso@7 1148 mkdir -p $fs/usr
pankso@7 1149 cp -a $_pkg/usr/bin $fs/usr
pankso@7 1150 }
pankso@7 1151
pankso@7 1152 EOF
pankso@7 1153 #
pankso@7 1154 # Default receipt end.
pankso@7 1155 #
pankso@7 1156 status
pankso@7 1157 # Interactive mode, asking and seding.
pankso@7 1158 if [ "$3" = "--interactive" ]; then
pankso@7 1159 echo "Entering in interactive mode..."
pankso@7 1160 echo "================================================================================"
pankso@7 1161 echo "Package : $PACKAGE"
pankso@7 1162 # Version.
pankso@7 1163 echo -n "Version : " ; read anser
pankso@7 1164 sed -i s/'VERSION=\"\"'/"VERSION=\"$anser\""/ receipt
pankso@7 1165 # Category.
pankso@7 1166 echo -n "Category : " ; read anser
pankso@7 1167 sed -i s/'CATEGORY=\"\"'/"CATEGORY=\"$anser\""/ receipt
pankso@7 1168 # Short description.
pankso@7 1169 echo -n "Short desc : " ; read anser
pankso@7 1170 sed -i s/'SHORT_DESC=\"\"'/"SHORT_DESC=\"$anser\""/ receipt
pankso@7 1171 # Maintainer.
pankso@7 1172 echo -n "Maintainer : " ; read anser
pankso@7 1173 sed -i s/'MAINTAINER=\"\"'/"MAINTAINER=\"$anser\""/ receipt
pankso@7 1174 # Web site.
pankso@7 1175 echo -n "Web site : " ; read anser
pankso@7 1176 sed -i s#'WEB_SITE=\"\"'#"WEB_SITE=\"$anser\""# receipt
pankso@7 1177 echo ""
pankso@7 1178 # Wget URL.
pankso@7 1179 echo "Wget URL to download source tarball."
pankso@7 1180 echo "Example : \$GNU_MIRROR/\$PACKAGE/\$TARBALL"
pankso@7 1181 echo -n "Wget url : " ; read anser
pankso@7 1182 sed -i s#'WGET_URL=\"\"'#"WGET_URL=\"$anser\""# receipt
pankso@7 1183 # Ask for a stuff dir.
pankso@7 1184 echo -n "Do you need a stuff directory ? (y/N) : " ; read anser
pankso@7 1185 if [ "$anser" = "y" ]; then
pankso@7 1186 echo -n "Creating the stuff directory..."
pankso@7 1187 mkdir stuff && status
pankso@7 1188 fi
pankso@7 1189 # Ask for a description file.
pankso@7 1190 echo -n "Are you going to write a description ? (y/N) : " ; read anser
pankso@7 1191 if [ "$anser" = "y" ]; then
pankso@7 1192 echo -n "Creating the description.txt file..."
pankso@7 1193 echo "" > description.txt && status
pankso@7 1194 fi
pankso@7 1195 echo "================================================================================"
pankso@7 1196 echo ""
pankso@7 1197 fi
pankso@7 1198 ;;
pankso@7 1199 remove)
pankso@7 1200 # Remove a package from the wok.
pankso@7 1201 #
pankso@7 1202 check_for_package_on_cmdline
pankso@7 1203 echo ""
pascal@83 1204 echo -n "Please confirm deletion (y/N) : "; read anser
pascal@83 1205 if [ "$anser" = "y" ]; then
pascal@83 1206 echo -n "Removing $PACKAGE..."
pascal@83 1207 rm -rf $WOK/$PACKAGE && status
pascal@83 1208 echo ""
pascal@83 1209 fi
pankso@7 1210 ;;
pankso@106 1211 hgup)
pankso@106 1212 # Pull and update an Hg wok.
pankso@106 1213 if ls -l $WOK/.hg/hgrc | grep -q "root"; then
pankso@106 1214 check_root
pankso@106 1215 fi
pankso@106 1216 cd $WOK
pankso@106 1217 hg pull && hg update ;;
pankso@107 1218 maintained-by)
pankso@107 1219 # Search for packages maintained by a packagers.
pankso@107 1220 if [ ! -n "$2" ]; then
pankso@107 1221 echo "Specify a name or mail of a maintainer."
pankso@107 1222 exit 0
pankso@107 1223 fi
pankso@107 1224 echo "Maintainer packages"
pankso@107 1225 echo "================================================================================"
pankso@107 1226 for pkg in $WOK/*
pankso@107 1227 do
pankso@107 1228 . $pkg/receipt
pankso@107 1229 if echo "$MAINTAINER" | grep -q "$2"; then
pankso@107 1230 echo "$PACKAGE"
pankso@107 1231 packages=$(($packages+1))
pankso@107 1232 fi
pankso@107 1233 done
pankso@107 1234 echo "================================================================================"
pankso@107 1235 echo "Packages maintained by $1: $packages"
pankso@107 1236 echo "" ;;
pankso@7 1237 usage|*)
MikeDSmith25@82 1238 # Print usage also for all unknown commands.
pankso@7 1239 #
pankso@7 1240 usage
pankso@7 1241 ;;
pankso@7 1242 esac
pankso@7 1243
pankso@7 1244 exit 0