wok rev 8323

tazdev: add experimental
author Antoine Bodin <gokhlayeh@slitaz.org>
date Tue Feb 01 22:09:33 2011 +0100 (2011-02-01)
parents 01f6ebdb7ff3
children 19f0c67942cb
files slitaz-dev-tools/receipt slitaz-dev-tools/stuff/tazdev slitaz-dev-tools/stuff/tazdev.conf
line diff
     1.1 --- a/slitaz-dev-tools/receipt	Tue Feb 01 21:14:39 2011 +0100
     1.2 +++ b/slitaz-dev-tools/receipt	Tue Feb 01 22:09:33 2011 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt
     1.5  
     1.6  PACKAGE="slitaz-dev-tools"
     1.7 -VERSION="1.2"
     1.8 +VERSION="1.2.1"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="SliTaz developers and build host tools."
    1.11  MAINTAINER="pankso@slitaz.org"
     2.1 --- a/slitaz-dev-tools/stuff/tazdev	Tue Feb 01 21:14:39 2011 +0100
     2.2 +++ b/slitaz-dev-tools/stuff/tazdev	Tue Feb 01 22:09:33 2011 +0100
     2.3 @@ -20,7 +20,7 @@
     2.4  usage()
     2.5  {
     2.6  	echo -e "\nSliTaz developers and build host tool\n
     2.7 -\033[1mUsage: \033[0m `basename $0` [command] [user] [stable|cooking|path]
     2.8 +\033[1mUsage: \033[0m `basename $0` [command] [user] [stable|cooking|experimental|path]
     2.9  \033[1mCommands: \033[0m\n
    2.10   usage          Print this short usage and command list.
    2.11   projects-stats Display statistics about your projects (-ps).
    2.12 @@ -89,6 +89,9 @@
    2.13  	if [ "$2" = "stable" ] || [ "$3" = "stable" ]; then
    2.14  		REMOTE_DIR=$MIRROR_PKGS/stable/
    2.15  		LOCAL_DIR=$STABLE/packages/
    2.16 +	elif [ "$2" = "experimental" ] || [ "$3" = "experimental" ]; then
    2.17 +		REMOTE_DIR=$MIRROR_PKGS/experimental/
    2.18 +		LOCAL_DIR=$EXPERIMENTAL/packages/
    2.19  	else
    2.20  		REMOTE_DIR=$MIRROR_PKGS/cooking/
    2.21  		LOCAL_DIR=$COOKING/packages/
     3.1 --- a/slitaz-dev-tools/stuff/tazdev.conf	Tue Feb 01 21:14:39 2011 +0100
     3.2 +++ b/slitaz-dev-tools/stuff/tazdev.conf	Tue Feb 01 22:09:33 2011 +0100
     3.3 @@ -7,6 +7,7 @@
     3.4  # Path for the wok, chroot and packages directory of each version.
     3.5  COOKING="/home/slitaz/cooking"
     3.6  STABLE="/home/slitaz/stable"
     3.7 +EXPERIMETAL="/home/slitaz/experimental"
     3.8  
     3.9  # Path to the Website repo.
    3.10  WEBSITE="/home/slitaz/www/website"