# HG changeset patch # User Antoine Bodin # Date 1296594573 -3600 # Node ID 4249e7ca9034f2f357e44c9d58fc29308a036ef8 # Parent 01f6ebdb7ff30613e32fcf1b84d8f60852918c4c tazdev: add experimental diff -r 01f6ebdb7ff3 -r 4249e7ca9034 slitaz-dev-tools/receipt --- a/slitaz-dev-tools/receipt Tue Feb 01 21:14:39 2011 +0100 +++ b/slitaz-dev-tools/receipt Tue Feb 01 22:09:33 2011 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt PACKAGE="slitaz-dev-tools" -VERSION="1.2" +VERSION="1.2.1" CATEGORY="development" SHORT_DESC="SliTaz developers and build host tools." MAINTAINER="pankso@slitaz.org" diff -r 01f6ebdb7ff3 -r 4249e7ca9034 slitaz-dev-tools/stuff/tazdev --- a/slitaz-dev-tools/stuff/tazdev Tue Feb 01 21:14:39 2011 +0100 +++ b/slitaz-dev-tools/stuff/tazdev Tue Feb 01 22:09:33 2011 +0100 @@ -20,7 +20,7 @@ usage() { echo -e "\nSliTaz developers and build host tool\n -\033[1mUsage: \033[0m `basename $0` [command] [user] [stable|cooking|path] +\033[1mUsage: \033[0m `basename $0` [command] [user] [stable|cooking|experimental|path] \033[1mCommands: \033[0m\n usage Print this short usage and command list. projects-stats Display statistics about your projects (-ps). @@ -89,6 +89,9 @@ if [ "$2" = "stable" ] || [ "$3" = "stable" ]; then REMOTE_DIR=$MIRROR_PKGS/stable/ LOCAL_DIR=$STABLE/packages/ + elif [ "$2" = "experimental" ] || [ "$3" = "experimental" ]; then + REMOTE_DIR=$MIRROR_PKGS/experimental/ + LOCAL_DIR=$EXPERIMENTAL/packages/ else REMOTE_DIR=$MIRROR_PKGS/cooking/ LOCAL_DIR=$COOKING/packages/ diff -r 01f6ebdb7ff3 -r 4249e7ca9034 slitaz-dev-tools/stuff/tazdev.conf --- a/slitaz-dev-tools/stuff/tazdev.conf Tue Feb 01 21:14:39 2011 +0100 +++ b/slitaz-dev-tools/stuff/tazdev.conf Tue Feb 01 22:09:33 2011 +0100 @@ -7,6 +7,7 @@ # Path for the wok, chroot and packages directory of each version. COOKING="/home/slitaz/cooking" STABLE="/home/slitaz/stable" +EXPERIMETAL="/home/slitaz/experimental" # Path to the Website repo. WEBSITE="/home/slitaz/www/website"