Uh oh!
There was an error while loading. Please reload this page.
gh-97005: Update libexpat from 2.4.7 to 2.4.9 - #97006
Merged
Merged
Conversation
corona10
commented
Sep 22, 2022
MemberAuthor
For verification# Copyright (c) 2022 Sebastian Pipping <sebastian@pipping.org># Licensed under the Apache License version 2.0FROM alpine
RUN apk add --update \
diffutils \
git \
sed \
&& \
git clone --depth 1 https://github.com/python/cpython cpython-main \
&& \
( cd cpython-main && git rev-parse HEAD ) \
&& \
git clone --depth 1 --branch gh-97005 https://github.com/corona10/cpython corona10-gh-97005 \
&& \
( cd corona10-gh-97005 && git rev-parse HEAD ) \
&& \
git config --global advice.detachedHead false \
&& \
git clone --depth 1 --branch R_2_4_7 https://github.com/libexpat/libexpat libexpat_2_4_7 \
&& \
git clone --depth 1 --branch R_2_4_9 https://github.com/libexpat/libexpat libexpat_2_4_9 \
&& \
diff -r -u libexpat_2_4_7/expat/lib/ cpython-main/Modules/expat/ | tee 2-4-7.diff \
&& \
diff -r -u libexpat_2_4_9/expat/lib/ corona10-gh-97005/Modules/expat/ | tee 2-4-9.diff \
&& \
sed -e '/^Only in /d' -e '/^\(+++\|---\) /d' -e '/^diff /d' -i 2-4-7.diff 2-4-9.diff \
&& \
diff -u 2-4-7.diff 2-4-9.diff \
&& \
echo 'Diff is good.' |
corona10
commented
Sep 22, 2022
MemberAuthor
cc @hartwork |
gpshead
approved these changes
Sep 22, 2022
gpshead
left a comment
Member
There was a problem hiding this comment.
I verified the update by diffing Modules/expat/ against https://github.com/libexpat/libexpat/tree/R_2_4_9 expat/
miss-islington
commented
Sep 22, 2022
Contributor
Thanks @corona10 for the PR 🌮🎉.. I'm working now to backport this PR to: 3.7, 3.8, 3.9, 3.10, 3.11. |
bedevere-bot
commented
Sep 22, 2022
GH-97010 is a backport of this pull request to the 3.11 branch. |
miss-islington pushed a commit
to miss-islington/cpython
that referenced
this pull request
Sep 22, 2022
Co-authored-by: Gregory P. Smith [Google] <greg@krypto.org> (cherry picked from commit 10e3d39) Co-authored-by: Dong-hee Na <donghee.na@python.org>
bedevere-bot
commented
Sep 22, 2022
GH-97011 is a backport of this pull request to the 3.10 branch. |
miss-islington pushed a commit
to miss-islington/cpython
that referenced
this pull request
Sep 22, 2022
Co-authored-by: Gregory P. Smith [Google] <greg@krypto.org> (cherry picked from commit 10e3d39) Co-authored-by: Dong-hee Na <donghee.na@python.org>
bedevere-bot
commented
Sep 22, 2022
GH-97012 is a backport of this pull request to the 3.9 branch. |
miss-islington pushed a commit
to miss-islington/cpython
that referenced
this pull request
Sep 22, 2022
Co-authored-by: Gregory P. Smith [Google] <greg@krypto.org> (cherry picked from commit 10e3d39) Co-authored-by: Dong-hee Na <donghee.na@python.org>
bedevere-bot
commented
Sep 22, 2022
GH-97013 is a backport of this pull request to the 3.8 branch. |
miss-islington pushed a commit
to miss-islington/cpython
that referenced
this pull request
Sep 22, 2022
Co-authored-by: Gregory P. Smith [Google] <greg@krypto.org> (cherry picked from commit 10e3d39) Co-authored-by: Dong-hee Na <donghee.na@python.org>
bedevere-bot
commented
Sep 22, 2022
GH-97014 is a backport of this pull request to the 3.7 branch. |
miss-islington pushed a commit
to miss-islington/cpython
that referenced
this pull request
Sep 22, 2022
Co-authored-by: Gregory P. Smith [Google] <greg@krypto.org> (cherry picked from commit 10e3d39) Co-authored-by: Dong-hee Na <donghee.na@python.org>
miss-islington added a commit
that referenced
this pull request
Sep 22, 2022
miss-islington added a commit
that referenced
this pull request
Sep 22, 2022
27 tasks
ambv pushed a commit
that referenced
this pull request
Oct 4, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.