-
Notifications
You must be signed in to change notification settings - Fork 278
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
boost/1.87.0 package update #36440
boost/1.87.0 package update #36440
Conversation
Gen AI suggestions to solve the build error: Based on the build error output, I can provide a specific analysis and solution: • Detected Error: "Reversed (or previously applied) patch detected! [...] Skipping patch. 4 out of 4 hunks ignored -- saving rejects to file add_path.cpp.rej" • Error Category: Build Configuration • Failure Point: Patch application step in the pipeline, specifically when trying to patch ./tools/bcp/add_path.cpp • Root Cause Analysis: The patch is being rejected because either:
• Suggested Fix:
# Comment out or remove the existing patch section
# - runs: |
# cd ./tools/bcp
# patch -p1 < ../../c98516b5b76e9132eba78a399af9c95ec8d23bd4.patch
# patch -p1 < ../../cd21e9b4a749a77c24facf2da44f01e032c40842.patch
- runs: |
cd ./tools/bcp
patch -p1 --force < ../../c98516b5b76e9132eba78a399af9c95ec8d23bd4.patch || true
patch -p1 --force < ../../cd21e9b4a749a77c24facf2da44f01e032c40842.patch || true • Explanation: The patches were likely created for an older version of Boost and are no longer compatible with version 1.87.0. Since Boost 1.87.0 is a recent release, the fixes from these patches may have already been incorporated upstream. • Additional Notes:
• References:
|
Signed-off-by: wolfi-bot <[email protected]>
adcf70a
to
da4c08c
Compare
Gen AI suggestions to solve the build error: • Detected Error: "Reversed (or previously applied) patch detected! Assume -R? [n]" followed by "4 out of 4 hunks ignored -- saving rejects to file add_path.cpp.rej" • Error Category: Build Configuration • Failure Point: Patch application step in the pipeline • Root Cause Analysis: The patch file for add_path.cpp appears to be either:
• Suggested Fix:
- runs: |
cd ./tools/bcp
# Comment out or remove problematic patch
# patch -p1 < ../../c98516b5b76e9132eba78a399af9c95ec8d23bd4.patch
patch -p1 < ../../cd21e9b4a749a77c24facf2da44f01e032c40842.patch
• Explanation: The error indicates that the patch system detected the changes may have already been incorporated into the source code in version 1.87.0, or the patch needs to be updated for compatibility. Since Boost 1.87.0 is a recent release, it's likely that the original fixes have been merged upstream. • Additional Notes:
• References:
|
…ures. These changes look to be in the latest release Signed-off-by: Mark McCormick <[email protected]>
Signed-off-by: Mark McCormick <[email protected]>
Automated package update - patches were failing to apply.
These changes look to be in the latest release, so we don't need to cherry-pick them anymore.