X-Git-Url: https://git.tld-linux.org/?a=blobdiff_plain;f=php-branch.sh;fp=php-branch.sh;h=0000000000000000000000000000000000000000;hb=72ad6add086b462795ce6d3a9a6ca5f8d8410b03;hp=d9f5fbd15feefcf7cb4b7dab8a00adda3da2fb3d;hpb=ad5f98910c721925df50d505bbf45b82b90eaf38;p=packages%2Fphp.git diff --git a/php-branch.sh b/php-branch.sh deleted file mode 100644 index d9f5fbd..0000000 --- a/php-branch.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -set -e -svn=http://svn.php.net/repository/php/php-src -tag=php_5_3_2 -branch=PHP_5_3 -out=php-branch.diff - -d=$- -filter() { - set -$d - # remove revno's for smaller diffs - sed -e 's,^\([-+]\{3\} .*\)\t(revision [0-9]\+)$,\1,' -} - -old=$svn/tags/$tag -new=$svn/branches/$branch -echo >&2 "Running diff: $old -> $new" -LC_ALL=C svn diff --old=$old --new=$new | filter > $out.tmp - -if cmp -s $out{,.tmp}; then - echo >&2 "No new diffs..." - rm -f $out.tmp - exit 0 -fi -mv -f $out{.tmp,}