Title: [273774] trunk/Tools
- Revision
- 273774
- Author
- [email protected]
- Date
- 2021-03-02 16:56:40 -0800 (Tue, 02 Mar 2021)
Log 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):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (273773 => 273774)
--- trunk/Tools/ChangeLog 2021-03-03 00:39:40 UTC (rev 273773)
+++ trunk/Tools/ChangeLog 2021-03-03 00:56:40 UTC (rev 273774)
@@ -1,3 +1,16 @@
+2021-03-02 Jonathan Bedard <[email protected]>
+
+ [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):
+
2021-03-02 Simon Fraser <[email protected]>
Rename ForcePageRenderingUpdatesAt60FPSEnabled preference to PreferPageRenderingUpdatesNear60FPSEnabled
Modified: trunk/Tools/Scripts/libraries/webkitscmpy/setup.py (273773 => 273774)
--- trunk/Tools/Scripts/libraries/webkitscmpy/setup.py 2021-03-03 00:39:40 UTC (rev 273773)
+++ trunk/Tools/Scripts/libraries/webkitscmpy/setup.py 2021-03-03 00:56:40 UTC (rev 273774)
@@ -29,7 +29,7 @@
setup(
name='webkitscmpy',
- version='0.12.0',
+ version='0.12.1',
description='Library designed to interact with git and svn repositories.',
long_description=readme(),
classifiers=[
Modified: trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py (273773 => 273774)
--- trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py 2021-03-03 00:39:40 UTC (rev 273773)
+++ trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py 2021-03-03 00:56:40 UTC (rev 273774)
@@ -46,7 +46,7 @@
"Please install webkitcorepy with `pip install webkitcorepy --extra-index-url <package index URL>`"
)
-version = Version(0, 12, 0)
+version = Version(0, 12, 1)
AutoInstall.register(Package('fasteners', Version(0, 15, 0)))
AutoInstall.register(Package('monotonic', Version(1, 5)))
Modified: trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/svn.py (273773 => 273774)
--- trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/svn.py 2021-03-03 00:39:40 UTC (rev 273773)
+++ trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/svn.py 2021-03-03 00:56:40 UTC (rev 273774)
@@ -208,6 +208,8 @@
if revision:
if revision not in self._metadata_cache[branch]:
+ if 'branch' not in branch and branch != 'trunk':
+ sys.stderr.write("Check if 'r{}' is a tag\n".format(revision))
raise self.Exception("Failed to find '{}' on '{}'".format(revision, branch))
return bisect.bisect_left(self._metadata_cache[branch], int(revision))
if branch == self.default_branch:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes