~ubuntu-branches/ubuntu/vivid/wine/vivid

« back to all changes in this revision

Viewing changes to debian/maint/import-done

  • Committer: Bazaar Package Importer
  • Author(s): Scott Ritchie
  • Date: 2008-05-30 08:48:53 UTC
  • mfrom: (1.1.40 upstream)
  • Revision ID: james.westby@ubuntu.com-20080530084853-eoabeo8m5ai49vb5
Tags: 1.0-rc3-1ubuntu1
* New upstream release
  - Bugfixes only due to feature freeze pending 1.0 release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
set -e
3
 
if [ "$1" != "--upstream-version" ]
4
 
then
5
 
  echo "Usage: $0 --upstream-version VERSION"
6
 
  exit 1
7
 
fi
8
 
upstream_version="$2"
9
 
# Create changelog entry, so build tools can find the upstream version
10
 
dch -v "$upstream_version-1" --distribution UNRELEASED --preserve \
11
 
 "UNRELEASED"
12
 
git add debian/changelog
13
 
# Amend the merge commit message
14
 
if [ -f announce.tmp ]
15
 
then
16
 
  git commit --amend -F announce.tmp
17
 
  rm announce.tmp
18
 
else
19
 
  git commit --amend
20
 
fi