blob: 6f27d468e002a767831b022088f12bbecc5efee1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
#!/bin/bash -e
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
SCRIPTDIR="$(dirname "$(readlink -f "$0")")"
PACKAGE="chrome-remote-desktop"
ARCHITECTURE=$(dpkg-architecture | awk -F '=' '/DEB_BUILD_ARCH=/{print $2}')
REPOCONFIG="deb http://dl.google.com/linux/chrome-remote-desktop/deb/ stable main"
source ${SCRIPTDIR}/../../../../chrome/installer/linux/common/installer.include
guess_filename() {
VERSION_FULL=$(get_version_full)
echo ${PACKAGE}_${VERSION_FULL}_${ARCHITECTURE}.deb
}
get_version_full() {
src_root=${src_root:-./../../../..}
remoting_version_path=$src_root/remoting/VERSION
chrome_version_path=$src_root/chrome/VERSION
version_helper=$src_root/build/util/version.py
# TODO(lambroslambrou): Refactor to share the logic with remoting.gyp.
version_major=$($version_helper -f $chrome_version_path \
-f $remoting_version_path -t "@MAJOR@")
version_minor=$($version_helper -f $remoting_version_path \
-t "@REMOTING_PATCH@")
version_build=$($version_helper -f $chrome_version_path \
-f $remoting_version_path -t "@BUILD@")
version_patch=$($version_helper -f $chrome_version_path \
-f $remoting_version_path -t "@PATCH@")
version_full="$version_major.$version_minor.$version_build.$version_patch"
echo $version_full
}
usage() {
echo "usage: $(basename $0) [-hp] [-o path] [-s path]"
echo "-h this help message"
echo "-p just print the expected DEB filename that this will build."
echo "-s path to the top of the src tree."
echo "-o path to write the DEB file to."
}
while getopts ":s:o:ph" OPTNAME
do
case $OPTNAME in
s )
src_root="$(readlink -f "$OPTARG")"
;;
o )
OUTPUT_PATH="$(readlink -f "$OPTARG")"
;;
p )
PRINTDEBNAME=1
;;
h )
usage
exit 0
;;
\: )
echo "'-$OPTARG' needs an argument."
usage
exit 1
;;
* )
echo "invalid command-line option: $OPTARG"
usage
exit 1
;;
esac
done
shift $(($OPTIND - 1))
# This just prints the expected package filename, then exits. It's needed so the
# gyp packaging target can track the output file, to know whether or not it
# needs to be built/rebuilt.
if [[ -n "$PRINTDEBNAME" ]]; then
guess_filename
exit 0
fi
# TODO: Make this all happen in a temp dir to keep intermediate files out of the
# build tree?
cd "$SCRIPTDIR"
if [[ -z "$version_full" ]]; then
version_full=$(get_version_full)
fi
if [[ ! "$version_full" =~ ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo "Error: Invalid \$version_full value: $version_full" >&2
exit 1
fi
# Include revision information in changelog when building from a local
# git-based checkout.
merge_head="$(git merge-base HEAD origin/git-svn 2>/dev/null || true)"
if [[ -n "$merge_head" ]]; then
revision="$(git svn find-rev "$merge_head" 2>/dev/null || true)"
else
# Official builders still use svn-based builds.
revision="$(svn info . | awk '/^Revision: /{print $2}')"
fi
if [[ -n "$revision" ]]; then
revision_text="(r$revision)"
fi
echo "Building version $version_full $revision_text"
# Create a fresh debian/changelog.
export DEBEMAIL="The Chromium Authors <chromium-dev@chromium.org>"
rm -f debian/changelog
debchange --create \
--package "$PACKAGE" \
--newversion "$version_full" \
--force-distribution \
--distribution unstable \
"New Debian package $revision_text"
CRON_SCRIPT_DIR="${SCRIPTDIR}/../../../../out/Release/remoting/installer/cron"
mkdir -p ${CRON_SCRIPT_DIR}
process_template \
"${SCRIPTDIR}/../../../../chrome/installer/linux/common/repo.cron" \
"${CRON_SCRIPT_DIR}/chrome-remote-desktop"
# TODO(mmoss): This is a workaround for a problem where dpkg-shlibdeps was
# resolving deps using some of our build output shlibs (i.e.
# out/Release/lib.target/libfreetype.so.6), and was then failing with:
# dpkg-shlibdeps: error: no dependency information found for ...
# It's not clear if we ever want to look in LD_LIBRARY_PATH to resolve deps,
# but it seems that we don't currently, so this is the most expediant fix.
SAVE_LDLP=$LD_LIBRARY_PATH
unset LD_LIBRARY_PATH
dpkg-buildpackage -b -us -uc
LD_LIBRARY_PATH=$SAVE_LDLP
if [[ "$OUTPUT_PATH" ]]; then
mv ../${PACKAGE}_*.deb "$OUTPUT_PATH"/
mv ../${PACKAGE}_*.changes "$OUTPUT_PATH"/
fi
|