-
Notifications
You must be signed in to change notification settings - Fork 431
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
Fix lief #5627
base: 25.1.x
Are you sure you want to change the base?
Fix lief #5627
Conversation
We require contributors to sign our Contributor License Agreement and we don't have one on file for @bernt-matthias. In order for us to review and merge your code, please e-sign the Contributor License Agreement PDF. We then need to manually verify your signature, merge the PR (conda/infrastructure#1114), and ping the bot to refresh the PR. |
followup on conda#5595 fixes conda#5626 in lief 0.15 not only the classes were renamed but also enum members: lief-project/LIEF@cddd8dd#diff-88d5303887e96766711bd8ff242b652c29bc0ee0fa3ef8004bfc797c9a23040b latest version here: https://github.com/lief-project/LIEF/blob/0e5db4ea906b3252653dd90c627f8462d7e39ba4/api/python/lief/ELF/__init__.pyi#L2037
a27e21e
to
477adee
Compare
conda_build/os_utils/liefldd.py
Outdated
except AttributeError: | ||
# Fallback for lief<0.15. | ||
ELF_CLASS = lief.ELF.ELF_CLASS | ||
ELF64 = lief.ELF.ELF64 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the ELF64
name wasn't used in lief prior to 0.15, was it? should this line be
ELF64 = lief.ELF.ELF_CLASS.CLASS64
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed. Copy paste / search replace error :)
@conda-bot check |
CodSpeed Performance ReportMerging #5627 will not alter performanceComparing Summary
|
Anything I can do here? |
Description
followup on #5595 fixes #5626
targeted 25.1.x because #5595 seems not yet merged to main
Checklist - did you ...
news
directory (using the template) for the next release's release notes?