Changeset 289985 in webkit


Ignore:
Timestamp:
Feb 16, 2022, 5:25:59 PM (3 years ago)
Author:
Jonathan Bedard
Message:

[git-webkit] Comment and close issue when landing PR (Follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=236715
<rdar://problem/89031529>

Unreviewed follow-up fix.

  • Tools/Scripts/libraries/webkitscmpy/setup.py: Bump version instead of decrement.
  • Tools/Scripts/libraries/webkitscmpy/webkitscmpy/init.py: Ditto.
  • Tools/Scripts/libraries/webkitscmpy/webkitscmpy/program/land.py:

(Land.main): Grab log of commit, which may contain revision, if there is one.

Location:
trunk/Tools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r289984 r289985  
     12022-02-16  Jonathan Bedard  <jbedard@apple.com>
     2
     3        [git-webkit] Comment and close issue when landing PR (Follow-up fix)
     4        https://bugs.webkit.org/show_bug.cgi?id=236715
     5        <rdar://problem/89031529>
     6
     7        Unreviewed follow-up fix.
     8
     9        * Scripts/libraries/webkitscmpy/setup.py: Bump version instead of decrement.
     10        * Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py: Ditto.
     11        * Scripts/libraries/webkitscmpy/webkitscmpy/program/land.py:
     12        (Land.main): Grab log of commit, which may contain revision, if there is one.
     13
    1142022-02-15  Jonathan Bedard  <jbedard@apple.com>
    215
  • trunk/Tools/Scripts/libraries/webkitscmpy/setup.py

    r289983 r289985  
    3030setup(
    3131    name='webkitscmpy',
    32     version='4.1.0',
     32    version='4.3.0',
    3333    description='Library designed to interact with git and svn repositories.',
    3434    long_description=readme(),
  • trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py

    r289983 r289985  
    4747    )
    4848
    49 version = Version(4, 1, 0)
     49version = Version(4, 3, 0)
    5050
    5151AutoInstall.register(Package('fasteners', Version(0, 15, 0)))
  • trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/program/land.py

    r289983 r289985  
    239239            repository.checkout(target)
    240240
    241         commit = repository.commit(branch=target, include_log=False)
     241        commit = repository.commit(branch=target, include_log=True)
    242242        if identifier_template and commit.identifier:
    243243            land_message = 'Landed {} ({})!'.format(identifier_template.format(commit).split(': ')[-1], commit.hash[:Commit.HASH_LABEL_SIZE])
Note: See TracChangeset for help on using the changeset viewer.