# HG changeset patch # User Antoine Bodin # Date 1298059036 -3600 # Node ID 73a3ced9a677c956018f82517aa290b770eb8cb8 # Parent 50ec3e86e019b6e8a7891ff0f509b43e659cd78a Up: libtaz 0.0.7, tazchroot 0.0.7.1, tazwok-experimental 0.0.7 diff -r 50ec3e86e019 -r 73a3ced9a677 libtaz/receipt --- a/libtaz/receipt Fri Feb 18 19:05:02 2011 +0100 +++ b/libtaz/receipt Fri Feb 18 20:57:16 2011 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libtaz" -VERSION="0.0.6.1" +VERSION="0.0.7" CATEGORY="base-system" SHORT_DESC="Slitaz generic library." MAINTAINER="gokhlayeh@slitaz.org" diff -r 50ec3e86e019 -r 73a3ced9a677 tazchroot/receipt --- a/tazchroot/receipt Fri Feb 18 19:05:02 2011 +0100 +++ b/tazchroot/receipt Fri Feb 18 20:57:16 2011 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="tazchroot" -VERSION="0.0.6" +VERSION="0.0.7.1" CATEGORY="base-system" SHORT_DESC="Slitaz tool to manage chroot" MAINTAINER="gokhlayeh@slitaz.org" @@ -18,9 +18,9 @@ genpkg_rules() { mkdir -p $fs/usr/bin $fs/etc/slitaz \ - $fs/var/lib/tazchroot + $fs/usr/lib/slitaz/chroot-scripts cp -a $src/tazchroot $fs/usr/bin chmod 755 $fs/usr/bin/tazchroot cp -a $src/tazchroot.conf $fs/etc/slitaz - cp -a $src/scripts/* $fs/var/lib/tazchroot + cp -a $src/tazchroot-scripts $fs/usr/lib/slitaz/chroot-scripts/tazchroot } diff -r 50ec3e86e019 -r 73a3ced9a677 tazwok-experimental/receipt --- a/tazwok-experimental/receipt Fri Feb 18 19:05:02 2011 +0100 +++ b/tazwok-experimental/receipt Fri Feb 18 20:57:16 2011 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="tazwok-experimental" -VERSION="0.0.6.6" +VERSION="0.0.7" CATEGORY="base-system" SHORT_DESC="SliTaz sources and binaries packages cooker." MAINTAINER="gokhlayeh@slitaz.org" @@ -21,7 +21,8 @@ genpkg_rules() { mkdir -p $fs/usr/bin $fs/usr/share/doc/tazwok \ - $fs/etc/slitaz $fs/usr/share/slitaz/web-bb + $fs/etc/slitaz $fs/usr/share/slitaz/web-bb \ + $fs/usr/lib/slitaz/chroot-scripts # Copy Tazwok, doc and examples. cp -a $src/tazwok $fs/usr/bin cp -a $src/update-repository $fs/usr/bin @@ -33,14 +34,17 @@ cp -a $src/examples/config.site $fs/etc # Webserver stuff cp -a $src/web/* $fs/usr/share/slitaz/web-bb + # Chroot scripts + cp -a $src/chroot-scripts $fs/usr/lib/slitaz/chroot-scripts/tazwok } post_install() { echo -e "\\033[1;31mWARNING WARNING WARGNING -You should run update-repository on all repositories you used with -tazwok-experimental until there.This script change sources names, generate sources.list and modify -logs to make you're repository consistent with last changes. +You should run update-repository on all repositories you used with \ +tazwok-experimental until there.This script change sources names, \ +generate sources.list and modify logs to make you're repository \ +consistent with last changes. Usage is: update-repository LOCAL_REPOSITORY @@ -48,5 +52,21 @@ Exemple: update-repository /home/slitaz/experimental -Sorry for this ;)\\033[0m" +You should also update you're tazchroot.conf as some path has changed. +To do that use: + +tazwok configure-chroot + +You should also update you're tazwok.conf (global and local) if you \ +to use update-wok function. + +To find locals tazwok.conf: +echo $SLITAZ_DIR/*/tazwok.conf + +Add theses variables to the configuration file (change pathes if needed): +WOK_UPDATE_METHOD=\"hg\" +TARBALL_WOK=\"http://hg.slitaz.org/wok/archive/tip.tar.bz2\" +HG_WOK=\"http://hg.slitaz.org/wok\" + +Sorry for this ;)\\033[0m" | fold -s }