Changeset 243999 in webkit
- Timestamp:
- Apr 8, 2019, 5:14:43 AM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
flatpak/flatpakutils.py (modified) (2 diffs)
-
flatpak/org.webkit.WebKit.yaml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r243971 r243999 1 2019-04-08 Philippe Normand <pnormand@igalia.com> 2 3 [Flatpak] Second run update-webkitwpe-flatpak fails 4 https://bugs.webkit.org/show_bug.cgi?id=192702 5 6 Reviewed by Carlos Garcia Campos. 7 8 * flatpak/flatpakutils.py: 9 (FlatpakObject.flatpak): Fix typo. 10 (FlatpakPackage.install): When installing, also update to the configured remote commit. 11 * flatpak/org.webkit.WebKit.yaml: Update GNOME 3.28 SDK/runtime hashes. 12 1 13 2019-04-05 Sergio Villar Senin <svillar@igalia.com> 2 14 -
trunk/Tools/flatpak/flatpakutils.py
r243387 r243999 257 257 def flatpak(self, command, *args, **kwargs): 258 258 show_output = kwargs.pop("show_output", False) 259 comment = kwargs.pop("commen d", None)259 comment = kwargs.pop("comment", None) 260 260 if comment: 261 261 Console.message(comment) … … 472 472 473 473 args = ["install", self.repo.name, self.name, "--reinstall", self.branch, "--assumeyes"] 474 475 self.flatpak(*args, show_output=True, 476 comment="Installing from " + self.repo.name + " " + 477 self.name + " " + self.arch + " " + self.branch) 474 comment = "Installing from " + self.repo.name + " " + self.name + " " + self.arch + " " + self.branch 475 self.flatpak(*args, show_output=True, comment=comment) 476 if self.hash: 477 args = ["update", "--commit", self.hash] 478 comment = "Updating to %s" % self.hash 479 self.flatpak(*args, show_output=True, comment=comment) 478 480 479 481 def update(self): -
trunk/Tools/flatpak/org.webkit.WebKit.yaml
r240141 r243999 3 3 runtime-version: "3.28" 4 4 # Control the exact version of the Sdk/Runtime that is being used. 5 sdk-hash: ba3017972f1cc6c7c8b0ed7f80d3297ad4c6f4076bd799d0bab0e2cbaa3e3c0a6 runtime-hash: 9d3fe926d425ad837e40a0945020a00f09c1f531335987a753e07f276d76ee365 sdk-hash: 31af0c10f8e42151220a728b52df0a5c37ea8e4b033825f40c30e44d11cb31d1 6 runtime-hash: 6d1d0ebbd72404c61d109307eb2240542b7ad82608bc6428bba6f3eebcfc8bf3 7 7 sdk: org.gnome.Sdk 8 8 command: %(COMMAND)s
Note:
See TracChangeset
for help on using the changeset viewer.