From 921c8aeb38cc11b3891df4be4fec17d167efcda9 Mon Sep 17 00:00:00 2001 From: Kyle Huey Date: Tue, 1 Apr 2014 11:33:27 +0800 Subject: [PATCH] Bug 988724: Remove webidl updating bits from client.py that are long dead. r=glandium --- client.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/client.py b/client.py index da08b1a1319b..d832c4287d82 100755 --- a/client.py +++ b/client.py @@ -5,10 +5,7 @@ LIBFFI_DIRS = (('js/ctypes/libffi', 'libffi'),) -WEBIDLPARSER_DIR = 'dom/bindings/parser' -WEBIDLPARSER_REPO = 'https://hg.mozilla.org/users/khuey_mozilla.com/webidl-parser' HG_EXCLUSIONS = ['.hg', '.hgignore', '.hgtags'] -WEBIDLPARSER_EXCLUSIONS = HG_EXCLUSIONS + ['.gitignore', 'ply'] CVSROOT_LIBFFI = ':pserver:anoncvs@sources.redhat.com:/cvs/libffi' @@ -120,7 +117,7 @@ def update_nspr_or_nss(tag, depfile, destination, hgpath): tag_file = destination + "/TAG-INFO" print >>file(tag_file, "w"), tag -o = OptionParser(usage="client.py [options] update_nspr tagname | update_nss tagname | update_libffi tagname | update_webidlparser tagname") +o = OptionParser(usage="client.py [options] update_nspr tagname | update_nss tagname | update_libffi tagname") o.add_option("--skip-mozilla", dest="skip_mozilla", action="store_true", default=False, help="Obsolete") @@ -161,9 +158,6 @@ def update_nspr_or_nss(tag, depfile, destination, hgpath): if not options.cvsroot: options.cvsroot = CVSROOT_LIBFFI do_cvs_export(LIBFFI_DIRS, tag, options.cvsroot, options.cvs) -elif action in ('update_webidlparser'): - tag, = args[1:] - do_hg_replace(WEBIDLPARSER_DIR, WEBIDLPARSER_REPO, tag, WEBIDLPARSER_EXCLUSIONS, options.hg) else: o.print_help() sys.exit(2)