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

Unified Diff: build/linux/install-chromeos-fonts.py

Issue 2392643003: Removes files from //build that we don't need (Closed)
Patch Set: Created 4 years, 2 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/linux/dump_app_syms.py ('k') | build/linux/pkg-config-wrapper » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/install-chromeos-fonts.py
diff --git a/build/linux/install-chromeos-fonts.py b/build/linux/install-chromeos-fonts.py
deleted file mode 100755
index a24adc920ce10a575d9c4c4e560e13bdef9e9723..0000000000000000000000000000000000000000
--- a/build/linux/install-chromeos-fonts.py
+++ /dev/null
@@ -1,73 +0,0 @@
-#!/usr/bin/env python
-# Copyright 2013 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.
-
-# Script to install the Chrome OS fonts on Linux.
-# This script can be run manually (as root), but is also run as part
-# install-build-deps.sh.
-
-import os
-import shutil
-import subprocess
-import sys
-
-# Taken from the media-fonts/notofonts ebuild in chromiumos-overlay.
-VERSION = '20140815'
-URL = ('https://commondatastorage.googleapis.com/chromeos-localmirror/'
- 'distfiles/notofonts-%s.tar.bz2') % (VERSION)
-FONTS_DIR = '/usr/local/share/fonts'
-
-def main(args):
- if not sys.platform.startswith('linux'):
- print "Error: %s must be run on Linux." % __file__
- return 1
-
- if os.getuid() != 0:
- print "Error: %s must be run as root." % __file__
- return 1
-
- if not os.path.isdir(FONTS_DIR):
- print "Error: Destination directory does not exist: %s" % FONTS_DIR
- return 1
-
- dest_dir = os.path.join(FONTS_DIR, 'chromeos')
-
- stamp = os.path.join(dest_dir, ".stamp02")
- if os.path.exists(stamp):
- with open(stamp) as s:
- if s.read() == URL:
- print "Chrome OS fonts already up-to-date in %s." % dest_dir
- return 0
-
- if os.path.isdir(dest_dir):
- shutil.rmtree(dest_dir)
- os.mkdir(dest_dir)
- os.chmod(dest_dir, 0755)
-
- print "Installing Chrome OS fonts to %s." % dest_dir
- tarball = os.path.join(dest_dir, os.path.basename(URL))
- subprocess.check_call(['curl', '-L', URL, '-o', tarball])
- subprocess.check_call(['tar', '--no-same-owner', '--no-same-permissions',
- '-xf', tarball, '-C', dest_dir])
- os.remove(tarball)
-
- readme = os.path.join(dest_dir, "README")
- with open(readme, 'w') as s:
- s.write("This directory and its contents are auto-generated.\n")
- s.write("It may be deleted and recreated. Do not modify.\n")
- s.write("Script: %s\n" % __file__)
-
- with open(stamp, 'w') as s:
- s.write(URL)
-
- for base, dirs, files in os.walk(dest_dir):
- for dir in dirs:
- os.chmod(os.path.join(base, dir), 0755)
- for file in files:
- os.chmod(os.path.join(base, file), 0644)
-
- return 0
-
-if __name__ == '__main__':
- sys.exit(main(sys.argv[1:]))
« no previous file with comments | « build/linux/dump_app_syms.py ('k') | build/linux/pkg-config-wrapper » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698