Changeset 261087 in webkit


Ignore:
Timestamp:
May 4, 2020 8:58:53 AM (4 years ago)
Author:
commit-queue@webkit.org
Message:

[WPE][GTK] Should install python3-secretstorage
https://bugs.webkit.org/show_bug.cgi?id=207473

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-05-04
Reviewed by Adrian Perez de Castro.

If python3-secretstorage is not installed, webkit-patch will use a custom encrypted file
for password storage instead of utilizing the system keyring. This means unnecessary
password prompts to unlock the custom encrypted key storage.

There is no benefit to using custom key storage over the system keyring.

  • gtk/install-dependencies:
  • wpe/install-dependencies:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r261081 r261087  
     12020-05-04  Michael Catanzaro  <mcatanzaro@gnome.org>
     2
     3        [WPE][GTK] Should install python3-secretstorage
     4        https://bugs.webkit.org/show_bug.cgi?id=207473
     5
     6        Reviewed by Adrian Perez de Castro.
     7
     8        If python3-secretstorage is not installed, webkit-patch will use a custom encrypted file
     9        for password storage instead of utilizing the system keyring. This means unnecessary
     10        password prompts to unlock the custom encrypted key storage.
     11
     12        There is no benefit to using custom key storage over the system keyring.
     13
     14        * gtk/install-dependencies:
     15        * wpe/install-dependencies:
     16
    1172020-05-04  Andres Gonzalez  <andresg_22@apple.com>
    218
  • trunk/Tools/gtk/install-dependencies

    r259155 r261087  
    247247    packages="$packages \
    248248        git-svn \
     249        python3-secretstorage \
    249250        subversion"
    250251
     
    413414    # These are dependencies necessary for using webkit-patch
    414415    packages="$packages \
     416        python-secretstorage \
    415417        svn"
    416418    pacman -S --needed $packages
     
    585587    packages="$packages
    586588        git-svn \
     589        python3-secretstorage \
    587590        subversion"
    588591
  • trunk/Tools/wpe/install-dependencies

    r259155 r261087  
    150150    packages="$packages \
    151151        git-svn \
     152        python3-secretstorage \
    152153        subversion"
    153154
     
    255256    # These are dependencies necessary for using webkit-patch
    256257    packages="$packages \
     258        python-secretstorage \
    257259        svn"
    258260    pacman -S --needed $packages
     
    376378    packages="$packages
    377379        git-svn \
     380        python3-secretstorage \
    378381        subversion"
    379382
Note: See TracChangeset for help on using the changeset viewer.