Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4502)

Unified Diff: build/install-build-deps.sh

Issue 1580663002: Add support for ubuntu 15.10(wily) to install-build-deps.[sh|py] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/experimental/install-build-deps.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/install-build-deps.sh
diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh
index cb5ec2001750668710ee90d941208016a81b0acc..d882f2529f7873e930422ff3ec1f104f5e48920b 100755
--- a/build/install-build-deps.sh
+++ b/build/install-build-deps.sh
@@ -73,11 +73,12 @@ if ! which lsb_release > /dev/null; then
fi
lsb_release=$(lsb_release --codename --short)
-ubuntu_codenames="(precise|trusty|utopic|vivid)"
+ubuntu_codenames="(precise|trusty|utopic|vivid|wily)"
if [ 0 -eq "${do_unsupported-0}" ] && [ 0 -eq "${do_quick_check-0}" ] ; then
if [[ ! $lsb_release =~ $ubuntu_codenames ]]; then
echo "ERROR: Only Ubuntu 12.04 (precise), 14.04 (trusty), " \
- "14.10 (utopic) and 15.04 (vivid) are currently supported" >&2
+ "14.10 (utopic), 15.04 (vivid) and 15.10 (wily) "
+ "are currently supported" >&2
exit 1
fi
@@ -97,7 +98,7 @@ fi
chromeos_dev_list="libbluetooth-dev libxkbcommon-dev realpath"
# Packages needed for development
-dev_list="apache2.2-bin bison cdbs curl dpkg-dev elfutils devscripts fakeroot
+dev_list="bison cdbs curl dpkg-dev elfutils devscripts fakeroot
flex fonts-thai-tlwg g++ git-core git-svn gperf language-pack-da
language-pack-fr language-pack-he language-pack-zh-hant
libapache2-mod-php5 libasound2-dev libbrlapi-dev libav-tools
@@ -110,7 +111,7 @@ dev_list="apache2.2-bin bison cdbs curl dpkg-dev elfutils devscripts fakeroot
openbox patch perl php5-cgi pkg-config python python-cherrypy3
python-crypto python-dev python-numpy python-opencv python-openssl
python-psutil python-yaml rpm ruby subversion ttf-dejavu-core
- ttf-indic-fonts ttf-kochi-gothic ttf-kochi-mincho wdiff xfonts-mathml
+ ttf-indic-fonts ttf-kochi-gothic ttf-kochi-mincho wdiff
zip $chromeos_dev_list"
# 64-bit systems need a minimum set of 32-bit compat packages for the pre-built
@@ -228,7 +229,16 @@ if package_exists libbrlapi0.6; then
else
dev_list="${dev_list} libbrlapi0.5"
fi
-
+if package_exists apache2-bin; then
+ dev_list="${dev_list} apache2-bin"
+else
+ dev_list="${dev_list} apache2.2-bin"
+fi
+if package_exists fonts-stix; then
+ dev_list="${dev_list} fonts-stix"
+else
+ dev_list="${dev_list} xfonts-mathml"
+fi
# Some packages are only needed if the distribution actually supports
# installing them.
« no previous file with comments | « build/experimental/install-build-deps.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698