packages: php4/php4-branch.sh (NEW) - script to make branch diff for php4
glen
glen at pld-linux.org
Thu Jun 25 13:08:15 CEST 2009
Author: glen Date: Thu Jun 25 11:08:15 2009 GMT
Module: packages Tag: HEAD
---- Log message:
- script to make branch diff for php4
---- Files affected:
packages/php4:
php4-branch.sh (NONE -> 1.1) (NEW)
---- Diffs:
================================================================
Index: packages/php4/php4-branch.sh
diff -u /dev/null packages/php4/php4-branch.sh:1.1
--- /dev/null Thu Jun 25 13:08:15 2009
+++ packages/php4/php4-branch.sh Thu Jun 25 13:08:10 2009
@@ -0,0 +1,15 @@
+#!/bin/sh
+tag=php_4_4_9
+branch=PHP_4_4
+
+if [ ! -d $tag ]; then
+ cvs -d :pserver:cvsread at cvs.php.net:/repository checkout -r $tag -d $tag php-src
+fi
+if [ ! -d $branch ]; then
+ cvs -d :pserver:cvsread at cvs.php.net:/repository checkout -r $branch -d $branch php-src
+fi
+
+cd $tag && cvs up -d && cd ..
+cd $branch && cvs up -d && cd ..
+
+diff -ur $tag $branch > php4-branch.diff
================================================================
More information about the pld-cvs-commit
mailing list