Changeset 267056 in webkit


Ignore:
Timestamp:
Sep 14, 2020 4:05:11 PM (4 years ago)
Author:
Jonathan Bedard
Message:

[webkitcorepy] AutoInstaller should work with HomeBrew Python
https://bugs.webkit.org/show_bug.cgi?id=216496
<rdar://problem/68864294>

Rubber-stamped by Brady Eidson.

  • Scripts/libraries/webkitcorepy/webkitcorepy/init.py: Bump version.
  • Scripts/libraries/webkitcorepy/webkitcorepy/autoinstall.py:

(Package.install): Set prefix to empty for HomeBrew python installs.

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r267052 r267056  
     12020-09-14  Jonathan Bedard  <jbedard@apple.com>
     2
     3        [webkitcorepy] AutoInstaller should work with HomeBrew Python
     4        https://bugs.webkit.org/show_bug.cgi?id=216496
     5        <rdar://problem/68864294>
     6
     7        Rubber-stamped by Brady Eidson.
     8
     9        * Scripts/libraries/webkitcorepy/webkitcorepy/__init__.py: Bump version.
     10        * Scripts/libraries/webkitcorepy/webkitcorepy/autoinstall.py:
     11        (Package.install): Set prefix to empty for HomeBrew python installs.
     12
    1132020-09-14  Aakash Jain  <aakash_jain@apple.com>
    214
  • trunk/Tools/Scripts/libraries/webkitcorepy/webkitcorepy/__init__.py

    r267035 r267056  
    3636from webkitcorepy.output_capture import LoggerCapture, OutputCapture, OutputDuplicate
    3737
    38 version = Version(0, 4, 10)
     38version = Version(0, 4, 11)
    3939
    4040from webkitcorepy.autoinstall import Package, AutoInstall
  • trunk/Tools/Scripts/libraries/webkitcorepy/webkitcorepy/autoinstall.py

    r267035 r267056  
    246246                            '--home={}'.format(install_location),
    247247                            '--root=/',
     248                            '--prefix=',
    248249                            '--single-version-externally-managed',
    249250                            '--install-lib={}'.format(install_location),
Note: See TracChangeset for help on using the changeset viewer.