aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2018-10-03 10:40:27 -0400
committerGitHub <noreply@github.com>2018-10-03 10:40:27 -0400
commite56db1f322b504d9661a60127b74fb8e0bfc9669 (patch)
tree17364dcb13dd7cb0f09b57b5176ca37ac38e79be /python
parent74e7736720f457abc62ffe82cdda1db230320747 (diff)
parentd2ee7663f3172646df0f56d3ede138c7d3c8b268 (diff)
downloadservo-e56db1f322b504d9661a60127b74fb8e0bfc9669.tar.gz
servo-e56db1f322b504d9661a60127b74fb8e0bfc9669.zip
Auto merge of #21865 - servo:influent, r=SimonSapin
Update the influent crate from 0.4.0 to 0.4.1 The tarball for 0.4.1 is 44 KB uncompressed and contains 18 files. The tarball for 0.4.0 is 45 MB uncompressed and contains 22113 files, most of which appear to be the output of `cargo doc` that was accidentally included in a release. CC https://github.com/servo/servo/pull/21863#issuecomment-426609991 <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21865) <!-- Reviewable:end -->
Diffstat (limited to 'python')
-rw-r--r--python/servo/build_commands.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py
index 5dc21d53e7d..a241763542c 100644
--- a/python/servo/build_commands.py
+++ b/python/servo/build_commands.py
@@ -425,7 +425,9 @@ class MachCommands(CommandBase):
if not os.path.exists(gst_lib_path):
# Download GStreamer dependencies if they have not already been downloaded
print("Downloading GStreamer dependencies")
- gst_url = "https://github.com/servo/libgstreamer_android_gen/blob/master/out/%s?raw=true" % gst_lib_zip
+ gst_url = "https://github.com/servo/libgstreamer_android_gen/blob/" \
+ "ebb0f0097fec985e0cef988c54a28c2ba06761aa/out/%s?raw=true" % gst_lib_zip
+ print(gst_url)
urllib.urlretrieve(gst_url, gst_lib_zip)
zip_ref = zipfile.ZipFile(gst_lib_zip, "r")
zip_ref.extractall(gst_dir)