]> git.pld-linux.org Git - packages/amarok.git/blob - branch.sh
- rebuild with ffmpeg 4.0
[packages/amarok.git] / branch.sh
1 #!/bin/sh
2 # http://gitorious.org/amarok/history/commits/1.4
3 set -x
4 pkg=amarok
5 branch=1.4
6 tag=fdfafa156c9cda88ed3c045445548e4ca2b129bd
7 url=git://gitorious.org/amarok/history.git
8
9 filter() {
10         set -x
11         # - was not present in tarball
12         # see release_scripts/RELEASE_HOWTO for more exceptions
13         filterdiff -x "a/src/engine/gst10/*" | \
14         cat
15 }
16
17
18 if [ ! -d git ]; then
19         git clone $url git
20         cd $pkg
21                 git checkout -b $branch origin/$branch
22         cd ..
23 fi
24
25 cd git
26         git pull
27         git diff $tag | filter > ../$pkg-branch.diff
28 cd ..
This page took 0.069436 seconds and 3 git commands to generate.