]> git.pld-linux.org Git - packages/lighttpd.git/blob - branch.sh
- update branch.diff; add breakage.log
[packages/lighttpd.git] / branch.sh
1 #!/bin/sh
2 set -e
3 svn=svn://svn.lighttpd.net/lighttpd
4 tag=lighttpd-1.4.23
5 branch=lighttpd-1.4.x
6
7 old=$svn/tags/$tag
8 new=$svn/branches/$branch
9 echo "Running diff: $old -> $new"
10 LC_ALL=C svn diff --old=$old --new=$new > lighttpd-branch.diff.tmp
11
12 echo "Excluding files which change version or were not in dist tarball"
13 filterdiff -x tests/mod-extforward.conf -x ChangeLog -x .cvsignore -x src/.cvsignore -x tests/.cvsignore -x doc/.cvsignore -x 'configure.in' -x 'SConstruct' -x 'CMakeLists.txt' -x 'src/CMakeLists.txt' -x 'src/config.h.cmake' -x 'src/mod_uploadprogress.c' lighttpd-branch.diff.tmp > lighttpd-branch.diff.tmp2
14 mv -f lighttpd-branch.diff.tmp2 lighttpd-branch.diff
15 rm -f lighttpd-branch.diff.tmp
This page took 0.073926 seconds and 4 git commands to generate.