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 if [[ -z "$version_full" ]]; then |
| 8 echo 'Error: $version_full not set' |
| 9 exit 1 |
| 10 fi |
| 11 |
| 12 # Create a fresh debian/changelog. |
| 13 export DEBEMAIL="The Chromium Authors <chromium-dev@chromium.org>" |
| 14 rm -f debian/changelog |
| 15 debchange --create \ |
| 16 --package chrome-remote-desktop \ |
| 17 --distribution lucid \ |
| 18 --newversion "$version_full" \ |
| 19 "New Debian package" |
| 20 |
| 21 dpkg-buildpackage -b -us -uc |
OLD | NEW |