Author: glen Date: Sun Jun 28 17:13:58 2009 GMT Module: packages Tag: HEAD ---- Log message: - add branch diff generator
---- Files affected: packages/php: php-branch.sh (NONE -> 1.1) (NEW) ---- Diffs: ================================================================ Index: packages/php/php-branch.sh diff -u /dev/null packages/php/php-branch.sh:1.1 --- /dev/null Sun Jun 28 19:13:58 2009 +++ packages/php/php-branch.sh Sun Jun 28 19:13:53 2009 @@ -0,0 +1,15 @@ +#!/bin/sh +tag=php_5_2_10 +branch=PHP_5_2 + +if [ ! -d $tag ]; then + cvs -d :pserver:[email protected]:/repository checkout -r $tag -d $tag php5 +fi +if [ ! -d $branch ]; then + cvs -d :pserver:[email protected]:/repository checkout -r $branch -d $branch php5 +fi + +cd $tag && cvs up -d && cd .. +cd $branch && cvs up -d && cd .. + +diff -ur -x CVS $tag $branch > php-branch.diff ================================================================ _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
