OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/bash -e | |
2 | |
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
4 # Use of this source code is governed by a BSD-style license that can be | |
5 # found in the LICENSE file. | |
6 | |
7 | |
8 version_full="${version_full:-1.2.3.4}" | |
Jamie
2012/07/25 23:40:40
Probably better to fail if version_full isn't set.
Lambros
2012/07/26 21:19:04
Done.
| |
9 | |
10 # Create a fresh debian/changelog. | |
11 export DEBEMAIL="The Chromium Authors <chromium-dev@chromium.org>" | |
12 rm -f debian/changelog | |
13 debchange --create \ | |
14 --package chrome-remote-desktop \ | |
15 --distribution lucid \ | |
16 --newversion "$version_full" \ | |
17 "Debian package" | |
Jamie
2012/07/25 23:40:40
What is this string used for?
Lambros
2012/07/26 21:19:04
It's the text of the changelog entry. I've change
| |
18 | |
19 dpkg-buildpackage -b -us -uc | |
OLD | NEW |