wok rev 8724
Up: libtaz 0.0.7, tazchroot 0.0.7.1, tazwok-experimental 0.0.7
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Fri Feb 18 20:57:16 2011 +0100 (2011-02-18) |
parents | 50ec3e86e019 |
children | bab72c1080b0 |
files | libtaz/receipt tazchroot/receipt tazwok-experimental/receipt |
line diff
1.1 --- a/libtaz/receipt Fri Feb 18 19:05:02 2011 +0100 1.2 +++ b/libtaz/receipt Fri Feb 18 20:57:16 2011 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libtaz" 1.7 -VERSION="0.0.6.1" 1.8 +VERSION="0.0.7" 1.9 CATEGORY="base-system" 1.10 SHORT_DESC="Slitaz generic library." 1.11 MAINTAINER="gokhlayeh@slitaz.org"
2.1 --- a/tazchroot/receipt Fri Feb 18 19:05:02 2011 +0100 2.2 +++ b/tazchroot/receipt Fri Feb 18 20:57:16 2011 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="tazchroot" 2.7 -VERSION="0.0.6" 2.8 +VERSION="0.0.7.1" 2.9 CATEGORY="base-system" 2.10 SHORT_DESC="Slitaz tool to manage chroot" 2.11 MAINTAINER="gokhlayeh@slitaz.org" 2.12 @@ -18,9 +18,9 @@ 2.13 genpkg_rules() 2.14 { 2.15 mkdir -p $fs/usr/bin $fs/etc/slitaz \ 2.16 - $fs/var/lib/tazchroot 2.17 + $fs/usr/lib/slitaz/chroot-scripts 2.18 cp -a $src/tazchroot $fs/usr/bin 2.19 chmod 755 $fs/usr/bin/tazchroot 2.20 cp -a $src/tazchroot.conf $fs/etc/slitaz 2.21 - cp -a $src/scripts/* $fs/var/lib/tazchroot 2.22 + cp -a $src/tazchroot-scripts $fs/usr/lib/slitaz/chroot-scripts/tazchroot 2.23 }
3.1 --- a/tazwok-experimental/receipt Fri Feb 18 19:05:02 2011 +0100 3.2 +++ b/tazwok-experimental/receipt Fri Feb 18 20:57:16 2011 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="tazwok-experimental" 3.7 -VERSION="0.0.6.6" 3.8 +VERSION="0.0.7" 3.9 CATEGORY="base-system" 3.10 SHORT_DESC="SliTaz sources and binaries packages cooker." 3.11 MAINTAINER="gokhlayeh@slitaz.org" 3.12 @@ -21,7 +21,8 @@ 3.13 genpkg_rules() 3.14 { 3.15 mkdir -p $fs/usr/bin $fs/usr/share/doc/tazwok \ 3.16 - $fs/etc/slitaz $fs/usr/share/slitaz/web-bb 3.17 + $fs/etc/slitaz $fs/usr/share/slitaz/web-bb \ 3.18 + $fs/usr/lib/slitaz/chroot-scripts 3.19 # Copy Tazwok, doc and examples. 3.20 cp -a $src/tazwok $fs/usr/bin 3.21 cp -a $src/update-repository $fs/usr/bin 3.22 @@ -33,14 +34,17 @@ 3.23 cp -a $src/examples/config.site $fs/etc 3.24 # Webserver stuff 3.25 cp -a $src/web/* $fs/usr/share/slitaz/web-bb 3.26 + # Chroot scripts 3.27 + cp -a $src/chroot-scripts $fs/usr/lib/slitaz/chroot-scripts/tazwok 3.28 } 3.29 3.30 post_install() 3.31 { 3.32 echo -e "\\033[1;31mWARNING WARNING WARGNING 3.33 -You should run update-repository on all repositories you used with 3.34 -tazwok-experimental until there.This script change sources names, generate sources.list and modify 3.35 -logs to make you're repository consistent with last changes. 3.36 +You should run update-repository on all repositories you used with \ 3.37 +tazwok-experimental until there.This script change sources names, \ 3.38 +generate sources.list and modify logs to make you're repository \ 3.39 +consistent with last changes. 3.40 3.41 Usage is: 3.42 update-repository LOCAL_REPOSITORY 3.43 @@ -48,5 +52,21 @@ 3.44 Exemple: 3.45 update-repository /home/slitaz/experimental 3.46 3.47 -Sorry for this ;)\\033[0m" 3.48 +You should also update you're tazchroot.conf as some path has changed. 3.49 +To do that use: 3.50 + 3.51 +tazwok configure-chroot 3.52 + 3.53 +You should also update you're tazwok.conf (global and local) if you \ 3.54 +to use update-wok function. 3.55 + 3.56 +To find locals tazwok.conf: 3.57 +echo $SLITAZ_DIR/*/tazwok.conf 3.58 + 3.59 +Add theses variables to the configuration file (change pathes if needed): 3.60 +WOK_UPDATE_METHOD=\"hg\" 3.61 +TARBALL_WOK=\"http://hg.slitaz.org/wok/archive/tip.tar.bz2\" 3.62 +HG_WOK=\"http://hg.slitaz.org/wok\" 3.63 + 3.64 +Sorry for this ;)\\033[0m" | fold -s 3.65 }