Skip to content
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

opencolorio 2.3.0 #141062

Closed
wants to merge 9 commits into from
Closed

Conversation

chenrui333
Copy link
Member

Created by brew bump


Created with brew bump-formula-pr.

@github-actions github-actions bot added python Python use is a significant feature of the PR or issue bump-formula-pr PR was created using `brew bump-formula-pr` labels Sep 1, 2023
@chenrui333
Copy link
Member Author

  /Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/usr/include/c++/v1/cmath:321:9: error: no member named 'signbit' in the global namespace
  using ::signbit;
        ~~^
  /Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/usr/include/c++/v1/cmath:322:9: error: no member named 'fpclassify' in the global namespace
  using ::fpclassify;
        ~~^
  /Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/usr/include/c++/v1/cmath:323:9: error: no member named 'isfinite' in the global namespace
  using ::isfinite;
        ~~^
  /Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/usr/include/c++/v1/cmath:324:9: error: no member named 'isinf' in the global namespace
  using ::isinf;
        ~~^
  /Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/usr/include/c++/v1/cmath:325:9: error: no member named 'isnan' in the global namespace
  using ::isnan;
        ~~^
  /Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/usr/include/c++/v1/cmath:326:9: error: no member named 'isnormal' in the global namespace
  using ::isnormal;
        ~~^
  /Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/usr/include/c++/v1/cmath:327:9: error: no member named 'isgreater' in the global namespace
  using ::isgreater;
        ~~^
  /Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/usr/include/c++/v1/cmath:328:9: error: no member named 'isgreaterequal' in the global namespace
  using ::isgreaterequal;
        ~~^
  /Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/usr/include/c++/v1/cmath:329:9: error: no member named 'isless' in the global namespace
  using ::isless;
        ~~^
  /Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/usr/include/c++/v1/cmath:330:9: error: no member named 'islessequal' in the global namespace
  using ::islessequal;
        ~~^
  /Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/usr/include/c++/v1/cmath:331:9: error: no member named 'islessgreater' in the global namespace
  using ::islessgreater;
        ~~^
  /Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/usr/include/c++/v1/cmath:332:9: error: no member named 'isunordered' in the global namespace
  using ::isunordered;
        ~~^
  /Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/usr/include/c++/v1/cmath:333:9: error: no member named 'isunordered' in the global namespace
  using ::isunordered;
        ~~^
  /Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/usr/include/c++/v1/cmath:339:9: error: no member named 'abs' in the global namespace; did you mean 'fabs'?
  using ::abs;
        ~~^
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.1.sdk/usr/include/math.h:417:15: note: 'fabs' declared here
  extern double fabs(double);
                ^

@chenrui333 chenrui333 added build failure CI fails while building the software CI-no-fail-fast Continue CI tests despite failing GitHub Actions matrix builds. labels Sep 1, 2023
@Bo98
Copy link
Member

Bo98 commented Sep 2, 2023

Mixing up various SDKs.

It seems to be happening in a vendored dependency, probably because it's not passing our std_cmake_args on correctly to the sub-builds. We should consider setting -DOCIO_INSTALL_EXT_PACKAGES=NONE so that it'll instead fail when it can't find a dependency and we can properly do depends_on "..."

@github-actions

This comment was marked as resolved.

@github-actions github-actions bot added the stale No recent activity label Sep 5, 2023
@github-actions github-actions bot added the autosquash Automatically squash pull request commits according to Homebrew style. label Sep 5, 2023
@SMillerDev SMillerDev mentioned this pull request Sep 5, 2023
6 tasks
@chenrui333 chenrui333 added in progress Stale bot should stay away and removed stale No recent activity labels Sep 5, 2023
@chenrui333
Copy link
Member Author

  -- If your OpenImageIO's files are located in different root directory, please provide the OpenImageIO_ROOT where the include files are located.
  -- Could NOT find OpenEXR (minimum version: "3.0.5", recommended version: "3.1.5")

@SMillerDev
Copy link
Member

Actual problems are here, not sure why though.

  -- Could NOT find pystring (minimum version: "1.1.3", recommended version: "1.1.3")
  --    pystring_ROOT was: /opt/homebrew/opt/pystring 
  CMake Error at share/cmake/macros/ocio_handle_dependency.cmake:220 (message):
    pystring is required, will abort at the end.
  -- Could NOT find minizip-ng (minimum version: "3.0.6", recommended version: "3.0.7")
  CMake Error at share/cmake/macros/ocio_handle_dependency.cmake:220 (message):
    minizip-ng is required, will abort at the end.

@chenrui333
Copy link
Member Author

gonna close it for now, and will open a new one for another try.

@chenrui333 chenrui333 closed this Oct 9, 2023
@chenrui333
Copy link
Member Author

let me file an upstream issue about that too.

@chenrui333
Copy link
Member Author

@chenrui333 chenrui333 added the upstream issue An upstream issue report is needed label Nov 5, 2023
@github-actions github-actions bot added the outdated PR was locked due to age label Dec 6, 2023
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Dec 6, 2023
@chenrui333 chenrui333 deleted the bump-opencolorio-2.3.0 branch January 22, 2024 17:50
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
autosquash Automatically squash pull request commits according to Homebrew style. build failure CI fails while building the software bump-formula-pr PR was created using `brew bump-formula-pr` CI-no-fail-fast Continue CI tests despite failing GitHub Actions matrix builds. in progress Stale bot should stay away outdated PR was locked due to age python Python use is a significant feature of the PR or issue upstream issue An upstream issue report is needed
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants