From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- media/mtransport/third_party/import.py | 40 ++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 media/mtransport/third_party/import.py (limited to 'media/mtransport/third_party/import.py') diff --git a/media/mtransport/third_party/import.py b/media/mtransport/third_party/import.py new file mode 100644 index 000000000..6defdf26b --- /dev/null +++ b/media/mtransport/third_party/import.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# Execute as: /import.py +# must have 'IMPORT_FILES' in it + +import sys +import re +import os +import shutil + +def die(msg): + sys.stderr.write('ERROR:' + msg + '\n') + sys.exit(1) + +DISTRO = sys.argv[1] +IMPORT_DIR = sys.argv[2] +FILES = [] + +f = open("%s/IMPORT_FILES" % IMPORT_DIR) +for l in f: + l = l.strip() + l = l.strip("'") + if l.startswith("#"): + continue + if not l: + continue + FILES.append(l) + +for f in FILES: + print f + SOURCE_PATH = "%s/%s"%(DISTRO,f) + DEST_PATH = "%s/%s"%(IMPORT_DIR,f) + if not os.path.exists(SOURCE_PATH): + die("%s does not exist"%SOURCE_PATH) + if not os.path.exists(os.path.dirname(DEST_PATH)): + os.makedirs(os.path.dirname(DEST_PATH)) + shutil.copyfile(SOURCE_PATH, DEST_PATH) -- cgit v1.2.3