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