]> git.pld-linux.org Git - packages/lighttpd.git/blame - branch.sh
- applied in svn
[packages/lighttpd.git] / branch.sh
CommitLineData
68f8f1d1 1#!/bin/sh
51e3e0fc
ER
2set -e
3svn=svn://svn.lighttpd.net/lighttpd
642535da 4tag=lighttpd-1.4.23
68f8f1d1 5branch=lighttpd-1.4.x
51e3e0fc
ER
6
7old=$svn/tags/$tag
8new=$svn/branches/$branch
9echo "Running diff: $old -> $new"
0e60c194 10LC_ALL=C svn diff --old=$old --new=$new > lighttpd-branch.diff.tmp
51e3e0fc 11
7ec65614 12echo "Excluding files which change version or were not in dist tarball"
54a99178 13filterdiff -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
0e60c194
ER
14mv -f lighttpd-branch.diff.tmp2 lighttpd-branch.diff
15rm -f lighttpd-branch.diff.tmp
This page took 0.068494 seconds and 4 git commands to generate.