]> git.pld-linux.org Git - packages/lighttpd.git/commitdiff
branch.sh: use real git
authorElan Ruusamäe <glen@delfi.ee>
Wed, 27 Jul 2016 07:38:42 +0000 (10:38 +0300)
committerElan Ruusamäe <glen@delfi.ee>
Wed, 27 Jul 2016 07:38:42 +0000 (10:38 +0300)
this way can use personal branches which are not published on github

branch.sh

index 05e89e57cf43cb15c387ba8d203ff97d469e9246..eea028d044d724514dc4625e06f3a9365a513ab1 100755 (executable)
--- a/branch.sh
+++ b/branch.sh
@@ -1,11 +1,12 @@
 #!/bin/sh
 set -e
 svn=svn://svn.lighttpd.net/lighttpd
 #!/bin/sh
 set -e
 svn=svn://svn.lighttpd.net/lighttpd
-url=https://github.com/lighttpd/lighttpd1.4
+url=https://git.lighttpd.net/lighttpd/lighttpd1.4.git
 package=lighttpd
 tag=lighttpd-1.4.40
 branch=master
 package=lighttpd
 tag=lighttpd-1.4.40
 branch=master
-out=lighttpd-branch.diff
+out=$package-branch.diff
+repo=$package.git
 
 # old version of this code used to create tarball.
 # leave it around
 
 # old version of this code used to create tarball.
 # leave it around
@@ -30,10 +31,14 @@ filter() {
        | cat
 }
 
        | cat
 }
 
-echo >&2 "Running diff: $tag...$branch"
-LC_ALL=C curl -Ss $url/compare/$tag...$branch.patch > $out.tmp
+if [ ! -d $repo ]; then
+       git clone --bare $url -b $branch $repo
+fi
 
 
-filter < $out.tmp > $out.tmp2 && mv -f $out.{tmp2,tmp}
+cd $repo
+       git fetch
+       git diff $tag..$branch | filter > ../$out.tmp
+cd ..
 
 if cmp -s $out{,.tmp}; then
        echo >&2 "No new diffs..."
 
 if cmp -s $out{,.tmp}; then
        echo >&2 "No new diffs..."
This page took 0.222573 seconds and 4 git commands to generate.