⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243999 in webkit


Ignore:
Timestamp:
Apr 8, 2019, 5:14:43 AM (7 years ago)
Author:
commit-queue@webkit.org
Message:

[Flatpak] Second run update-webkitwpe-flatpak fails
https://bugs.webkit.org/show_bug.cgi?id=192702

Patch by Philippe Normand <pnormand@igalia.com> on 2019-04-08
Reviewed by Carlos Garcia Campos.

  • flatpak/flatpakutils.py:

(FlatpakObject.flatpak): Fix typo.
(FlatpakPackage.install): When installing, also update to the configured remote commit.

  • flatpak/org.webkit.WebKit.yaml: Update GNOME 3.28 SDK/runtime hashes.
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r243971 r243999  
     12019-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
    1132019-04-05  Sergio Villar Senin  <svillar@igalia.com>
    214
  • trunk/Tools/flatpak/flatpakutils.py

    r243387 r243999  
    257257    def flatpak(self, command, *args, **kwargs):
    258258        show_output = kwargs.pop("show_output", False)
    259         comment = kwargs.pop("commend", None)
     259        comment = kwargs.pop("comment", None)
    260260        if comment:
    261261            Console.message(comment)
     
    472472
    473473        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)
    478480
    479481    def update(self):
  • trunk/Tools/flatpak/org.webkit.WebKit.yaml

    r240141 r243999  
    33runtime-version: "3.28"
    44# Control the exact version of the Sdk/Runtime that is being used.
    5 sdk-hash: ba3017972f1cc6c7c8b0ed7f80d3297ad4c6f4076bd799d0bab0e2cbaa3e3c0a
    6 runtime-hash: 9d3fe926d425ad837e40a0945020a00f09c1f531335987a753e07f276d76ee36
     5sdk-hash: 31af0c10f8e42151220a728b52df0a5c37ea8e4b033825f40c30e44d11cb31d1
     6runtime-hash: 6d1d0ebbd72404c61d109307eb2240542b7ad82608bc6428bba6f3eebcfc8bf3
    77sdk: org.gnome.Sdk
    88command: %(COMMAND)s
Note: See TracChangeset for help on using the changeset viewer.