~ubuntu-branches/ubuntu/quantal/mono/quantal

« back to all changes in this revision

Viewing changes to debian/git-merge-debian-patches

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-08-24 19:17:07 UTC
  • mfrom: (5.2.13 experimental)
  • Revision ID: james.westby@ubuntu.com-20100824191707-ob7sjlnkqkkn8tjf
Tags: 2.6.7-2ubuntu1
* Merge from Debian Experimental, remaining Ubuntu changes:
  + debian/control:
    - Lower mono-debugger Recommends on mono-dbg package to Suggests,
      as mono-debugger is in Universe
    - Lower libmono-firebirdsql1.7-cil Recommends on libmono-cil-dev
      package to Suggests, as libfbclient2 is in Universe

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
DEBIAN_PATCHES=$(git branch -l | egrep '\s+debian/patches/')
 
4
for DEBIAN_PATCH in $DEBIAN_PATCHES; do
 
5
        git merge --no-ff $DEBIAN_PATCH
 
6
done