]> git.pld-linux.org Git - packages/exim.git/blob - branch.sh
117650d231da412b9bee406ef2e637120e690a6e
[packages/exim.git] / branch.sh
1 #!/bin/sh
2 set -e
3 url=git://git.exim.org/exim.git
4 package=exim
5 tag=exim-4.95
6 branch=exim-4.95+fixes
7 out=$package-git.patch
8 repo=$package.git
9
10 echo "No usable branch on upstream git repository... exiting" >&2
11 exit 1
12
13 # use filterdiff, etc to exclude bad chunks from diff
14 filter() {
15         cat
16 }
17
18 if [ ! -d $repo ]; then
19         git clone --bare $url -b $branch $repo
20 fi
21
22 cd $repo
23         git fetch origin +$branch:$branch +refs/tags/$tag:refs/tags/$tag
24         git log -p --reverse $tag..$branch ":(exclude)doc/doc-*" ":(exclude)test" ":(exclude).*" | filter > ../$out.tmp
25 cd ..
26
27 if cmp -s $out{,.tmp}; then
28         echo >&2 "No new diffs..."
29         rm -f $out.tmp
30         exit 0
31 fi
32 mv -f $out{.tmp,}
33
34 ../md5 $package.spec
35 ../dropin $out
This page took 0.023322 seconds and 2 git commands to generate.