]> git.pld-linux.org Git - packages/lighttpd.git/blame - branch.sh
- change compress.bzip2 to compress.allowed_encodings instead (like mod_deflate in...
[packages/lighttpd.git] / branch.sh
CommitLineData
68f8f1d1 1#!/bin/sh
51e3e0fc
ER
2set -e
3svn=svn://svn.lighttpd.net/lighttpd
ff26356a 4tag=lighttpd-1.4.19
68f8f1d1 5branch=lighttpd-1.4.x
51e3e0fc
ER
6
7old=$svn/tags/$tag
8new=$svn/branches/$branch
9echo "Running diff: $old -> $new"
10LC_ALL=C svn diff --old=$old --new=$new > lighttpd-branch.diff
11
7ec65614
ER
12echo "Excluding files which change version or were not in dist tarball"
13filterdiff -x 'configure.in' -x .cvsignore lighttpd-branch.diff > lighttpd-branch.diff.tmp
51e3e0fc 14mv -f lighttpd-branch.diff.tmp lighttpd-branch.diff
This page took 0.185191 seconds and 4 git commands to generate.