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

[OpenCV] Add MSMF & MSMF-DXVA as a Option #15461

Merged
merged 10 commits into from
Feb 16, 2023

Conversation

yekmen
Copy link
Contributor

@yekmen yekmen commented Jan 24, 2023

Specify library name and version: opencv/4.5.5

Add as option to OpenCV:

  • Build with OpenCV World
  • Build with or without msmf (Microsoft Media Foundation) support

@CLAassistant
Copy link

CLAassistant commented Jan 24, 2023

CLA assistant check
All committers have signed the CLA.

@yekmen yekmen force-pushed the fix/opencv_world_msmf_support branch from 581b852 to 4ce22f0 Compare January 24, 2023 15:42
@ghost
Copy link

ghost commented Jan 24, 2023

I detected other pull requests that are modifying opencv/4.x recipe:

This message is automatically generated by https://github.com/ericLemanissier/conan-center-conflicting-prs so don't hesitate to report issues/improvements there.

@conan-center-bot

This comment has been minimized.

@@ -25,6 +25,7 @@ class OpenCVConan(ConanFile):
options = {
"shared": [True, False],
"fPIC": [True, False],
"build_world":[True, False],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not a very good name like all recipe options build_<something>, I thinkworld is a better name and consistent with other option dnn to build opencv_dnn.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agree, I will changed it.

Comment on lines 93 to 94
"with_msmf": False,
"with_msmf_dxva": False,
Copy link
Contributor

@SpaceIm SpaceIm Jan 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these options should be removed if os is not Windows, and enabled by default.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agree, I have not possibility to test on other operation system.

Comment on lines 746 to 750
if self.options.build_world and conan_component == "opencv_world":
self.cpp_info.components[conan_component].libs = [lib_name]
elif not self.options.build_world:
self.cpp_info.components[conan_component].libs = [lib_name]

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you sure that all other targets are defined in official OpenCV config file when world is built?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've checked and other targets are created, but they actually depend on opencv_world target, not the opposite. So logic proposed here is broken.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That why I add this condition, opencv_world will combine all generated dll with only one dll which called opencv_world.dll

When world is disable, all dll will be created, tested on my side and working well.
I will recheck with the new version of the conanfile.py

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know, but:

  • all other components part of world should depend on opencv_world. They shouldn't have requires, system libs or frameworks themselves, everything should be aggregated in requires/system_libs/frameworks of opencv_world component
  • 2 extra modules are never part of world: img_hash & sfm (and its static dependencies correspondence, multiview and numeric)
  • ippiw is not part of world

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've updated #15193 to add world option.

@yekmen yekmen force-pushed the fix/opencv_world_msmf_support branch from b41bc51 to 87258de Compare January 30, 2023 16:31
@yekmen yekmen changed the title Support of OpenCV world Add option of msmf and msmf dxva only for Windows Jan 30, 2023
@conan-center-bot

This comment has been minimized.

@yekmen
Copy link
Contributor Author

yekmen commented Jan 30, 2023

I remove opencv world which is added on your pull request now.
I only keep msmf option

@conan-center-bot

This comment has been minimized.

1 similar comment
@conan-center-bot

This comment has been minimized.

@uilianries
Copy link
Member

@yekmen Thank you for your contribution, please, check the account Yavuz EKMEN, it should sign the CLA as well, because both emails pushed commits to this PRs.

@yekmen yekmen force-pushed the fix/opencv_world_msmf_support branch from 4a45e51 to 8f3733b Compare January 31, 2023 15:24
@conan-center-bot

This comment has been minimized.

@yekmen
Copy link
Contributor Author

yekmen commented Jan 31, 2023

@yekmen Thank you for your contribution, please, check the account Yavuz EKMEN, it should sign the CLA as well, because both emails pushed commits to this PRs.
Done,

@uilianries
Copy link
Member

Conan v1 pipeline ❌
Sorry, the build is only launched for Access Request users. You can request access #4.

@yekmen please, ask for access request on the issue #4, so the CI will be able to run your PR.

@yekmen yekmen mentioned this pull request Jan 31, 2023
@yekmen
Copy link
Contributor Author

yekmen commented Feb 1, 2023

Conan v1 pipeline ❌
Sorry, the build is only launched for Access Request users. You can request access #4.

@yekmen please, ask for access request on the issue #4, so the CI will be able to run your PR.

Done, Waiting about approvement

@SpaceIm
Copy link
Contributor

SpaceIm commented Feb 6, 2023

CI is red, you can close/open to trigger it again.

@conan-center-bot

This comment has been minimized.

@yekmen yekmen closed this Feb 6, 2023
@yekmen yekmen reopened this Feb 6, 2023
@conan-center-bot

This comment has been minimized.

@yekmen yekmen closed this Feb 14, 2023
@yekmen yekmen reopened this Feb 14, 2023
@conan-center-bot

This comment has been minimized.

@yekmen
Copy link
Contributor Author

yekmen commented Feb 14, 2023

According to the CI error, don't know why my PR failed.

Error :
Graph error
Package 'ffmpeg/4.4' not resolved: Unable to find 'ffmpeg/4.4' in remotes
ERROR: Package 'ffmpeg/4.4' not resolved: Unable to find 'ffmpeg/4.4' in remotes

But ffmpeg is available on remote
https://conan.io/center/ffmpeg?version=4.4

Any help is welcome

@yekmen yekmen closed this Feb 15, 2023
@yekmen yekmen reopened this Feb 15, 2023
@conan-center-bot
Copy link
Collaborator

Conan v1 pipeline ✔️

All green in build 18 (a11b20c44dfe45dac7e89817013a7e5de17b1e35):

  • opencv/4.1.2@:
    All packages built successfully! (All logs)

  • opencv/4.5.5@:
    All packages built successfully! (All logs)

  • opencv/4.5.0@:
    All packages built successfully! (All logs)

  • opencv/4.5.2@:
    All packages built successfully! (All logs)

  • opencv/4.5.1@:
    All packages built successfully! (All logs)

  • opencv/4.5.3@:
    All packages built successfully! (All logs)


Conan v2 pipeline (informative, not required for merge) ❌

Note: Conan v2 builds are informative and they are not required for the PR to be merged.

The v2 pipeline failed. Please, review the errors and note this will be required for pull requests to be merged in the near future.

See details:

Failure in build 22 (a11b20c44dfe45dac7e89817013a7e5de17b1e35):

  • opencv/4.5.2@:
    Error running command conan graph info --requires opencv/4.5.2@#03e6f330ea79a2f0e73836d63bacb6f3 -f json -pr:h /home/conan/w/prod-v2_cci_PR-15461/22/7abb7e0f-3ba4-424f-a0db-39f4fd30994b/profile_linux_11_libstdcpp11_gcc_release_64.-shared-False.txt -pr:b /home/conan/w/prod-v2_cci_PR-15461/22/7abb7e0f-3ba4-424f-a0db-39f4fd30994b/profile_linux_11_libstdcpp11_gcc_release_64.-shared-False.txt:

    -------- Input profiles --------
    Profile host:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    Profile build:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    
    -------- Computing dependency graph --------
    zlib/1.2.13: Not found in local cache, looking in remotes...
    zlib/1.2.13: Checking remote: conan-center-v2
    zlib/1.2.13: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    zlib/1.2.13: Downloaded recipe revision 13c96f538b52e1600c40b88994de240f
    libjpeg/9e: Not found in local cache, looking in remotes...
    libjpeg/9e: Checking remote: conan-center-v2
    libjpeg/9e: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    libjpeg/9e: Downloaded recipe revision 68269859e4325ddc3f995d1fd3fc9187
    jasper/4.0.0: Not found in local cache, looking in remotes...
    jasper/4.0.0: Checking remote: conan-center-v2
    jasper/4.0.0: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    jasper/4.0.0: Downloaded recipe revision 0f24c583a775111430a750e3c5defb7f
    libpng/1.6.39: Not found in local cache, looking in remotes...
    libpng/1.6.39: Checking remote: conan-center-v2
    libpng/1.6.39: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    libpng/1.6.39: Downloaded recipe revision deca555b0890e584fc895ba756e83c06
    openexr/2.5.7: Not found in local cache, looking in remotes...
    openexr/2.5.7: Checking remote: conan-center-v2
    openexr/2.5.7: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    openexr/2.5.7: Downloaded recipe revision 3669225befe8a54199139bcfd2226848
    libtiff/4.4.0: Not found in local cache, looking in remotes...
    libtiff/4.4.0: Checking remote: conan-center-v2
    libtiff/4.4.0: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    libtiff/4.4.0: Downloaded recipe revision f46dce61bbb69e0e13cafa43b93b2885
    libdeflate/1.15: Not found in local cache, looking in remotes...
    libdeflate/1.15: Checking remote: conan-center-v2
    libdeflate/1.15: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    libdeflate/1.15: Downloaded recipe revision 867521b6450fdfcc6ec97c37a603912f
    xz_utils/5.2.5: Not found in local cache, looking in remotes...
    xz_utils/5.2.5: Checking remote: conan-center-v2
    xz_utils/5.2.5: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    xz_utils/5.2.5: Downloaded recipe revision ea2f3e1571def8a8605c4c603c8ac007
    jbig/20160605: Not found in local cache, looking in remotes...
    jbig/20160605: Checking remote: conan-center-v2
    jbig/20160605: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    jbig/20160605: Downloaded recipe revision 223f0b4bdf5b597534f9c06ba1c07a08
    zstd/1.5.2: Not found in local cache, looking in remotes...
    zstd/1.5.2: Checking remote: conan-center-v2
    zstd/1.5.2: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    zstd/1.5.2: Downloaded recipe revision 06005e955668e51adf7f86f60785309a
    libwebp/1.2.4: Not found in local cache, looking in remotes...
    libwebp/1.2.4: Checking remote: conan-center-v2
    libwebp/1.2.4: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    libwebp/1.2.4: Downloaded recipe revision 80b4da787a1c0004f6bb1194aca91967
    eigen/3.3.9: Not found in local cache, looking in remotes...
    eigen/3.3.9: Checking remote: conan-center-v2
    eigen/3.3.9: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    eigen/3.3.9: Downloaded recipe revision 1a956670fc533f91d0a9f8b1cfb646e4
    ffmpeg/4.4: Not found in local cache, looking in remotes...
    ffmpeg/4.4: Checking remote: conan-center-v2
    Graph root
        virtual
    Requirements
        eigen/3.3.9#1a956670fc533f91d0a9f8b1cfb646e4 - Downloaded (conan-center-v2)
        jasper/4.0.0#0f24c583a775111430a750e3c5defb7f - Downloaded (conan-center-v2)
        jbig/20160605#223f0b4bdf5b597534f9c06ba1c07a08 - Downloaded (conan-center-v2)
        libdeflate/1.15#867521b6450fdfcc6ec97c37a603912f - Downloaded (conan-center-v2)
        libjpeg/9e#68269859e4325ddc3f995d1fd3fc9187 - Downloaded (conan-center-v2)
        libpng/1.6.39#deca555b0890e584fc895ba756e83c06 - Downloaded (conan-center-v2)
        libtiff/4.4.0#f46dce61bbb69e0e13cafa43b93b2885 - Downloaded (conan-center-v2)
        libwebp/1.2.4#80b4da787a1c0004f6bb1194aca91967 - Downloaded (conan-center-v2)
        opencv/4.5.2#03e6f330ea79a2f0e73836d63bacb6f3 - Cache
        openexr/2.5.7#3669225befe8a54199139bcfd2226848 - Downloaded (conan-center-v2)
        xz_utils/5.2.5#ea2f3e1571def8a8605c4c603c8ac007 - Downloaded (conan-center-v2)
        zlib/1.2.13#13c96f538b52e1600c40b88994de240f - Downloaded (conan-center-v2)
        zstd/1.5.2#06005e955668e51adf7f86f60785309a - Downloaded (conan-center-v2)
    Graph error
        Package 'ffmpeg/4.4' not resolved: Unable to find 'ffmpeg/4.4' in remotes
    ERROR: Package 'ffmpeg/4.4' not resolved: Unable to find 'ffmpeg/4.4' in remotes
    
  • opencv/4.5.5@:
    Error running command conan graph info --requires opencv/4.5.5@#6e269cd47b943e533827cdea4d498cf1 -f json -pr:h /home/conan/w/prod-v2_cci_PR-15461/22/56428eae-208b-4987-b3ba-025f5ad9ec5a/profile_linux_11_libstdcpp11_gcc_release_64.-shared-False.txt -pr:b /home/conan/w/prod-v2_cci_PR-15461/22/56428eae-208b-4987-b3ba-025f5ad9ec5a/profile_linux_11_libstdcpp11_gcc_release_64.-shared-False.txt:

    -------- Input profiles --------
    Profile host:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    Profile build:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    
    -------- Computing dependency graph --------
    zlib/1.2.13: Not found in local cache, looking in remotes...
    zlib/1.2.13: Checking remote: conan-center-v2
    zlib/1.2.13: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Downloading conanfile.py
    Decompressing conan_export.tgz
    zlib/1.2.13: Downloaded recipe revision 13c96f538b52e1600c40b88994de240f
    libjpeg/9e: Not found in local cache, looking in remotes...
    libjpeg/9e: Checking remote: conan-center-v2
    libjpeg/9e: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Downloading conanfile.py
    Decompressing conan_export.tgz
    libjpeg/9e: Downloaded recipe revision 68269859e4325ddc3f995d1fd3fc9187
    jasper/4.0.0: Not found in local cache, looking in remotes...
    jasper/4.0.0: Checking remote: conan-center-v2
    jasper/4.0.0: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    jasper/4.0.0: Downloaded recipe revision 0f24c583a775111430a750e3c5defb7f
    libpng/1.6.39: Not found in local cache, looking in remotes...
    libpng/1.6.39: Checking remote: conan-center-v2
    libpng/1.6.39: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Downloading conanfile.py
    Decompressing conan_export.tgz
    libpng/1.6.39: Downloaded recipe revision deca555b0890e584fc895ba756e83c06
    openexr/3.1.5: Not found in local cache, looking in remotes...
    openexr/3.1.5: Checking remote: conan-center-v2
    openexr/3.1.5: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    openexr/3.1.5: Downloaded recipe revision 88ba2322e127ebe5635fcbfdff4928d2
    imath/3.1.6: Not found in local cache, looking in remotes...
    imath/3.1.6: Checking remote: conan-center-v2
    imath/3.1.6: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    imath/3.1.6: Downloaded recipe revision 7f6b123c01e44d29f5170f2141083e44
    libtiff/4.4.0: Not found in local cache, looking in remotes...
    libtiff/4.4.0: Checking remote: conan-center-v2
    libtiff/4.4.0: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    libtiff/4.4.0: Downloaded recipe revision f46dce61bbb69e0e13cafa43b93b2885
    libdeflate/1.15: Not found in local cache, looking in remotes...
    libdeflate/1.15: Checking remote: conan-center-v2
    libdeflate/1.15: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    libdeflate/1.15: Downloaded recipe revision 867521b6450fdfcc6ec97c37a603912f
    xz_utils/5.2.5: Not found in local cache, looking in remotes...
    xz_utils/5.2.5: Checking remote: conan-center-v2
    xz_utils/5.2.5: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    xz_utils/5.2.5: Downloaded recipe revision ea2f3e1571def8a8605c4c603c8ac007
    jbig/20160605: Not found in local cache, looking in remotes...
    jbig/20160605: Checking remote: conan-center-v2
    jbig/20160605: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    jbig/20160605: Downloaded recipe revision 223f0b4bdf5b597534f9c06ba1c07a08
    zstd/1.5.2: Not found in local cache, looking in remotes...
    zstd/1.5.2: Checking remote: conan-center-v2
    zstd/1.5.2: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Downloading conanfile.py
    Decompressing conan_export.tgz
    zstd/1.5.2: Downloaded recipe revision 06005e955668e51adf7f86f60785309a
    libwebp/1.2.4: Not found in local cache, looking in remotes...
    libwebp/1.2.4: Checking remote: conan-center-v2
    libwebp/1.2.4: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    libwebp/1.2.4: Downloaded recipe revision 80b4da787a1c0004f6bb1194aca91967
    eigen/3.3.9: Not found in local cache, looking in remotes...
    eigen/3.3.9: Checking remote: conan-center-v2
    eigen/3.3.9: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    eigen/3.3.9: Downloaded recipe revision 1a956670fc533f91d0a9f8b1cfb646e4
    ffmpeg/4.4: Not found in local cache, looking in remotes...
    ffmpeg/4.4: Checking remote: conan-center-v2
    Graph root
        virtual
    Requirements
        eigen/3.3.9#1a956670fc533f91d0a9f8b1cfb646e4 - Downloaded (conan-center-v2)
        imath/3.1.6#7f6b123c01e44d29f5170f2141083e44 - Downloaded (conan-center-v2)
        jasper/4.0.0#0f24c583a775111430a750e3c5defb7f - Downloaded (conan-center-v2)
        jbig/20160605#223f0b4bdf5b597534f9c06ba1c07a08 - Downloaded (conan-center-v2)
        libdeflate/1.15#867521b6450fdfcc6ec97c37a603912f - Downloaded (conan-center-v2)
        libjpeg/9e#68269859e4325ddc3f995d1fd3fc9187 - Downloaded (conan-center-v2)
        libpng/1.6.39#deca555b0890e584fc895ba756e83c06 - Downloaded (conan-center-v2)
        libtiff/4.4.0#f46dce61bbb69e0e13cafa43b93b2885 - Downloaded (conan-center-v2)
        libwebp/1.2.4#80b4da787a1c0004f6bb1194aca91967 - Downloaded (conan-center-v2)
        opencv/4.5.5#6e269cd47b943e533827cdea4d498cf1 - Cache
        openexr/3.1.5#88ba2322e127ebe5635fcbfdff4928d2 - Downloaded (conan-center-v2)
        xz_utils/5.2.5#ea2f3e1571def8a8605c4c603c8ac007 - Downloaded (conan-center-v2)
        zlib/1.2.13#13c96f538b52e1600c40b88994de240f - Downloaded (conan-center-v2)
        zstd/1.5.2#06005e955668e51adf7f86f60785309a - Downloaded (conan-center-v2)
    Graph error
        Package 'ffmpeg/4.4' not resolved: Unable to find 'ffmpeg/4.4' in remotes
    ERROR: Package 'ffmpeg/4.4' not resolved: Unable to find 'ffmpeg/4.4' in remotes
    
  • opencv/4.5.3@:
    Error running command conan graph info --requires opencv/4.5.3@#44ceb974bff99e2bf88df9cf32443b9c -f json -pr:h /home/conan/w/prod-v2_cci_PR-15461/22/e55a4cee-92c3-445b-b22f-3f17e4ba8f05/profile_linux_11_libstdcpp11_gcc_release_64.-shared-False.txt -pr:b /home/conan/w/prod-v2_cci_PR-15461/22/e55a4cee-92c3-445b-b22f-3f17e4ba8f05/profile_linux_11_libstdcpp11_gcc_release_64.-shared-False.txt:

    -------- Input profiles --------
    Profile host:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    Profile build:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    
    -------- Computing dependency graph --------
    zlib/1.2.13: Not found in local cache, looking in remotes...
    zlib/1.2.13: Checking remote: conan-center-v2
    zlib/1.2.13: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    zlib/1.2.13: Downloaded recipe revision 13c96f538b52e1600c40b88994de240f
    libjpeg/9e: Not found in local cache, looking in remotes...
    libjpeg/9e: Checking remote: conan-center-v2
    libjpeg/9e: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    libjpeg/9e: Downloaded recipe revision 68269859e4325ddc3f995d1fd3fc9187
    jasper/4.0.0: Not found in local cache, looking in remotes...
    jasper/4.0.0: Checking remote: conan-center-v2
    jasper/4.0.0: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    jasper/4.0.0: Downloaded recipe revision 0f24c583a775111430a750e3c5defb7f
    libpng/1.6.39: Not found in local cache, looking in remotes...
    libpng/1.6.39: Checking remote: conan-center-v2
    libpng/1.6.39: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    libpng/1.6.39: Downloaded recipe revision deca555b0890e584fc895ba756e83c06
    openexr/3.1.5: Not found in local cache, looking in remotes...
    openexr/3.1.5: Checking remote: conan-center-v2
    openexr/3.1.5: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    openexr/3.1.5: Downloaded recipe revision 88ba2322e127ebe5635fcbfdff4928d2
    imath/3.1.6: Not found in local cache, looking in remotes...
    imath/3.1.6: Checking remote: conan-center-v2
    imath/3.1.6: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    imath/3.1.6: Downloaded recipe revision 7f6b123c01e44d29f5170f2141083e44
    libtiff/4.4.0: Not found in local cache, looking in remotes...
    libtiff/4.4.0: Checking remote: conan-center-v2
    libtiff/4.4.0: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    libtiff/4.4.0: Downloaded recipe revision f46dce61bbb69e0e13cafa43b93b2885
    libdeflate/1.15: Not found in local cache, looking in remotes...
    libdeflate/1.15: Checking remote: conan-center-v2
    libdeflate/1.15: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Downloading conanfile.py
    Decompressing conan_export.tgz
    libdeflate/1.15: Downloaded recipe revision 867521b6450fdfcc6ec97c37a603912f
    xz_utils/5.2.5: Not found in local cache, looking in remotes...
    xz_utils/5.2.5: Checking remote: conan-center-v2
    xz_utils/5.2.5: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    xz_utils/5.2.5: Downloaded recipe revision ea2f3e1571def8a8605c4c603c8ac007
    jbig/20160605: Not found in local cache, looking in remotes...
    jbig/20160605: Checking remote: conan-center-v2
    jbig/20160605: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    jbig/20160605: Downloaded recipe revision 223f0b4bdf5b597534f9c06ba1c07a08
    zstd/1.5.2: Not found in local cache, looking in remotes...
    zstd/1.5.2: Checking remote: conan-center-v2
    zstd/1.5.2: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    zstd/1.5.2: Downloaded recipe revision 06005e955668e51adf7f86f60785309a
    libwebp/1.2.4: Not found in local cache, looking in remotes...
    libwebp/1.2.4: Checking remote: conan-center-v2
    libwebp/1.2.4: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    libwebp/1.2.4: Downloaded recipe revision 80b4da787a1c0004f6bb1194aca91967
    eigen/3.3.9: Not found in local cache, looking in remotes...
    eigen/3.3.9: Checking remote: conan-center-v2
    eigen/3.3.9: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    eigen/3.3.9: Downloaded recipe revision 1a956670fc533f91d0a9f8b1cfb646e4
    ffmpeg/4.4: Not found in local cache, looking in remotes...
    ffmpeg/4.4: Checking remote: conan-center-v2
    Graph root
        virtual
    Requirements
        eigen/3.3.9#1a956670fc533f91d0a9f8b1cfb646e4 - Downloaded (conan-center-v2)
        imath/3.1.6#7f6b123c01e44d29f5170f2141083e44 - Downloaded (conan-center-v2)
        jasper/4.0.0#0f24c583a775111430a750e3c5defb7f - Downloaded (conan-center-v2)
        jbig/20160605#223f0b4bdf5b597534f9c06ba1c07a08 - Downloaded (conan-center-v2)
        libdeflate/1.15#867521b6450fdfcc6ec97c37a603912f - Downloaded (conan-center-v2)
        libjpeg/9e#68269859e4325ddc3f995d1fd3fc9187 - Downloaded (conan-center-v2)
        libpng/1.6.39#deca555b0890e584fc895ba756e83c06 - Downloaded (conan-center-v2)
        libtiff/4.4.0#f46dce61bbb69e0e13cafa43b93b2885 - Downloaded (conan-center-v2)
        libwebp/1.2.4#80b4da787a1c0004f6bb1194aca91967 - Downloaded (conan-center-v2)
        opencv/4.5.3#44ceb974bff99e2bf88df9cf32443b9c - Cache
        openexr/3.1.5#88ba2322e127ebe5635fcbfdff4928d2 - Downloaded (conan-center-v2)
        xz_utils/5.2.5#ea2f3e1571def8a8605c4c603c8ac007 - Downloaded (conan-center-v2)
        zlib/1.2.13#13c96f538b52e1600c40b88994de240f - Downloaded (conan-center-v2)
        zstd/1.5.2#06005e955668e51adf7f86f60785309a - Downloaded (conan-center-v2)
    Graph error
        Package 'ffmpeg/4.4' not resolved: Unable to find 'ffmpeg/4.4' in remotes
    ERROR: Package 'ffmpeg/4.4' not resolved: Unable to find 'ffmpeg/4.4' in remotes
    
  • opencv/4.1.2@:
    Error running command conan graph info --requires opencv/4.1.2@#36bad8becf7bb91ca9c141c08f31e3ed -f json -pr:h /home/conan/w/prod-v2_cci_PR-15461/22/47ff551c-22d4-4950-b5a1-171ba620e19a/profile_linux_11_libstdcpp11_gcc_release_64.-shared-False.txt -pr:b /home/conan/w/prod-v2_cci_PR-15461/22/47ff551c-22d4-4950-b5a1-171ba620e19a/profile_linux_11_libstdcpp11_gcc_release_64.-shared-False.txt:

    -------- Input profiles --------
    Profile host:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    Profile build:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    
    -------- Computing dependency graph --------
    zlib/1.2.13: Not found in local cache, looking in remotes...
    zlib/1.2.13: Checking remote: conan-center-v2
    zlib/1.2.13: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    zlib/1.2.13: Downloaded recipe revision 13c96f538b52e1600c40b88994de240f
    libjpeg/9e: Not found in local cache, looking in remotes...
    libjpeg/9e: Checking remote: conan-center-v2
    libjpeg/9e: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    libjpeg/9e: Downloaded recipe revision 68269859e4325ddc3f995d1fd3fc9187
    jasper/4.0.0: Not found in local cache, looking in remotes...
    jasper/4.0.0: Checking remote: conan-center-v2
    jasper/4.0.0: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    jasper/4.0.0: Downloaded recipe revision 0f24c583a775111430a750e3c5defb7f
    libpng/1.6.39: Not found in local cache, looking in remotes...
    libpng/1.6.39: Checking remote: conan-center-v2
    libpng/1.6.39: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    libpng/1.6.39: Downloaded recipe revision deca555b0890e584fc895ba756e83c06
    openexr/2.5.7: Not found in local cache, looking in remotes...
    openexr/2.5.7: Checking remote: conan-center-v2
    openexr/2.5.7: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    openexr/2.5.7: Downloaded recipe revision 3669225befe8a54199139bcfd2226848
    libtiff/4.4.0: Not found in local cache, looking in remotes...
    libtiff/4.4.0: Checking remote: conan-center-v2
    libtiff/4.4.0: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Decompressing conan_export.tgz
    libtiff/4.4.0: Downloaded recipe revision f46dce61bbb69e0e13cafa43b93b2885
    libdeflate/1.15: Not found in local cache, looking in remotes...
    libdeflate/1.15: Checking remote: conan-center-v2
    libdeflate/1.15: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    libdeflate/1.15: Downloaded recipe revision 867521b6450fdfcc6ec97c37a603912f
    xz_utils/5.2.5: Not found in local cache, looking in remotes...
    xz_utils/5.2.5: Checking remote: conan-center-v2
    xz_utils/5.2.5: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    xz_utils/5.2.5: Downloaded recipe revision ea2f3e1571def8a8605c4c603c8ac007
    jbig/20160605: Not found in local cache, looking in remotes...
    jbig/20160605: Checking remote: conan-center-v2
    jbig/20160605: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Decompressing conan_export.tgz
    jbig/20160605: Downloaded recipe revision 223f0b4bdf5b597534f9c06ba1c07a08
    zstd/1.5.2: Not found in local cache, looking in remotes...
    zstd/1.5.2: Checking remote: conan-center-v2
    zstd/1.5.2: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    zstd/1.5.2: Downloaded recipe revision 06005e955668e51adf7f86f60785309a
    libwebp/1.2.4: Not found in local cache, looking in remotes...
    libwebp/1.2.4: Checking remote: conan-center-v2
    libwebp/1.2.4: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    libwebp/1.2.4: Downloaded recipe revision 80b4da787a1c0004f6bb1194aca91967
    eigen/3.3.9: Not found in local cache, looking in remotes...
    eigen/3.3.9: Checking remote: conan-center-v2
    eigen/3.3.9: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    eigen/3.3.9: Downloaded recipe revision 1a956670fc533f91d0a9f8b1cfb646e4
    ffmpeg/4.4: Not found in local cache, looking in remotes...
    ffmpeg/4.4: Checking remote: conan-center-v2
    Graph root
        virtual
    Requirements
        eigen/3.3.9#1a956670fc533f91d0a9f8b1cfb646e4 - Downloaded (conan-center-v2)
        jasper/4.0.0#0f24c583a775111430a750e3c5defb7f - Downloaded (conan-center-v2)
        jbig/20160605#223f0b4bdf5b597534f9c06ba1c07a08 - Downloaded (conan-center-v2)
        libdeflate/1.15#867521b6450fdfcc6ec97c37a603912f - Downloaded (conan-center-v2)
        libjpeg/9e#68269859e4325ddc3f995d1fd3fc9187 - Downloaded (conan-center-v2)
        libpng/1.6.39#deca555b0890e584fc895ba756e83c06 - Downloaded (conan-center-v2)
        libtiff/4.4.0#f46dce61bbb69e0e13cafa43b93b2885 - Downloaded (conan-center-v2)
        libwebp/1.2.4#80b4da787a1c0004f6bb1194aca91967 - Downloaded (conan-center-v2)
        opencv/4.1.2#36bad8becf7bb91ca9c141c08f31e3ed - Cache
        openexr/2.5.7#3669225befe8a54199139bcfd2226848 - Downloaded (conan-center-v2)
        xz_utils/5.2.5#ea2f3e1571def8a8605c4c603c8ac007 - Downloaded (conan-center-v2)
        zlib/1.2.13#13c96f538b52e1600c40b88994de240f - Downloaded (conan-center-v2)
        zstd/1.5.2#06005e955668e51adf7f86f60785309a - Downloaded (conan-center-v2)
    Graph error
        Package 'ffmpeg/4.4' not resolved: Unable to find 'ffmpeg/4.4' in remotes
    ERROR: Package 'ffmpeg/4.4' not resolved: Unable to find 'ffmpeg/4.4' in remotes
    
  • opencv/4.5.0@:
    Error running command conan graph info --requires opencv/4.5.0@#ca322b38d4ce8d07965c13707c7c788f -f json -pr:h /home/conan/w/prod-v2_cci_PR-15461/22/0c08f089-1912-41da-abf9-b6337c4d27c1/profile_linux_11_libstdcpp11_gcc_release_64.-shared-False.txt -pr:b /home/conan/w/prod-v2_cci_PR-15461/22/0c08f089-1912-41da-abf9-b6337c4d27c1/profile_linux_11_libstdcpp11_gcc_release_64.-shared-False.txt:

    -------- Input profiles --------
    Profile host:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    Profile build:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    
    -------- Computing dependency graph --------
    zlib/1.2.13: Not found in local cache, looking in remotes...
    zlib/1.2.13: Checking remote: conan-center-v2
    zlib/1.2.13: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    zlib/1.2.13: Downloaded recipe revision 13c96f538b52e1600c40b88994de240f
    libjpeg/9e: Not found in local cache, looking in remotes...
    libjpeg/9e: Checking remote: conan-center-v2
    libjpeg/9e: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Decompressing conan_export.tgz
    libjpeg/9e: Downloaded recipe revision 68269859e4325ddc3f995d1fd3fc9187
    jasper/4.0.0: Not found in local cache, looking in remotes...
    jasper/4.0.0: Checking remote: conan-center-v2
    jasper/4.0.0: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Decompressing conan_export.tgz
    jasper/4.0.0: Downloaded recipe revision 0f24c583a775111430a750e3c5defb7f
    libpng/1.6.39: Not found in local cache, looking in remotes...
    libpng/1.6.39: Checking remote: conan-center-v2
    libpng/1.6.39: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Downloading conanfile.py
    Decompressing conan_export.tgz
    libpng/1.6.39: Downloaded recipe revision deca555b0890e584fc895ba756e83c06
    openexr/2.5.7: Not found in local cache, looking in remotes...
    openexr/2.5.7: Checking remote: conan-center-v2
    openexr/2.5.7: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    openexr/2.5.7: Downloaded recipe revision 3669225befe8a54199139bcfd2226848
    libtiff/4.4.0: Not found in local cache, looking in remotes...
    libtiff/4.4.0: Checking remote: conan-center-v2
    libtiff/4.4.0: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    libtiff/4.4.0: Downloaded recipe revision f46dce61bbb69e0e13cafa43b93b2885
    libdeflate/1.15: Not found in local cache, looking in remotes...
    libdeflate/1.15: Checking remote: conan-center-v2
    libdeflate/1.15: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    libdeflate/1.15: Downloaded recipe revision 867521b6450fdfcc6ec97c37a603912f
    xz_utils/5.2.5: Not found in local cache, looking in remotes...
    xz_utils/5.2.5: Checking remote: conan-center-v2
    xz_utils/5.2.5: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Decompressing conan_export.tgz
    xz_utils/5.2.5: Downloaded recipe revision ea2f3e1571def8a8605c4c603c8ac007
    jbig/20160605: Not found in local cache, looking in remotes...
    jbig/20160605: Checking remote: conan-center-v2
    jbig/20160605: Trying with 'conan-center-v2'...
    Downloading conanfile.py
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    jbig/20160605: Downloaded recipe revision 223f0b4bdf5b597534f9c06ba1c07a08
    zstd/1.5.2: Not found in local cache, looking in remotes...
    zstd/1.5.2: Checking remote: conan-center-v2
    zstd/1.5.2: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Decompressing conan_export.tgz
    zstd/1.5.2: Downloaded recipe revision 06005e955668e51adf7f86f60785309a
    libwebp/1.2.4: Not found in local cache, looking in remotes...
    libwebp/1.2.4: Checking remote: conan-center-v2
    libwebp/1.2.4: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    libwebp/1.2.4: Downloaded recipe revision 80b4da787a1c0004f6bb1194aca91967
    eigen/3.3.9: Not found in local cache, looking in remotes...
    eigen/3.3.9: Checking remote: conan-center-v2
    eigen/3.3.9: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Downloading conanfile.py
    Decompressing conan_export.tgz
    eigen/3.3.9: Downloaded recipe revision 1a956670fc533f91d0a9f8b1cfb646e4
    ffmpeg/4.4: Not found in local cache, looking in remotes...
    ffmpeg/4.4: Checking remote: conan-center-v2
    Graph root
        virtual
    Requirements
        eigen/3.3.9#1a956670fc533f91d0a9f8b1cfb646e4 - Downloaded (conan-center-v2)
        jasper/4.0.0#0f24c583a775111430a750e3c5defb7f - Downloaded (conan-center-v2)
        jbig/20160605#223f0b4bdf5b597534f9c06ba1c07a08 - Downloaded (conan-center-v2)
        libdeflate/1.15#867521b6450fdfcc6ec97c37a603912f - Downloaded (conan-center-v2)
        libjpeg/9e#68269859e4325ddc3f995d1fd3fc9187 - Downloaded (conan-center-v2)
        libpng/1.6.39#deca555b0890e584fc895ba756e83c06 - Downloaded (conan-center-v2)
        libtiff/4.4.0#f46dce61bbb69e0e13cafa43b93b2885 - Downloaded (conan-center-v2)
        libwebp/1.2.4#80b4da787a1c0004f6bb1194aca91967 - Downloaded (conan-center-v2)
        opencv/4.5.0#ca322b38d4ce8d07965c13707c7c788f - Cache
        openexr/2.5.7#3669225befe8a54199139bcfd2226848 - Downloaded (conan-center-v2)
        xz_utils/5.2.5#ea2f3e1571def8a8605c4c603c8ac007 - Downloaded (conan-center-v2)
        zlib/1.2.13#13c96f538b52e1600c40b88994de240f - Downloaded (conan-center-v2)
        zstd/1.5.2#06005e955668e51adf7f86f60785309a - Downloaded (conan-center-v2)
    Graph error
        Package 'ffmpeg/4.4' not resolved: Unable to find 'ffmpeg/4.4' in remotes
    ERROR: Package 'ffmpeg/4.4' not resolved: Unable to find 'ffmpeg/4.4' in remotes
    
  • opencv/4.5.1@:
    Error running command conan graph info --requires opencv/4.5.1@#4cd39494718b08902aa099f1d0247a28 -f json -pr:h /home/conan/w/prod-v2_cci_PR-15461/22/71a46790-3bd1-4f76-aeed-f235a6e02d2f/profile_linux_11_libstdcpp11_gcc_release_64.-shared-False.txt -pr:b /home/conan/w/prod-v2_cci_PR-15461/22/71a46790-3bd1-4f76-aeed-f235a6e02d2f/profile_linux_11_libstdcpp11_gcc_release_64.-shared-False.txt:

    -------- Input profiles --------
    Profile host:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    Profile build:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    
    -------- Computing dependency graph --------
    zlib/1.2.13: Not found in local cache, looking in remotes...
    zlib/1.2.13: Checking remote: conan-center-v2
    zlib/1.2.13: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Downloading conanfile.py
    Decompressing conan_export.tgz
    zlib/1.2.13: Downloaded recipe revision 13c96f538b52e1600c40b88994de240f
    libjpeg/9e: Not found in local cache, looking in remotes...
    libjpeg/9e: Checking remote: conan-center-v2
    libjpeg/9e: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Decompressing conan_export.tgz
    libjpeg/9e: Downloaded recipe revision 68269859e4325ddc3f995d1fd3fc9187
    jasper/4.0.0: Not found in local cache, looking in remotes...
    jasper/4.0.0: Checking remote: conan-center-v2
    jasper/4.0.0: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Downloading conanfile.py
    Decompressing conan_export.tgz
    jasper/4.0.0: Downloaded recipe revision 0f24c583a775111430a750e3c5defb7f
    libpng/1.6.39: Not found in local cache, looking in remotes...
    libpng/1.6.39: Checking remote: conan-center-v2
    libpng/1.6.39: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Downloading conanfile.py
    Decompressing conan_export.tgz
    libpng/1.6.39: Downloaded recipe revision deca555b0890e584fc895ba756e83c06
    openexr/2.5.7: Not found in local cache, looking in remotes...
    openexr/2.5.7: Checking remote: conan-center-v2
    openexr/2.5.7: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Downloading conanfile.py
    Decompressing conan_export.tgz
    openexr/2.5.7: Downloaded recipe revision 3669225befe8a54199139bcfd2226848
    libtiff/4.4.0: Not found in local cache, looking in remotes...
    libtiff/4.4.0: Checking remote: conan-center-v2
    libtiff/4.4.0: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Decompressing conan_export.tgz
    libtiff/4.4.0: Downloaded recipe revision f46dce61bbb69e0e13cafa43b93b2885
    libdeflate/1.15: Not found in local cache, looking in remotes...
    libdeflate/1.15: Checking remote: conan-center-v2
    libdeflate/1.15: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    libdeflate/1.15: Downloaded recipe revision 867521b6450fdfcc6ec97c37a603912f
    xz_utils/5.2.5: Not found in local cache, looking in remotes...
    xz_utils/5.2.5: Checking remote: conan-center-v2
    xz_utils/5.2.5: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Downloading conan_export.tgz
    Decompressing conan_export.tgz
    xz_utils/5.2.5: Downloaded recipe revision ea2f3e1571def8a8605c4c603c8ac007
    jbig/20160605: Not found in local cache, looking in remotes...
    jbig/20160605: Checking remote: conan-center-v2
    jbig/20160605: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Downloading conanfile.py
    Decompressing conan_export.tgz
    jbig/20160605: Downloaded recipe revision 223f0b4bdf5b597534f9c06ba1c07a08
    zstd/1.5.2: Not found in local cache, looking in remotes...
    zstd/1.5.2: Checking remote: conan-center-v2
    zstd/1.5.2: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanmanifest.txt
    Downloading conanfile.py
    Decompressing conan_export.tgz
    zstd/1.5.2: Downloaded recipe revision 06005e955668e51adf7f86f60785309a
    libwebp/1.2.4: Not found in local cache, looking in remotes...
    libwebp/1.2.4: Checking remote: conan-center-v2
    libwebp/1.2.4: Trying with 'conan-center-v2'...
    Downloading conan_export.tgz
    Downloading conanfile.py
    Downloading conanmanifest.txt
    Decompressing conan_export.tgz
    libwebp/1.2.4: Downloaded recipe revision 80b4da787a1c0004f6bb1194aca91967
    eigen/3.3.9: Not found in local cache, looking in remotes...
    eigen/3.3.9: Checking remote: conan-center-v2
    eigen/3.3.9: Trying with 'conan-center-v2'...
    Downloading conanmanifest.txt
    Downloading conan_export.tgz
    Downloading conanfile.py
    Decompressing conan_export.tgz
    eigen/3.3.9: Downloaded recipe revision 1a956670fc533f91d0a9f8b1cfb646e4
    ffmpeg/4.4: Not found in local cache, looking in remotes...
    ffmpeg/4.4: Checking remote: conan-center-v2
    Graph root
        virtual
    Requirements
        eigen/3.3.9#1a956670fc533f91d0a9f8b1cfb646e4 - Downloaded (conan-center-v2)
        jasper/4.0.0#0f24c583a775111430a750e3c5defb7f - Downloaded (conan-center-v2)
        jbig/20160605#223f0b4bdf5b597534f9c06ba1c07a08 - Downloaded (conan-center-v2)
        libdeflate/1.15#867521b6450fdfcc6ec97c37a603912f - Downloaded (conan-center-v2)
        libjpeg/9e#68269859e4325ddc3f995d1fd3fc9187 - Downloaded (conan-center-v2)
        libpng/1.6.39#deca555b0890e584fc895ba756e83c06 - Downloaded (conan-center-v2)
        libtiff/4.4.0#f46dce61bbb69e0e13cafa43b93b2885 - Downloaded (conan-center-v2)
        libwebp/1.2.4#80b4da787a1c0004f6bb1194aca91967 - Downloaded (conan-center-v2)
        opencv/4.5.1#4cd39494718b08902aa099f1d0247a28 - Cache
        openexr/2.5.7#3669225befe8a54199139bcfd2226848 - Downloaded (conan-center-v2)
        xz_utils/5.2.5#ea2f3e1571def8a8605c4c603c8ac007 - Downloaded (conan-center-v2)
        zlib/1.2.13#13c96f538b52e1600c40b88994de240f - Downloaded (conan-center-v2)
        zstd/1.5.2#06005e955668e51adf7f86f60785309a - Downloaded (conan-center-v2)
    Graph error
        Package 'ffmpeg/4.4' not resolved: Unable to find 'ffmpeg/4.4' in remotes
    ERROR: Package 'ffmpeg/4.4' not resolved: Unable to find 'ffmpeg/4.4' in remotes
    

Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.

@github-actions
Copy link
Contributor

Hooks produced the following warnings for commit a11b20c
opencv/4.5.1
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\opencv_gapi451.dll' links to system library 'wsock32' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\opencv_videoio451.dll' links to system library 'd3d11' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\opencv_videoio451.dll' links to system library 'mf' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\opencv_videoio451.dll' links to system library 'mfreadwrite' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\opencv_videoio451d.dll' links to system library 'mfreadwrite' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\opencv_videoio451d.dll' links to system library 'mf' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\opencv_gapi451d.dll' links to system library 'wsock32' but it is not in cpp_info.system_libs.
post_package(): WARN: [MISSING SYSTEM LIBS (KB-H043)] Library '.\bin\opencv_videoio451d.dll' links to system library 'd3d11' but it is not in cpp_info.system_libs.

@conan-center-bot conan-center-bot merged commit 508121c into conan-io:master Feb 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants