-
Notifications
You must be signed in to change notification settings - Fork 2k
coin-buildtools: new recipe #23530
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
coin-buildtools: new recipe #23530
Conversation
This comment has been minimized.
This comment has been minimized.
f0d6a39
to
bca8fc2
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Conan v1 pipeline ✔️All green in build 5 (
Conan v2 pipeline ✔️
All green in build 5 (
|
Hi @uilianries @AbrilRBS @jcar87, @franramirez688 , I'm interested by this PR and all coin retaled ones. |
import os | ||
|
||
from conan import ConanFile | ||
from conan.tools.files import apply_conandata_patches, copy, export_conandata_patches, get, rename, mkdir, download |
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.
from conan.tools.files import apply_conandata_patches, copy, export_conandata_patches, get, rename, mkdir, download | |
from conan.tools.files import apply_conandata_patches, copy, export_conandata_patches, get, rename, download |
To remove an unused import.
876fd90
to
676d4cf
Compare
Awaiting the coin stuff to start the transition to conan 2 (our recipes have already been updated to make the change a piece of cake) Is there a way to help on the subject ? (not enough confident nor competent to review conan 2 recipes alas, but I'm currently testing our codebase against these new recipes) |
676d4cf
to
7795872
Compare
Martin Valgur seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
Packages Autotools M4 files required for running
autoreconf
on the COIN-OR libraries on CCI. https://github.com/coin-or-tools/BuildToolsThe COIN-OR libraries have been struggling with cross-building support on macOS and shared builds on MSVC due to the included configure scripts being generated with a fairly old Autoconf version. This will hopefully resolve these issues.
It also adds newer versions of the Autotools toolchain packages as transitive build-time requirements (but as
self.requires()
due to Conan v1 limitations) to ensure that up-to-date versions are being used.