]> git.pld-linux.org Git - packages/lighttpd.git/blob - branch.sh
- exclude SConstruct and CMakeLists.txt
[packages/lighttpd.git] / branch.sh
1 #!/bin/sh
2 set -e
3 svn=svn://svn.lighttpd.net/lighttpd
4 tag=lighttpd-1.4.21
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
11
12 echo "Excluding files which change version or were not in dist tarball"
13 filterdiff -x 'configure.in' -x 'SConstruct' -x 'CMakeLists.txt' lighttpd-branch.diff > lighttpd-branch.diff.tmp
14 mv -f lighttpd-branch.diff.tmp lighttpd-branch.diff
This page took 0.04115 seconds and 4 git commands to generate.