Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tommy Webb
Tor Browser
Commits
921c8aeb
Commit
921c8aeb
authored
10 years ago
by
Kyle Huey
Browse files
Options
Downloads
Patches
Plain Diff
Bug 988724: Remove webidl updating bits from client.py that are long dead. r=glandium
parent
e1d0b6f1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
client.py
+1
-7
1 addition, 7 deletions
client.py
with
1 addition
and
7 deletions
client.py
+
1
−
7
View file @
921c8aeb
...
...
@@ -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 @@ elif action in ('update_libffi'):
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
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment