cookutils diff cooker @ rev 1064

modules/compressor: compress (optimize) GIF images using gifsicle
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jun 06 00:00:22 2018 +0300 (2018-06-06)
parents 54c97f545127
children 77291d41f21a
line diff
     1.1 --- a/cooker	Thu Feb 22 15:44:11 2018 +0200
     1.2 +++ b/cooker	Wed Jun 06 00:00:22 2018 +0300
     1.3 @@ -45,6 +45,7 @@
     1.4    -T  | tasks                  List existing cooker tasks.
     1.5    -t  | task    <task>         Executing specified task.
     1.6    -o  | outgoing               Find changes in wok that we can move to wok-hg.
     1.7 +        autodeps               Find dependencies for all packages in wok.
     1.8  
     1.9  EOT
    1.10  	exit 0
    1.11 @@ -581,6 +582,14 @@
    1.12  		compare_wok
    1.13  		;;
    1.14  
    1.15 +	autodeps)
    1.16 +		# Find dependencies for all packages in wok
    1.17 +		cd $WOK
    1.18 +		for pkg in *; do
    1.19 +			cook $pkg --deps --quiet
    1.20 +		done | tee $cache/autodeps
    1.21 +		;;
    1.22 +
    1.23  	*)
    1.24  		# Default is to cook all commits if not yet running.
    1.25  		[ -n "$1" ] && usage