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

Unified Diff: mojo/public/dart/tools/fetch_dart_packages.py

Issue 2250183003: Make the fuchsia mojo/public repo the source of truth. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 4 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 | « mojo/public/dart/rules.gni ('k') | mojo/public/go/application/application_impl.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/dart/tools/fetch_dart_packages.py
diff --git a/mojo/public/dart/tools/fetch_dart_packages.py b/mojo/public/dart/tools/fetch_dart_packages.py
deleted file mode 100755
index 53a1c343b5b486cdabd1b012b69bc642a701a829..0000000000000000000000000000000000000000
--- a/mojo/public/dart/tools/fetch_dart_packages.py
+++ /dev/null
@@ -1,92 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright 2015 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.
-
-"""Utility for updating third_party packages used in the Mojo Dart SDK"""
-
-import argparse
-import errno
-import json
-import os
-import shutil
-import subprocess
-import sys
-
-SCRIPT_DIR = os.path.dirname(sys.argv[0])
-
-def check_for_pubspec_yaml(directory):
- return os.path.exists(os.path.join(directory, 'pubspec.yaml'))
-
-def change_directory(directory):
- return os.chdir(directory)
-
-def list_packages(directory):
- for child in os.listdir(directory):
- path = os.path.join(directory, child)
- if os.path.isdir(path):
- print(child)
-
-def remove_existing_packages(base_path):
- print('Removing all package directories under %s' % base_path)
- for child in os.listdir(base_path):
- path = os.path.join(base_path, child)
- if os.path.isdir(path):
- print('Removing %s ' % path)
- shutil.rmtree(path)
-
-def pub_get(pub_exe):
- return subprocess.check_output([pub_exe, 'get'])
-
-def copy_packages(base_path):
- packages_path = os.path.join(base_path, 'packages')
- for package in os.listdir(packages_path):
- lib_path = os.path.realpath(os.path.join(packages_path, package))
- package_path = os.path.normpath(os.path.join(lib_path, '..'))
- destinaton_path = os.path.join(base_path, package)
- print('Copying %s to %s' % (package_path, destinaton_path))
- shutil.copytree(package_path, destinaton_path)
-
-def cleanup(base_path):
- shutil.rmtree(os.path.join(base_path, 'packages'), True)
- shutil.rmtree(os.path.join(base_path, '.pub'), True)
- os.remove(os.path.join(base_path, '.packages'))
-
-def main():
- parser = argparse.ArgumentParser(description='Update third_party packages')
- parser.add_argument(
- '--pub-exe',
- action='store',
- metavar='pub_exe',
- help='Path to the pub executable',
- default='../../../../third_party/dart-sdk/dart-sdk/bin/pub')
- parser.add_argument('--directory',
- action='store',
- metavar='directory',
- help='Directory containing pubspec.yaml',
- default='.')
- parser.add_argument('--list',
- help='List mode',
- action='store_true',
- default=False)
- args = parser.parse_args()
- args.directory = os.path.abspath(args.directory)
-
- if not check_for_pubspec_yaml(args.directory):
- print('Error could not find pubspec.yaml')
- return 1
-
- if args.list:
- list_packages(args.directory)
- else:
- remove_existing_packages(args.directory)
- change_directory(args.directory)
- print('Running pub get')
- pub_get(args.pub_exe)
- copy_packages(args.directory)
- print('Cleaning up')
- cleanup(args.directory)
-
-if __name__ == '__main__':
- sys.exit(main())
« no previous file with comments | « mojo/public/dart/rules.gni ('k') | mojo/public/go/application/application_impl.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698