]> git.pld-linux.org Git - packages/amarok.git/commitdiff
- do some filtering
authorElan Ruusamäe <glen@pld-linux.org>
Tue, 25 Aug 2009 15:05:06 +0000 (15:05 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    branch.sh -> 1.2

branch.sh

index 1b65df3016ed8293856026b608f17185dd3a7319..df3e4db43e67e87bb6140fa577767e385843474e 100644 (file)
--- a/branch.sh
+++ b/branch.sh
@@ -3,10 +3,17 @@ set -x
 pkg=amarok
 branch=1.4
 tag=fdfafa156c9cda88ed3c045445548e4ca2b129bd
-#tag=8cdcf9d8b634763b515c419805e98e9aa9107224
-#tag=be0564032fc09a9ad6e5e3f22447e3582473904d
 url=git://gitorious.org/amarok/history.git
 
+filter() {
+       set -x
+       # - was not present in tarball
+       # see release_scripts/RELEASE_HOWTO for more exceptions
+       filterdiff -x "a/src/engine/gst10/*" | \
+       cat
+}
+
+
 if [ ! -d git ]; then
        git clone $url git
        cd $pkg
@@ -16,5 +23,5 @@ fi
 
 cd git
        git pull
-       git diff $tag > ../$pkg-branch.diff
+       git diff $tag | filter > ../$pkg-branch.diff
 cd ..
This page took 0.0595 seconds and 4 git commands to generate.