]> git.pld-linux.org Git - packages/lighttpd.git/blobdiff - branch.sh
mod_auth depends on mod_authn_file
[packages/lighttpd.git] / branch.sh
index eea028d044d724514dc4625e06f3a9365a513ab1..669da041008d172802cd6335594ba715919502c9 100755 (executable)
--- a/branch.sh
+++ b/branch.sh
@@ -3,7 +3,7 @@ set -e
 svn=svn://svn.lighttpd.net/lighttpd
 url=https://git.lighttpd.net/lighttpd/lighttpd1.4.git
 package=lighttpd
-tag=lighttpd-1.4.40
+tag=lighttpd-1.4.41
 branch=master
 out=$package-branch.diff
 repo=$package.git
@@ -24,10 +24,11 @@ d=$-
 filter() {
        set -$d
        # Excluding files which change version or were not in dist tarball
-       filterdiff \
+       filterdiff -p1 \
                -x 'CMakeLists.txt' \
                -x 'configure.ac' \
                -x 'SConstruct' \
+               -x 'packdist.sh' \
        | cat
 }
 
@@ -36,8 +37,8 @@ if [ ! -d $repo ]; then
 fi
 
 cd $repo
-       git fetch
-       git diff $tag..$branch | filter > ../$out.tmp
+       git fetch origin +$branch:refs/remotes/origin/$branch +refs/tags/$tag:refs/tags/$tag
+       git log -p --reverse $tag..$branch | filter > ../$out.tmp
 cd ..
 
 if cmp -s $out{,.tmp}; then
This page took 0.039128 seconds and 4 git commands to generate.