]> git.pld-linux.org Git - packages/amarok.git/blame - branch.sh
- rebuild with ffmpeg 4.0
[packages/amarok.git] / branch.sh
CommitLineData
25bb11e2 1#!/bin/sh
a09035a9 2# http://gitorious.org/amarok/history/commits/1.4
25bb11e2
ER
3set -x
4pkg=amarok
5branch=1.4
6tag=fdfafa156c9cda88ed3c045445548e4ca2b129bd
25bb11e2
ER
7url=git://gitorious.org/amarok/history.git
8
4ee48945
ER
9filter() {
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
25bb11e2
ER
18if [ ! -d git ]; then
19 git clone $url git
20 cd $pkg
21 git checkout -b $branch origin/$branch
22 cd ..
23fi
24
25cd git
26 git pull
4ee48945 27 git diff $tag | filter > ../$pkg-branch.diff
25bb11e2 28cd ..
This page took 0.02613 seconds and 4 git commands to generate.