| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
ICU’s license file changed from `license.html` to `LICENSE`. Fix `shrink-icu-src.py` (which is manually run) to accept either file. Related to nodejs#7844 which is the 58 bump.
| if 'license.html' in ign: | ||
| ign.remove('license.html') | ||
| if 'LICENSE' in ign: | ||
| ign.remove('LICENSE') |
There was a problem hiding this comment.
out of my head but perhaps if any(item in ign for item in('LICENSE', 'license.html'))
Sorry, something went wrong.
There was a problem hiding this comment.
Thanks. I'm going to change the logic a bit here. We want to keep 'LICENSE' || 'license.html' in that order.
Sorry, something went wrong.
| ign = ign + ['unidata','curr','zone','unit','lang','region','misc','sprep'] | ||
| #elif subdir == 'source/data': | ||
| # ign = ign + ['unidata','curr','zone','unit','lang','region','misc','sprep'] | ||
| # else: |
There was a problem hiding this comment.
remove?
Sorry, something went wrong.
There was a problem hiding this comment.
yes, will remove. and the following comments.
Sorry, something went wrong.
|
@jbergstroem I'm not sure where I ended up with this… but I'll revisit your comments now that #7844 is now in progress. |
Sorry, something went wrong.
|
@jbergstroem I'm going to fold this into #9234 and close this PR. |
Sorry, something went wrong.
* bump to ICU 58.1 - update URL / hash * does not attempt to reduce size - yet * patch to work around http://bugs.icu-project.org/trac/ticket/12822 ( compile issue on Windows) * Fix ICU shrinker to delete old license.html file (update to nodejs#8674 ) Fixes: nodejs#7844 PR-URL: nodejs#9234 Reviewed-By: James M Snell <jasnell@gmail.com>
* bump to ICU 58.1 - update URL / hash * does not attempt to reduce size - yet * patch to work around http://bugs.icu-project.org/trac/ticket/12822 ( compile issue on Windows) * Fix ICU shrinker to delete old license.html file (update to #8674 ) Fixes: #7844 PR-URL: #9234 Reviewed-By: James M Snell <jasnell@gmail.com>
* bump to ICU 58.1 - update URL / hash * does not attempt to reduce size - yet * patch to work around http://bugs.icu-project.org/trac/ticket/12822 ( compile issue on Windows) * Fix ICU shrinker to delete old license.html file (update to #8674 ) Fixes: #7844 PR-URL: #9234 Reviewed-By: James M Snell <jasnell@gmail.com>
* bump to ICU 58.1 - update URL / hash * does not attempt to reduce size - yet * patch to work around http://bugs.icu-project.org/trac/ticket/12822 ( compile issue on Windows) * Fix ICU shrinker to delete old license.html file (update to nodejs#8674 ) Fixes: nodejs#7844 PR-URL: nodejs#9234 Reviewed-By: James M Snell <jasnell@gmail.com>
* bump to ICU 58.1 - update URL / hash * does not attempt to reduce size - yet * patch to work around http://bugs.icu-project.org/trac/ticket/12822 ( compile issue on Windows) * Fix ICU shrinker to delete old license.html file (update to #8674 ) Fixes: #7844 PR-URL: #9234 Reviewed-By: James M Snell <jasnell@gmail.com>
* bump to ICU 58.1 - update URL / hash * does not attempt to reduce size - yet * patch to work around http://bugs.icu-project.org/trac/ticket/12822 ( compile issue on Windows) * Fix ICU shrinker to delete old license.html file (update to #8674 ) Fixes: #7844 PR-URL: #9234 Reviewed-By: James M Snell <jasnell@gmail.com>
* bump to ICU 58.1 - update URL / hash * does not attempt to reduce size - yet * patch to work around http://bugs.icu-project.org/trac/ticket/12822 ( compile issue on Windows) * Fix ICU shrinker to delete old license.html file (update to #8674 ) Fixes: #7844 PR-URL: #9234 Reviewed-By: James M Snell <jasnell@gmail.com>
| Back | FazBrowse Home | New Git URL |
Affected core subsystem(s)
Description of change
ICU’s license file changed from license.html to LICENSE.
Fix shrink-icu-src.py (which is manually run) to accept either file.
Related to #7844 which is the 58 bump.