tazwok annotate tazwok @ rev 86

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