packages: php/php-branch.sh (NEW) - add branch diff generator

glen glen at pld-linux.org
Sun Jun 28 19:13:58 CEST 2009


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:cvsread at cvs.php.net:/repository checkout -r $tag -d $tag php5
+fi
+if [ ! -d $branch ]; then
+	cvs -d :pserver:cvsread at cvs.php.net:/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
================================================================


More information about the pld-cvs-commit mailing list