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

Changeset 273774 in webkit


Ignore:
Timestamp:
Mar 2, 2021, 4:56:40 PM (6 years ago)
Author:
Jonathan Bedard
Message:

[git-webkit] Better logging when attempting to convert tag to identifier
​https://bugs.webkit.org/show_bug.cgi?id=222482
<rdar://problem/74797495>

Reviewed by Aakash Jain.

  • Scripts/libraries/webkitcorepy/setup.py: Bug version.
  • Scripts/libraries/webkitcorepy/webkitcorepy/init.py: Ditto.
  • Scripts/libraries/webkitscmpy/webkitscmpy/local/svn.py:

(Svn._commit_count):

Location:
trunk/Tools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r273773 r273774  
     12021-03-02  Jonathan Bedard  <jbedard@apple.com>
     2
     3        [git-webkit] Better logging when attempting to convert tag to identifier
     4        https://bugs.webkit.org/show_bug.cgi?id=222482
     5        <rdar://problem/74797495>
     6
     7        Reviewed by Aakash Jain.
     8
     9        * Scripts/libraries/webkitcorepy/setup.py: Bug version.
     10        * Scripts/libraries/webkitcorepy/webkitcorepy/__init__.py: Ditto.
     11        * Scripts/libraries/webkitscmpy/webkitscmpy/local/svn.py:
     12        (Svn._commit_count):
     13
    1142021-03-02  Simon Fraser  <simon.fraser@apple.com>
    215
  • trunk/Tools/Scripts/libraries/webkitscmpy/setup.py

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

    r273765 r273774  
    4747    )
    4848
    49 version = Version(0, 12, 0)
     49version = Version(0, 12, 1)
    5050
    5151AutoInstall.register(Package('fasteners', Version(0, 15, 0)))
  • trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/svn.py

    r273437 r273774  
    209209        if revision:
    210210            if revision not in self._metadata_cache[branch]:
     211                if 'branch' not in branch and branch != 'trunk':
     212                    sys.stderr.write("Check if 'r{}' is a tag\n".format(revision))
    211213                raise self.Exception("Failed to find '{}' on '{}'".format(revision, branch))
    212214            return bisect.bisect_left(self._metadata_cache[branch], int(revision))
Note: See TracChangeset for help on using the changeset viewer.