conan-center-index icon indicating copy to clipboard operation
conan-center-index copied to clipboard

vtk: new recipe

Open valgur opened this issue 1 year ago • 12 comments

Summary

Changes to recipe: vtk/9.3.1

Motivation

The Visualization Toolkit (VTK) is open source software for manipulating and displaying scientific data. It comes with state-of-the-art tools for 3D rendering, a suite of widgets for 3D interaction, and extensive 2D plotting capability.

https://vtk.org/ https://gitlab.kitware.com/vtk/vtk

Packaging status

Details

Continues from #10776 by @paulharris with significant rewrites to tame the scope and complexity to more manageable levels. The project packages around 200 components and has about 70 dependencies (of which 56 are currently provided via Conan, 130 with transitive deps).

  • I dropped the full YES/WANT/DONT_WANT/NO dependency resolution, which was complex enough to warrant a suite of unit tests, imo, and replaced it with a simpler alternative, which works well enough as long as the user sticks to only YES/NO choices.
  • Module groups and kits are not supported. Kits "compile VTK into a smaller set of libraries" and "can be useful on platforms where VTK takes a long time to launch due to expensive disk access." Realistically, I would say supporting kits does not provide much value when static library output is available. The consumer is free to link the hundreds of modules down into a single executable if the number of shared libraries becomes a performance concern.
  • Every module that can be built with the given set of external deps is built. Alternatively, want_all_modules can be set to False to build only the core modules and a specific subset of modules (and their internal dependencies) selected by the user instead.
  • I expect the consumer to take care to link only against the relevant set of modules, since linking everything would be very unadvisable for this library. No catch-all VTK::VTK CMake target is exported for that reason (which matches the project's behavior). Instead, a poison target is included to prohibit the use of the aggregate vtk::vtk target when all modules are being built by default.
  • The Conan component definition is almost fully dynamic to cope with the up to 200 total components exported by the project. The process is:
    1. Gather all CMake targets defined by CMakeDeps into a map of CMake->Conan targets and store it for later use.
    2. Parse the installed VTK-targets.cmake file for CMake targets and their properties. This provides the list of actually exported targets, whether they are real or interface ones, a list of internal and external public CMake target dependencies, system libs, frameworks and preprocessor defines.
    3. Parse the module.json build output to get the list of private dependencies for each component and some extra implementable/implements metadata for autoinit header generation.
    4. Generate autoinit headers required for static factory components defined in other modules to work. This is normally done in the project's CMake modules. The recipe implements a modified version that works for non-CMake generators as well. See the additional description in the code for more details.
    5. Map the CMake targets to Conan targets and store the component metadata in a JSON file in the package folder for the binary package.
    6. Apply the defined components in package_info() and add the private external dependencies that are not covered by the modules.json file (which itself is derived from the module.vtk files in the project).
  • All external dependencies that are available on CCI are supported and work. At least on x86_64 Linux. I have not yet tested on other platforms.
  • I did not add support for Python and Java wrappers or Python components in general.
  • The recipe includes a Python script to generate the options/<version>.json files with ./update_options.py <vtk-source-location>. A --dump-metadata flag can be used to dump the metadata gathered from the module.vtk files as JSON instead, which provides a good overview of all modules and should be useful for diffing the metadata for changes for new releases. Keep in mind that many external dependencies are not listed as VTK modules, though, and are accessed directly through a find_package() wrapper.

TODO:

  • [ ] Add a recipe for VTK-m, which is basically a CUDA/HIP etc accelerated backend for VTK.

Here's a list of related PRs for optional dependencies that are currently missing from CCI:

  • #18980
  • #22360
  • #23233
  • #21296
  • #21138
  • #24735 - although the support in the project is still very preliminary and broken

To conclude, I would like to thank @paulharris for the very hard work on the recipe. It was tremendously helpful, even if much of it got rewritten beyond recognition. :heart:

Build logs

All logs are for GCC 11 on x86_64 Linux.

  • All external dependencies enabled (including the ones not yet available on CCI):
  • All external dependencies disabled:

Build times are:

  • minimal - 6 minutes
  • default - 15 minutes
  • full - 17 minutes

valgur avatar Aug 03 '24 14:08 valgur

Conan v1 pipeline :x:

Failure in build 1 (9d58d5ebde8763b82e91365b07db2d83762bdb75):

  • vtk/9.3.1: Error running command conan export recipes/vtk/all/conanfile.py vtk/9.3.1@:
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    ERROR: Error loading conanfile at '/home/conan/workspace/prod-v1_cci_PR-24808/recipes/vtk/all/conanfile.py': : Error in init() method, line 223
    	self.options.update(new_options, new_defaults)
    	TypeError: update expected at most 1 arguments, got 2
    

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.


Conan v2 pipeline :x:

Note: Conan v2 builds are now mandatory. Please read our discussion about it.

The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.

Failure in build 1 (9d58d5ebde8763b82e91365b07db2d83762bdb75):

  • vtk/9.3.1: Error running command conan graph info --requires vtk/9.3.1@#5706575ce1eddc49d7e2910e5c87d70a --build vtk/9.3.1@#5706575ce1eddc49d7e2910e5c87d70a -f json -pr:h /home/conan/workspace/prod-v2/bsr/69746/fdbad/profile_linux_11_libstdcpp11_17_gcc_release_64.-shared-False.txt -pr:b /home/conan/workspace/prod-v2/bsr/69746/fdbad/profile_linux_11_libstdcpp11_17_gcc_release_64..txt:
    ======== Computing dependency graph ========
    double-conversion/3.3.0: Not found in local cache, looking in remotes...
    double-conversion/3.3.0: Checking remote: conan-center
    double-conversion/3.3.0: Downloaded recipe revision 33321c201741cc32b51169c6d2d05e60
    exprtk/0.0.2: Not found in local cache, looking in remotes...
    exprtk/0.0.2: Checking remote: conan-center
    exprtk/0.0.2: Downloaded recipe revision 7c52632dc5320bf71832189b33d0fee8
    fast_float/6.1.3: Not found in local cache, looking in remotes...
    fast_float/6.1.3: Checking remote: conan-center
    fast_float/6.1.3: Downloaded recipe revision eb74c0b0102c8ea0e53ea10033755ef4
    libarchive/3.7.4: Not found in local cache, looking in remotes...
    libarchive/3.7.4: Checking remote: conan-center
    libarchive/3.7.4: Downloaded recipe revision db39e5a5cddfd3a1884daaab4b7942fb
    zlib/1.3.1: Not found in local cache, looking in remotes...
    zlib/1.3.1: Checking remote: conan-center
    zlib/1.3.1: Downloaded recipe revision f52e03ae3d251dec704634230cd806a2
    libiconv/1.17: Not found in local cache, looking in remotes...
    libiconv/1.17: Checking remote: conan-center
    libiconv/1.17: Downloaded recipe revision 73fefc1b696e069df90fd1d18aa63edd
    lz4/1.9.4: Not found in local cache, looking in remotes...
    lz4/1.9.4: Checking remote: conan-center
    lz4/1.9.4: Downloaded recipe revision 652b313a0444c8b1d60d1bf9e95fb0a1
    pugixml/1.14: Not found in local cache, looking in remotes...
    pugixml/1.14: Checking remote: conan-center
    pugixml/1.14: Downloaded recipe revision c6afdcf73d71858303d8260b0d76ff91
    utfcpp/4.0.4: Not found in local cache, looking in remotes...
    utfcpp/4.0.4: Checking remote: conan-center
    utfcpp/4.0.4: Downloaded recipe revision 6d93b29490c5cba2a9b4c06ae0c89cfd
    xz_utils/5.4.5: Not found in local cache, looking in remotes...
    xz_utils/5.4.5: Checking remote: conan-center
    xz_utils/5.4.5: Downloaded recipe revision 51e5a6e6564f4ea3afd79def01f035ad
    boost/1.85.0: Not found in local cache, looking in remotes...
    boost/1.85.0: Checking remote: conan-center
    boost/1.85.0: Downloaded recipe revision 0146e46a0e32fbb44e7189f25c193dae
    bzip2/1.0.8: Not found in local cache, looking in remotes...
    bzip2/1.0.8: Checking remote: conan-center
    bzip2/1.0.8: Downloaded recipe revision 457c272f7da34cb9c67456dd217d36c4
    libbacktrace/cci.20210118: Not found in local cache, looking in remotes...
    libbacktrace/cci.20210118: Checking remote: conan-center
    libbacktrace/cci.20210118: Downloaded recipe revision a7691bfccd8caaf66309df196790a5a1
    b2/5.2.1: Not found in local cache, looking in remotes...
    b2/5.2.1: Checking remote: conan-center
    b2/5.2.1: Downloaded recipe revision 91bc73931a0acb655947a81569ed8b80
    cli11/2.4.2: Not found in local cache, looking in remotes...
    cli11/2.4.2: Checking remote: conan-center
    cli11/2.4.2: Downloaded recipe revision 1b431bda2fb2cd3efed633899abcd8cc
    eigen/3.4.0: Not found in local cache, looking in remotes...
    eigen/3.4.0: Checking remote: conan-center
    eigen/3.4.0: Downloaded recipe revision 2e192482a8acff96fe34766adca2b24c
    expat/2.6.2: Not found in local cache, looking in remotes...
    expat/2.6.2: Checking remote: conan-center
    expat/2.6.2: Downloaded recipe revision 2d385d0d50eb5561006a7ff9e356656b
    fmt/10.2.1: Not found in local cache, looking in remotes...
    fmt/10.2.1: Checking remote: conan-center
    fmt/10.2.1: Downloaded recipe revision 8d582aeebdf05b6f0abe2911b926c3f4
    fontconfig/2.15.0: Not found in local cache, looking in remotes...
    fontconfig/2.15.0: Checking remote: conan-center
    fontconfig/2.15.0: Downloaded recipe revision e0b660ff9389f08e1aca1a67d748d737
    freetype/2.13.2: Not found in local cache, looking in remotes...
    freetype/2.13.2: Checking remote: conan-center
    freetype/2.13.2: Downloaded recipe revision 7934d59c447d72edcd56025dc60e1aeb
    libpng/1.6.43: Not found in local cache, looking in remotes...
    libpng/1.6.43: Checking remote: conan-center
    libpng/1.6.43: Downloaded recipe revision c219d8f01983bac10c404fc613605eef
    brotli/1.1.0: Not found in local cache, looking in remotes...
    brotli/1.1.0: Checking remote: conan-center
    brotli/1.1.0: Downloaded recipe revision d56d7bb9ca722942aba17369cb5c0519
    meson/1.3.2: Not found in local cache, looking in remotes...
    meson/1.3.2: Checking remote: conan-center
    meson/1.3.2: Downloaded recipe revision d1125ba555ec1a94f165a3412fdf7f88
    ninja/1.11.1: Not found in local cache, looking in remotes...
    ninja/1.11.1: Checking remote: conan-center
    ninja/1.11.1: Downloaded recipe revision 77587f8c8318662ac8e5a7867eb4be21
    pkgconf/2.1.0: Not found in local cache, looking in remotes...
    pkgconf/2.1.0: Checking remote: conan-center
    pkgconf/2.1.0: Downloaded recipe revision 27f44583701117b571307cf5b5fe5605
    meson/1.2.2: Not found in local cache, looking in remotes...
    meson/1.2.2: Checking remote: conan-center
    meson/1.2.2: Downloaded recipe revision 04bdfb85d665c82b08a3510aee3ffd19
    util-linux-libuuid/2.39.2: Not found in local cache, looking in remotes...
    util-linux-libuuid/2.39.2: Checking remote: conan-center
    util-linux-libuuid/2.39.2: Downloaded recipe revision 339f80aea7e5cf507b5b9839a128909f
    gperf/3.1: Not found in local cache, looking in remotes...
    gperf/3.1: Checking remote: conan-center
    gperf/3.1: Downloaded recipe revision 1d622ad9717e9348ed3685c9994ad0b9
    meson/1.4.0: Not found in local cache, looking in remotes...
    meson/1.4.0: Checking remote: conan-center
    meson/1.4.0: Downloaded recipe revision 024dfac41ea5570cb1aec3ea6fe34d0a
    glew/2.2.0: Not found in local cache, looking in remotes...
    glew/2.2.0: Checking remote: conan-center
    glew/2.2.0: Downloaded recipe revision 7ed80001a1a9686f00ccf4f4680c5f73
    opengl/system: Not found in local cache, looking in remotes...
    opengl/system: Checking remote: conan-center
    opengl/system: Downloaded recipe revision 4df6fecde4084386beded3ed0e56e4ea
    mesa-glu/9.0.3: Not found in local cache, looking in remotes...
    mesa-glu/9.0.3: Checking remote: conan-center
    mesa-glu/9.0.3: Downloaded recipe revision 94609f918d5ca4e5fea0f7a985b29f68
    libglvnd/1.7.0: Not found in local cache, looking in remotes...
    libglvnd/1.7.0: Checking remote: conan-center
    libglvnd/1.7.0: Downloaded recipe revision cd2e728b07cc6cf5e2e0d88ca6d689f8
    xorg/system: Not found in local cache, looking in remotes...
    xorg/system: Checking remote: conan-center
    xorg/system: Downloaded recipe revision f626cbdd0ba57d9c53bce2d8b9362fad
    xorg-proto/2022.2: Not found in local cache, looking in remotes...
    xorg-proto/2022.2: Checking remote: conan-center
    xorg-proto/2022.2: Downloaded recipe revision 0088fff0ee788a2fa8f22a9704ea941a
    xorg-macros/1.19.3: Not found in local cache, looking in remotes...
    xorg-macros/1.19.3: Checking remote: conan-center
    xorg-macros/1.19.3: Downloaded recipe revision c3465b331ce1d044ee771dc5e4529b79
    automake/1.16.5: Not found in local cache, looking in remotes...
    automake/1.16.5: Checking remote: conan-center
    automake/1.16.5: Downloaded recipe revision 058bda3e21c36c9aa8425daf3c1faf50
    autoconf/2.71: Not found in local cache, looking in remotes...
    autoconf/2.71: Checking remote: conan-center
    autoconf/2.71: Downloaded recipe revision f9307992909d7fb3df459340f1932809
    m4/1.4.19: Not found in local cache, looking in remotes...
    m4/1.4.19: Checking remote: conan-center
    m4/1.4.19: Downloaded recipe revision b38ced39a01e31fef5435bc634461fd2
    pkgconf/2.0.3: Not found in local cache, looking in remotes...
    pkgconf/2.0.3: Checking remote: conan-center
    pkgconf/2.0.3: Downloaded recipe revision f996677e96e61e6552d85e83756c328b
    meson/1.2.3: Not found in local cache, looking in remotes...
    meson/1.2.3: Checking remote: conan-center
    meson/1.2.3: Downloaded recipe revision aad1203ff72cd2dd1b43e5dfad9783a1
    hdf5/1.14.1: Not found in local cache, looking in remotes...
    hdf5/1.14.1: Checking remote: conan-center
    hdf5/1.14.1: Downloaded recipe revision 1b521c1ac9b9638c5491d26e15a4d140
    cmake/3.30.1: Not found in local cache, looking in remotes...
    cmake/3.30.1: Checking remote: conan-center
    cmake/3.30.1: Downloaded recipe revision 6d832cf2d46f6ec969ca5ed5b41f91eb
    libjpeg/9e: Not found in local cache, looking in remotes...
    libjpeg/9e: Checking remote: conan-center
    libjpeg/9e: Downloaded recipe revision 3cd27a78643419450ee6d3739514d25c
    jsoncpp/1.9.5: Not found in local cache, looking in remotes...
    jsoncpp/1.9.5: Checking remote: conan-center
    jsoncpp/1.9.5: Downloaded recipe revision 9d91be1604af36ced56ae89ee65d53e0
    libharu/2.4.4: Not found in local cache, looking in remotes...
    libharu/2.4.4: Checking remote: conan-center
    libharu/2.4.4: Downloaded recipe revision 9259d30533775316235d6e5f1f2ffd06
    proj/9.3.1: Not found in local cache, looking in remotes...
    proj/9.3.1: Checking remote: conan-center
    proj/9.3.1: Downloaded recipe revision 23136aa2e9754eff2d00b443c297d962
    nlohmann_json/3.11.3: Not found in local cache, looking in remotes...
    nlohmann_json/3.11.3: Checking remote: conan-center
    nlohmann_json/3.11.3: Downloaded recipe revision 45828be26eb619a2e04ca517bb7b828d
    Graph root
        cli
    Requirements
        boost/1.85.0#0146e46a0e32fbb44e7189f25c193dae - Downloaded (conan-center)
        brotli/1.1.0#d56d7bb9ca722942aba17369cb5c0519 - Downloaded (conan-center)
        bzip2/1.0.8#457c272f7da34cb9c67456dd217d36c4 - Downloaded (conan-center)
        cli11/2.4.2#1b431bda2fb2cd3efed633899abcd8cc - Downloaded (conan-center)
        double-conversion/3.3.0#33321c201741cc32b51169c6d2d05e60 - Downloaded (conan-center)
        eigen/3.4.0#2e192482a8acff96fe34766adca2b24c - Downloaded (conan-center)
        expat/2.6.2#2d385d0d50eb5561006a7ff9e356656b - Downloaded (conan-center)
        exprtk/0.0.2#7c52632dc5320bf71832189b33d0fee8 - Downloaded (conan-center)
        fast_float/6.1.3#eb74c0b0102c8ea0e53ea10033755ef4 - Downloaded (conan-center)
        fmt/10.2.1#8d582aeebdf05b6f0abe2911b926c3f4 - Downloaded (conan-center)
        fontconfig/2.15.0#e0b660ff9389f08e1aca1a67d748d737 - Downloaded (conan-center)
        freetype/2.13.2#7934d59c447d72edcd56025dc60e1aeb - Downloaded (conan-center)
        glew/2.2.0#7ed80001a1a9686f00ccf4f4680c5f73 - Downloaded (conan-center)
        hdf5/1.14.1#1b521c1ac9b9638c5491d26e15a4d140 - Downloaded (conan-center)
        jsoncpp/1.9.5#9d91be1604af36ced56ae89ee65d53e0 - Downloaded (conan-center)
        libarchive/3.7.4#db39e5a5cddfd3a1884daaab4b7942fb - Downloaded (conan-center)
        libbacktrace/cci.20210118#a7691bfccd8caaf66309df196790a5a1 - Downloaded (conan-center)
        libglvnd/1.7.0#cd2e728b07cc6cf5e2e0d88ca6d689f8 - Downloaded (conan-center)
        libharu/2.4.4#9259d30533775316235d6e5f1f2ffd06 - Downloaded (conan-center)
        libiconv/1.17#73fefc1b696e069df90fd1d18aa63edd - Downloaded (conan-center)
        libjpeg/9e#3cd27a78643419450ee6d3739514d25c - Downloaded (conan-center)
        libpng/1.6.43#c219d8f01983bac10c404fc613605eef - Downloaded (conan-center)
        lz4/1.9.4#652b313a0444c8b1d60d1bf9e95fb0a1 - Downloaded (conan-center)
        mesa-glu/9.0.3#94609f918d5ca4e5fea0f7a985b29f68 - Downloaded (conan-center)
        nlohmann_json/3.11.3#45828be26eb619a2e04ca517bb7b828d - Downloaded (conan-center)
        opengl/system#4df6fecde4084386beded3ed0e56e4ea - Downloaded (conan-center)
        proj/9.3.1#23136aa2e9754eff2d00b443c297d962 - Downloaded (conan-center)
        pugixml/1.14#c6afdcf73d71858303d8260b0d76ff91 - Downloaded (conan-center)
        utfcpp/4.0.4#6d93b29490c5cba2a9b4c06ae0c89cfd - Downloaded (conan-center)
        util-linux-libuuid/2.39.2#339f80aea7e5cf507b5b9839a128909f - Downloaded (conan-center)
        vtk/9.3.1#5706575ce1eddc49d7e2910e5c87d70a - Cache
        xorg/system#f626cbdd0ba57d9c53bce2d8b9362fad - Downloaded (conan-center)
        xorg-macros/1.19.3#c3465b331ce1d044ee771dc5e4529b79 - Downloaded (conan-center)
        xorg-proto/2022.2#0088fff0ee788a2fa8f22a9704ea941a - Downloaded (conan-center)
        xz_utils/5.4.5#51e5a6e6564f4ea3afd79def01f035ad - Downloaded (conan-center)
        zlib/1.3.1#f52e03ae3d251dec704634230cd806a2 - Downloaded (conan-center)
    Build requirements
        autoconf/2.71#f9307992909d7fb3df459340f1932809 - Downloaded (conan-center)
        automake/1.16.5#058bda3e21c36c9aa8425daf3c1faf50 - Downloaded (conan-center)
        b2/5.2.1#91bc73931a0acb655947a81569ed8b80 - Downloaded (conan-center)
        cmake/3.30.1#6d832cf2d46f6ec969ca5ed5b41f91eb - Downloaded (conan-center)
        gperf/3.1#1d622ad9717e9348ed3685c9994ad0b9 - Downloaded (conan-center)
        m4/1.4.19#b38ced39a01e31fef5435bc634461fd2 - Downloaded (conan-center)
        meson/1.2.2#04bdfb85d665c82b08a3510aee3ffd19 - Downloaded (conan-center)
        meson/1.2.3#aad1203ff72cd2dd1b43e5dfad9783a1 - Downloaded (conan-center)
        meson/1.3.2#d1125ba555ec1a94f165a3412fdf7f88 - Downloaded (conan-center)
        meson/1.4.0#024dfac41ea5570cb1aec3ea6fe34d0a - Downloaded (conan-center)
        ninja/1.11.1#77587f8c8318662ac8e5a7867eb4be21 - Downloaded (conan-center)
        pkgconf/2.0.3#f996677e96e61e6552d85e83756c328b - Downloaded (conan-center)
        pkgconf/2.1.0#27f44583701117b571307cf5b5fe5605 - Downloaded (conan-center)
        xorg-macros/1.19.3#c3465b331ce1d044ee771dc5e4529b79 - Downloaded (conan-center)
    Resolved version ranges
        b2/[>=5.2 <6]: b2/5.2.1
        cmake/[>=3.18 <4]: cmake/3.30.1
        expat/[>=2.6.2 <3]: expat/2.6.2
        libpng/[>=1.6 <2]: libpng/1.6.43
        xz_utils/[>=5.4.5 <6]: xz_utils/5.4.5
        zlib/[>=1.2.11 <2]: zlib/1.3.1
    ERROR: Version conflict: Conflict between sqlite3/3.44.2 and sqlite3/3.45.3 in the graph.
    Conflict originates from proj/9.3.1
    
    Run 'conan graph info ... --format=html > graph.html' and open 'graph.html' to inspect the conflict graphically.
    

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.

conan-center-bot avatar Aug 03 '24 14:08 conan-center-bot

Conan v1 pipeline :x:

Failure in build 2 (a58c847abcfdfbf7381ebf747a0684de49f2651b):

  • vtk/9.3.1: Error running command conan export recipes/vtk/all/conanfile.py vtk/9.3.1@:
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    ERROR: Error loading conanfile at '/home/conan/workspace/prod-v1_cci_PR-24808/recipes/vtk/all/conanfile.py': : Error in init() method, line 223
    	self.options.update(new_options, new_defaults)
    	TypeError: update expected at most 1 arguments, got 2
    

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.

conan-center-bot avatar Aug 03 '24 15:08 conan-center-bot

Conan v1 pipeline :x:

Failure in build 3 (60f8472b3a54c7dbb74c2ac9da6a02694cc35f2a):

  • vtk/9.3.1: Error running command conan export recipes/vtk/all/conanfile.py vtk/9.3.1@:
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    ERROR: Error loading conanfile at '/home/conan/workspace/prod-v1_cci_PR-24808/recipes/vtk/all/conanfile.py': : Error in init() method, line 223
    	self.options.update(new_options, new_defaults)
    	TypeError: update expected at most 1 arguments, got 2
    

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.


Conan v2 pipeline :x:

Note: Conan v2 builds are now mandatory. Please read our discussion about it.

The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.

Failure in build 3 (60f8472b3a54c7dbb74c2ac9da6a02694cc35f2a):

  • vtk/9.3.1: Error running command conan graph info --requires vtk/9.3.1@#062985795e909ced8498b6649efe1f02 --build vtk/9.3.1@#062985795e909ced8498b6649efe1f02 -f json -pr:h /home/conan/workspace/prod-v2/bsr/69748/eddec/profile_linux_11_libstdcpp11_17_gcc_release_64.-shared-False.txt -pr:b /home/conan/workspace/prod-v2/bsr/69748/eddec/profile_linux_11_libstdcpp11_17_gcc_release_64..txt:
    ======== Computing dependency graph ========
    double-conversion/3.3.0: Not found in local cache, looking in remotes...
    double-conversion/3.3.0: Checking remote: conan-center
    double-conversion/3.3.0: Downloaded recipe revision 33321c201741cc32b51169c6d2d05e60
    exprtk/0.0.2: Not found in local cache, looking in remotes...
    exprtk/0.0.2: Checking remote: conan-center
    exprtk/0.0.2: Downloaded recipe revision 7c52632dc5320bf71832189b33d0fee8
    fast_float/6.1.3: Not found in local cache, looking in remotes...
    fast_float/6.1.3: Checking remote: conan-center
    fast_float/6.1.3: Downloaded recipe revision eb74c0b0102c8ea0e53ea10033755ef4
    libarchive/3.7.4: Not found in local cache, looking in remotes...
    libarchive/3.7.4: Checking remote: conan-center
    libarchive/3.7.4: Downloaded recipe revision db39e5a5cddfd3a1884daaab4b7942fb
    zlib/1.3.1: Not found in local cache, looking in remotes...
    zlib/1.3.1: Checking remote: conan-center
    zlib/1.3.1: Downloaded recipe revision f52e03ae3d251dec704634230cd806a2
    libiconv/1.17: Not found in local cache, looking in remotes...
    libiconv/1.17: Checking remote: conan-center
    libiconv/1.17: Downloaded recipe revision 73fefc1b696e069df90fd1d18aa63edd
    lz4/1.9.4: Not found in local cache, looking in remotes...
    lz4/1.9.4: Checking remote: conan-center
    lz4/1.9.4: Downloaded recipe revision 652b313a0444c8b1d60d1bf9e95fb0a1
    pugixml/1.14: Not found in local cache, looking in remotes...
    pugixml/1.14: Checking remote: conan-center
    pugixml/1.14: Downloaded recipe revision c6afdcf73d71858303d8260b0d76ff91
    utfcpp/4.0.4: Not found in local cache, looking in remotes...
    utfcpp/4.0.4: Checking remote: conan-center
    utfcpp/4.0.4: Downloaded recipe revision 6d93b29490c5cba2a9b4c06ae0c89cfd
    xz_utils/5.4.5: Not found in local cache, looking in remotes...
    xz_utils/5.4.5: Checking remote: conan-center
    xz_utils/5.4.5: Downloaded recipe revision 51e5a6e6564f4ea3afd79def01f035ad
    boost/1.85.0: Not found in local cache, looking in remotes...
    boost/1.85.0: Checking remote: conan-center
    boost/1.85.0: Downloaded recipe revision 0146e46a0e32fbb44e7189f25c193dae
    bzip2/1.0.8: Not found in local cache, looking in remotes...
    bzip2/1.0.8: Checking remote: conan-center
    bzip2/1.0.8: Downloaded recipe revision 457c272f7da34cb9c67456dd217d36c4
    libbacktrace/cci.20210118: Not found in local cache, looking in remotes...
    libbacktrace/cci.20210118: Checking remote: conan-center
    libbacktrace/cci.20210118: Downloaded recipe revision a7691bfccd8caaf66309df196790a5a1
    b2/5.2.1: Not found in local cache, looking in remotes...
    b2/5.2.1: Checking remote: conan-center
    b2/5.2.1: Downloaded recipe revision 91bc73931a0acb655947a81569ed8b80
    cli11/2.4.2: Not found in local cache, looking in remotes...
    cli11/2.4.2: Checking remote: conan-center
    cli11/2.4.2: Downloaded recipe revision 1b431bda2fb2cd3efed633899abcd8cc
    eigen/3.4.0: Not found in local cache, looking in remotes...
    eigen/3.4.0: Checking remote: conan-center
    eigen/3.4.0: Downloaded recipe revision 2e192482a8acff96fe34766adca2b24c
    expat/2.6.2: Not found in local cache, looking in remotes...
    expat/2.6.2: Checking remote: conan-center
    expat/2.6.2: Downloaded recipe revision 2d385d0d50eb5561006a7ff9e356656b
    fmt/10.2.1: Not found in local cache, looking in remotes...
    fmt/10.2.1: Checking remote: conan-center
    fmt/10.2.1: Downloaded recipe revision 8d582aeebdf05b6f0abe2911b926c3f4
    fontconfig/2.15.0: Not found in local cache, looking in remotes...
    fontconfig/2.15.0: Checking remote: conan-center
    fontconfig/2.15.0: Downloaded recipe revision e0b660ff9389f08e1aca1a67d748d737
    freetype/2.13.2: Not found in local cache, looking in remotes...
    freetype/2.13.2: Checking remote: conan-center
    freetype/2.13.2: Downloaded recipe revision 7934d59c447d72edcd56025dc60e1aeb
    libpng/1.6.43: Not found in local cache, looking in remotes...
    libpng/1.6.43: Checking remote: conan-center
    libpng/1.6.43: Downloaded recipe revision c219d8f01983bac10c404fc613605eef
    brotli/1.1.0: Not found in local cache, looking in remotes...
    brotli/1.1.0: Checking remote: conan-center
    brotli/1.1.0: Downloaded recipe revision d56d7bb9ca722942aba17369cb5c0519
    meson/1.3.2: Not found in local cache, looking in remotes...
    meson/1.3.2: Checking remote: conan-center
    meson/1.3.2: Downloaded recipe revision d1125ba555ec1a94f165a3412fdf7f88
    ninja/1.11.1: Not found in local cache, looking in remotes...
    ninja/1.11.1: Checking remote: conan-center
    ninja/1.11.1: Downloaded recipe revision 77587f8c8318662ac8e5a7867eb4be21
    pkgconf/2.1.0: Not found in local cache, looking in remotes...
    pkgconf/2.1.0: Checking remote: conan-center
    pkgconf/2.1.0: Downloaded recipe revision 27f44583701117b571307cf5b5fe5605
    meson/1.2.2: Not found in local cache, looking in remotes...
    meson/1.2.2: Checking remote: conan-center
    meson/1.2.2: Downloaded recipe revision 04bdfb85d665c82b08a3510aee3ffd19
    util-linux-libuuid/2.39.2: Not found in local cache, looking in remotes...
    util-linux-libuuid/2.39.2: Checking remote: conan-center
    util-linux-libuuid/2.39.2: Downloaded recipe revision 339f80aea7e5cf507b5b9839a128909f
    gperf/3.1: Not found in local cache, looking in remotes...
    gperf/3.1: Checking remote: conan-center
    gperf/3.1: Downloaded recipe revision 1d622ad9717e9348ed3685c9994ad0b9
    meson/1.4.0: Not found in local cache, looking in remotes...
    meson/1.4.0: Checking remote: conan-center
    meson/1.4.0: Downloaded recipe revision 024dfac41ea5570cb1aec3ea6fe34d0a
    glew/2.2.0: Not found in local cache, looking in remotes...
    glew/2.2.0: Checking remote: conan-center
    glew/2.2.0: Downloaded recipe revision 7ed80001a1a9686f00ccf4f4680c5f73
    opengl/system: Not found in local cache, looking in remotes...
    opengl/system: Checking remote: conan-center
    opengl/system: Downloaded recipe revision 4df6fecde4084386beded3ed0e56e4ea
    mesa-glu/9.0.3: Not found in local cache, looking in remotes...
    mesa-glu/9.0.3: Checking remote: conan-center
    mesa-glu/9.0.3: Downloaded recipe revision 94609f918d5ca4e5fea0f7a985b29f68
    libglvnd/1.7.0: Not found in local cache, looking in remotes...
    libglvnd/1.7.0: Checking remote: conan-center
    libglvnd/1.7.0: Downloaded recipe revision cd2e728b07cc6cf5e2e0d88ca6d689f8
    xorg/system: Not found in local cache, looking in remotes...
    xorg/system: Checking remote: conan-center
    xorg/system: Downloaded recipe revision f626cbdd0ba57d9c53bce2d8b9362fad
    xorg-proto/2022.2: Not found in local cache, looking in remotes...
    xorg-proto/2022.2: Checking remote: conan-center
    xorg-proto/2022.2: Downloaded recipe revision 0088fff0ee788a2fa8f22a9704ea941a
    xorg-macros/1.19.3: Not found in local cache, looking in remotes...
    xorg-macros/1.19.3: Checking remote: conan-center
    xorg-macros/1.19.3: Downloaded recipe revision c3465b331ce1d044ee771dc5e4529b79
    automake/1.16.5: Not found in local cache, looking in remotes...
    automake/1.16.5: Checking remote: conan-center
    automake/1.16.5: Downloaded recipe revision 058bda3e21c36c9aa8425daf3c1faf50
    autoconf/2.71: Not found in local cache, looking in remotes...
    autoconf/2.71: Checking remote: conan-center
    autoconf/2.71: Downloaded recipe revision f9307992909d7fb3df459340f1932809
    m4/1.4.19: Not found in local cache, looking in remotes...
    m4/1.4.19: Checking remote: conan-center
    m4/1.4.19: Downloaded recipe revision b38ced39a01e31fef5435bc634461fd2
    pkgconf/2.0.3: Not found in local cache, looking in remotes...
    pkgconf/2.0.3: Checking remote: conan-center
    pkgconf/2.0.3: Downloaded recipe revision f996677e96e61e6552d85e83756c328b
    meson/1.2.3: Not found in local cache, looking in remotes...
    meson/1.2.3: Checking remote: conan-center
    meson/1.2.3: Downloaded recipe revision aad1203ff72cd2dd1b43e5dfad9783a1
    hdf5/1.14.1: Not found in local cache, looking in remotes...
    hdf5/1.14.1: Checking remote: conan-center
    hdf5/1.14.1: Downloaded recipe revision 1b521c1ac9b9638c5491d26e15a4d140
    cmake/3.30.1: Not found in local cache, looking in remotes...
    cmake/3.30.1: Checking remote: conan-center
    cmake/3.30.1: Downloaded recipe revision 6d832cf2d46f6ec969ca5ed5b41f91eb
    libjpeg/9e: Not found in local cache, looking in remotes...
    libjpeg/9e: Checking remote: conan-center
    libjpeg/9e: Downloaded recipe revision 3cd27a78643419450ee6d3739514d25c
    jsoncpp/1.9.5: Not found in local cache, looking in remotes...
    jsoncpp/1.9.5: Checking remote: conan-center
    jsoncpp/1.9.5: Downloaded recipe revision 9d91be1604af36ced56ae89ee65d53e0
    libharu/2.4.4: Not found in local cache, looking in remotes...
    libharu/2.4.4: Checking remote: conan-center
    libharu/2.4.4: Downloaded recipe revision 9259d30533775316235d6e5f1f2ffd06
    proj/9.3.1: Not found in local cache, looking in remotes...
    proj/9.3.1: Checking remote: conan-center
    proj/9.3.1: Downloaded recipe revision 23136aa2e9754eff2d00b443c297d962
    nlohmann_json/3.11.3: Not found in local cache, looking in remotes...
    nlohmann_json/3.11.3: Checking remote: conan-center
    nlohmann_json/3.11.3: Downloaded recipe revision 45828be26eb619a2e04ca517bb7b828d
    Graph root
        cli
    Requirements
        boost/1.85.0#0146e46a0e32fbb44e7189f25c193dae - Downloaded (conan-center)
        brotli/1.1.0#d56d7bb9ca722942aba17369cb5c0519 - Downloaded (conan-center)
        bzip2/1.0.8#457c272f7da34cb9c67456dd217d36c4 - Downloaded (conan-center)
        cli11/2.4.2#1b431bda2fb2cd3efed633899abcd8cc - Downloaded (conan-center)
        double-conversion/3.3.0#33321c201741cc32b51169c6d2d05e60 - Downloaded (conan-center)
        eigen/3.4.0#2e192482a8acff96fe34766adca2b24c - Downloaded (conan-center)
        expat/2.6.2#2d385d0d50eb5561006a7ff9e356656b - Downloaded (conan-center)
        exprtk/0.0.2#7c52632dc5320bf71832189b33d0fee8 - Downloaded (conan-center)
        fast_float/6.1.3#eb74c0b0102c8ea0e53ea10033755ef4 - Downloaded (conan-center)
        fmt/10.2.1#8d582aeebdf05b6f0abe2911b926c3f4 - Downloaded (conan-center)
        fontconfig/2.15.0#e0b660ff9389f08e1aca1a67d748d737 - Downloaded (conan-center)
        freetype/2.13.2#7934d59c447d72edcd56025dc60e1aeb - Downloaded (conan-center)
        glew/2.2.0#7ed80001a1a9686f00ccf4f4680c5f73 - Downloaded (conan-center)
        hdf5/1.14.1#1b521c1ac9b9638c5491d26e15a4d140 - Downloaded (conan-center)
        jsoncpp/1.9.5#9d91be1604af36ced56ae89ee65d53e0 - Downloaded (conan-center)
        libarchive/3.7.4#db39e5a5cddfd3a1884daaab4b7942fb - Downloaded (conan-center)
        libbacktrace/cci.20210118#a7691bfccd8caaf66309df196790a5a1 - Downloaded (conan-center)
        libglvnd/1.7.0#cd2e728b07cc6cf5e2e0d88ca6d689f8 - Downloaded (conan-center)
        libharu/2.4.4#9259d30533775316235d6e5f1f2ffd06 - Downloaded (conan-center)
        libiconv/1.17#73fefc1b696e069df90fd1d18aa63edd - Downloaded (conan-center)
        libjpeg/9e#3cd27a78643419450ee6d3739514d25c - Downloaded (conan-center)
        libpng/1.6.43#c219d8f01983bac10c404fc613605eef - Downloaded (conan-center)
        lz4/1.9.4#652b313a0444c8b1d60d1bf9e95fb0a1 - Downloaded (conan-center)
        mesa-glu/9.0.3#94609f918d5ca4e5fea0f7a985b29f68 - Downloaded (conan-center)
        nlohmann_json/3.11.3#45828be26eb619a2e04ca517bb7b828d - Downloaded (conan-center)
        opengl/system#4df6fecde4084386beded3ed0e56e4ea - Downloaded (conan-center)
        proj/9.3.1#23136aa2e9754eff2d00b443c297d962 - Downloaded (conan-center)
        pugixml/1.14#c6afdcf73d71858303d8260b0d76ff91 - Downloaded (conan-center)
        utfcpp/4.0.4#6d93b29490c5cba2a9b4c06ae0c89cfd - Downloaded (conan-center)
        util-linux-libuuid/2.39.2#339f80aea7e5cf507b5b9839a128909f - Downloaded (conan-center)
        vtk/9.3.1#062985795e909ced8498b6649efe1f02 - Cache
        xorg/system#f626cbdd0ba57d9c53bce2d8b9362fad - Downloaded (conan-center)
        xorg-macros/1.19.3#c3465b331ce1d044ee771dc5e4529b79 - Downloaded (conan-center)
        xorg-proto/2022.2#0088fff0ee788a2fa8f22a9704ea941a - Downloaded (conan-center)
        xz_utils/5.4.5#51e5a6e6564f4ea3afd79def01f035ad - Downloaded (conan-center)
        zlib/1.3.1#f52e03ae3d251dec704634230cd806a2 - Downloaded (conan-center)
    Build requirements
        autoconf/2.71#f9307992909d7fb3df459340f1932809 - Downloaded (conan-center)
        automake/1.16.5#058bda3e21c36c9aa8425daf3c1faf50 - Downloaded (conan-center)
        b2/5.2.1#91bc73931a0acb655947a81569ed8b80 - Downloaded (conan-center)
        cmake/3.30.1#6d832cf2d46f6ec969ca5ed5b41f91eb - Downloaded (conan-center)
        gperf/3.1#1d622ad9717e9348ed3685c9994ad0b9 - Downloaded (conan-center)
        m4/1.4.19#b38ced39a01e31fef5435bc634461fd2 - Downloaded (conan-center)
        meson/1.2.2#04bdfb85d665c82b08a3510aee3ffd19 - Downloaded (conan-center)
        meson/1.2.3#aad1203ff72cd2dd1b43e5dfad9783a1 - Downloaded (conan-center)
        meson/1.3.2#d1125ba555ec1a94f165a3412fdf7f88 - Downloaded (conan-center)
        meson/1.4.0#024dfac41ea5570cb1aec3ea6fe34d0a - Downloaded (conan-center)
        ninja/1.11.1#77587f8c8318662ac8e5a7867eb4be21 - Downloaded (conan-center)
        pkgconf/2.0.3#f996677e96e61e6552d85e83756c328b - Downloaded (conan-center)
        pkgconf/2.1.0#27f44583701117b571307cf5b5fe5605 - Downloaded (conan-center)
        xorg-macros/1.19.3#c3465b331ce1d044ee771dc5e4529b79 - Downloaded (conan-center)
    Resolved version ranges
        b2/[>=5.2 <6]: b2/5.2.1
        cmake/[>=3.18 <4]: cmake/3.30.1
        expat/[>=2.6.2 <3]: expat/2.6.2
        libpng/[>=1.6 <2]: libpng/1.6.43
        xz_utils/[>=5.4.5 <6]: xz_utils/5.4.5
        zlib/[>=1.2.11 <2]: zlib/1.3.1
    ERROR: Version conflict: Conflict between sqlite3/3.44.2 and sqlite3/3.45.3 in the graph.
    Conflict originates from proj/9.3.1
    
    Run 'conan graph info ... --format=html > graph.html' and open 'graph.html' to inspect the conflict graphically.
    

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.

conan-center-bot avatar Aug 03 '24 15:08 conan-center-bot

Conan v1 pipeline :x:

Failure in build 4 (2ccf349727b71ffdf626d438c7781e3ae00b6c7d):

  • vtk/9.3.1: Error running command conan export recipes/vtk/all/conanfile.py vtk/9.3.1@:
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    ERROR: Error loading conanfile at '/home/conan/workspace/prod-v1_cci_PR-24808/recipes/vtk/all/conanfile.py': Current Conan version (1.64.1) does not satisfy the defined one (>=2.0.0).
    

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.


Conan v2 pipeline :x:

Note: Conan v2 builds are now mandatory. Please read our discussion about it.

The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.

Failure in build 4 (2ccf349727b71ffdf626d438c7781e3ae00b6c7d):

  • vtk/9.3.1: Error running command conan graph info --requires vtk/9.3.1@#10d19ab160b55139a235990ed2bc2d51 --build vtk/9.3.1@#10d19ab160b55139a235990ed2bc2d51 -f json -pr:h /home/conan/workspace/prod-v2/bsr/69843/cbdca/profile_linux_11_libstdcpp11_17_gcc_release_64.-shared-False.txt -pr:b /home/conan/workspace/prod-v2/bsr/69843/cbdca/profile_linux_11_libstdcpp11_17_gcc_release_64..txt:
    ======== Computing dependency graph ========
    double-conversion/3.3.0: Not found in local cache, looking in remotes...
    double-conversion/3.3.0: Checking remote: conan-center
    double-conversion/3.3.0: Downloaded recipe revision 33321c201741cc32b51169c6d2d05e60
    exprtk/0.0.2: Not found in local cache, looking in remotes...
    exprtk/0.0.2: Checking remote: conan-center
    exprtk/0.0.2: Downloaded recipe revision 7c52632dc5320bf71832189b33d0fee8
    fast_float/6.1.3: Not found in local cache, looking in remotes...
    fast_float/6.1.3: Checking remote: conan-center
    fast_float/6.1.3: Downloaded recipe revision eb74c0b0102c8ea0e53ea10033755ef4
    libarchive/3.7.4: Not found in local cache, looking in remotes...
    libarchive/3.7.4: Checking remote: conan-center
    libarchive/3.7.4: Downloaded recipe revision db39e5a5cddfd3a1884daaab4b7942fb
    zlib/1.3.1: Not found in local cache, looking in remotes...
    zlib/1.3.1: Checking remote: conan-center
    zlib/1.3.1: Downloaded recipe revision f52e03ae3d251dec704634230cd806a2
    libiconv/1.17: Not found in local cache, looking in remotes...
    libiconv/1.17: Checking remote: conan-center
    libiconv/1.17: Downloaded recipe revision 73fefc1b696e069df90fd1d18aa63edd
    lz4/1.9.4: Not found in local cache, looking in remotes...
    lz4/1.9.4: Checking remote: conan-center
    lz4/1.9.4: Downloaded recipe revision 652b313a0444c8b1d60d1bf9e95fb0a1
    pugixml/1.14: Not found in local cache, looking in remotes...
    pugixml/1.14: Checking remote: conan-center
    pugixml/1.14: Downloaded recipe revision c6afdcf73d71858303d8260b0d76ff91
    utfcpp/4.0.4: Not found in local cache, looking in remotes...
    utfcpp/4.0.4: Checking remote: conan-center
    utfcpp/4.0.4: Downloaded recipe revision 6d93b29490c5cba2a9b4c06ae0c89cfd
    xz_utils/5.4.5: Not found in local cache, looking in remotes...
    xz_utils/5.4.5: Checking remote: conan-center
    xz_utils/5.4.5: Downloaded recipe revision 51e5a6e6564f4ea3afd79def01f035ad
    boost/1.85.0: Not found in local cache, looking in remotes...
    boost/1.85.0: Checking remote: conan-center
    boost/1.85.0: Downloaded recipe revision 0146e46a0e32fbb44e7189f25c193dae
    bzip2/1.0.8: Not found in local cache, looking in remotes...
    bzip2/1.0.8: Checking remote: conan-center
    bzip2/1.0.8: Downloaded recipe revision 457c272f7da34cb9c67456dd217d36c4
    libbacktrace/cci.20210118: Not found in local cache, looking in remotes...
    libbacktrace/cci.20210118: Checking remote: conan-center
    libbacktrace/cci.20210118: Downloaded recipe revision a7691bfccd8caaf66309df196790a5a1
    b2/5.2.1: Not found in local cache, looking in remotes...
    b2/5.2.1: Checking remote: conan-center
    b2/5.2.1: Downloaded recipe revision 91bc73931a0acb655947a81569ed8b80
    cli11/2.4.2: Not found in local cache, looking in remotes...
    cli11/2.4.2: Checking remote: conan-center
    cli11/2.4.2: Downloaded recipe revision 1b431bda2fb2cd3efed633899abcd8cc
    eigen/3.4.0: Not found in local cache, looking in remotes...
    eigen/3.4.0: Checking remote: conan-center
    eigen/3.4.0: Downloaded recipe revision 2e192482a8acff96fe34766adca2b24c
    expat/2.6.2: Not found in local cache, looking in remotes...
    expat/2.6.2: Checking remote: conan-center
    expat/2.6.2: Downloaded recipe revision 2d385d0d50eb5561006a7ff9e356656b
    fmt/10.2.1: Not found in local cache, looking in remotes...
    fmt/10.2.1: Checking remote: conan-center
    fmt/10.2.1: Downloaded recipe revision 8d582aeebdf05b6f0abe2911b926c3f4
    fontconfig/2.15.0: Not found in local cache, looking in remotes...
    fontconfig/2.15.0: Checking remote: conan-center
    fontconfig/2.15.0: Downloaded recipe revision e0b660ff9389f08e1aca1a67d748d737
    freetype/2.13.2: Not found in local cache, looking in remotes...
    freetype/2.13.2: Checking remote: conan-center
    freetype/2.13.2: Downloaded recipe revision 7934d59c447d72edcd56025dc60e1aeb
    libpng/1.6.43: Not found in local cache, looking in remotes...
    libpng/1.6.43: Checking remote: conan-center
    libpng/1.6.43: Downloaded recipe revision c219d8f01983bac10c404fc613605eef
    brotli/1.1.0: Not found in local cache, looking in remotes...
    brotli/1.1.0: Checking remote: conan-center
    brotli/1.1.0: Downloaded recipe revision d56d7bb9ca722942aba17369cb5c0519
    meson/1.3.2: Not found in local cache, looking in remotes...
    meson/1.3.2: Checking remote: conan-center
    meson/1.3.2: Downloaded recipe revision d1125ba555ec1a94f165a3412fdf7f88
    ninja/1.11.1: Not found in local cache, looking in remotes...
    ninja/1.11.1: Checking remote: conan-center
    ninja/1.11.1: Downloaded recipe revision 77587f8c8318662ac8e5a7867eb4be21
    pkgconf/2.1.0: Not found in local cache, looking in remotes...
    pkgconf/2.1.0: Checking remote: conan-center
    pkgconf/2.1.0: Downloaded recipe revision 27f44583701117b571307cf5b5fe5605
    meson/1.2.2: Not found in local cache, looking in remotes...
    meson/1.2.2: Checking remote: conan-center
    meson/1.2.2: Downloaded recipe revision 04bdfb85d665c82b08a3510aee3ffd19
    util-linux-libuuid/2.39.2: Not found in local cache, looking in remotes...
    util-linux-libuuid/2.39.2: Checking remote: conan-center
    util-linux-libuuid/2.39.2: Downloaded recipe revision 339f80aea7e5cf507b5b9839a128909f
    gperf/3.1: Not found in local cache, looking in remotes...
    gperf/3.1: Checking remote: conan-center
    gperf/3.1: Downloaded recipe revision 1d622ad9717e9348ed3685c9994ad0b9
    meson/1.4.0: Not found in local cache, looking in remotes...
    meson/1.4.0: Checking remote: conan-center
    meson/1.4.0: Downloaded recipe revision 024dfac41ea5570cb1aec3ea6fe34d0a
    glew/2.2.0: Not found in local cache, looking in remotes...
    glew/2.2.0: Checking remote: conan-center
    glew/2.2.0: Downloaded recipe revision 7ed80001a1a9686f00ccf4f4680c5f73
    opengl/system: Not found in local cache, looking in remotes...
    opengl/system: Checking remote: conan-center
    opengl/system: Downloaded recipe revision 4df6fecde4084386beded3ed0e56e4ea
    mesa-glu/9.0.3: Not found in local cache, looking in remotes...
    mesa-glu/9.0.3: Checking remote: conan-center
    mesa-glu/9.0.3: Downloaded recipe revision 94609f918d5ca4e5fea0f7a985b29f68
    libglvnd/1.7.0: Not found in local cache, looking in remotes...
    libglvnd/1.7.0: Checking remote: conan-center
    libglvnd/1.7.0: Downloaded recipe revision cd2e728b07cc6cf5e2e0d88ca6d689f8
    xorg/system: Not found in local cache, looking in remotes...
    xorg/system: Checking remote: conan-center
    xorg/system: Downloaded recipe revision f626cbdd0ba57d9c53bce2d8b9362fad
    xorg-proto/2022.2: Not found in local cache, looking in remotes...
    xorg-proto/2022.2: Checking remote: conan-center
    xorg-proto/2022.2: Downloaded recipe revision 0088fff0ee788a2fa8f22a9704ea941a
    xorg-macros/1.19.3: Not found in local cache, looking in remotes...
    xorg-macros/1.19.3: Checking remote: conan-center
    xorg-macros/1.19.3: Downloaded recipe revision c3465b331ce1d044ee771dc5e4529b79
    automake/1.16.5: Not found in local cache, looking in remotes...
    automake/1.16.5: Checking remote: conan-center
    automake/1.16.5: Downloaded recipe revision 058bda3e21c36c9aa8425daf3c1faf50
    autoconf/2.71: Not found in local cache, looking in remotes...
    autoconf/2.71: Checking remote: conan-center
    autoconf/2.71: Downloaded recipe revision f9307992909d7fb3df459340f1932809
    m4/1.4.19: Not found in local cache, looking in remotes...
    m4/1.4.19: Checking remote: conan-center
    m4/1.4.19: Downloaded recipe revision b38ced39a01e31fef5435bc634461fd2
    pkgconf/2.0.3: Not found in local cache, looking in remotes...
    pkgconf/2.0.3: Checking remote: conan-center
    pkgconf/2.0.3: Downloaded recipe revision f996677e96e61e6552d85e83756c328b
    meson/1.2.3: Not found in local cache, looking in remotes...
    meson/1.2.3: Checking remote: conan-center
    meson/1.2.3: Downloaded recipe revision aad1203ff72cd2dd1b43e5dfad9783a1
    hdf5/1.14.1: Not found in local cache, looking in remotes...
    hdf5/1.14.1: Checking remote: conan-center
    hdf5/1.14.1: Downloaded recipe revision 1b521c1ac9b9638c5491d26e15a4d140
    cmake/3.30.1: Not found in local cache, looking in remotes...
    cmake/3.30.1: Checking remote: conan-center
    cmake/3.30.1: Downloaded recipe revision 6d832cf2d46f6ec969ca5ed5b41f91eb
    libjpeg/9e: Not found in local cache, looking in remotes...
    libjpeg/9e: Checking remote: conan-center
    libjpeg/9e: Downloaded recipe revision 3cd27a78643419450ee6d3739514d25c
    jsoncpp/1.9.5: Not found in local cache, looking in remotes...
    jsoncpp/1.9.5: Checking remote: conan-center
    jsoncpp/1.9.5: Downloaded recipe revision 9d91be1604af36ced56ae89ee65d53e0
    libharu/2.4.4: Not found in local cache, looking in remotes...
    libharu/2.4.4: Checking remote: conan-center
    libharu/2.4.4: Downloaded recipe revision 9259d30533775316235d6e5f1f2ffd06
    proj/9.3.1: Not found in local cache, looking in remotes...
    proj/9.3.1: Checking remote: conan-center
    proj/9.3.1: Downloaded recipe revision 23136aa2e9754eff2d00b443c297d962
    nlohmann_json/3.11.3: Not found in local cache, looking in remotes...
    nlohmann_json/3.11.3: Checking remote: conan-center
    nlohmann_json/3.11.3: Downloaded recipe revision 45828be26eb619a2e04ca517bb7b828d
    Graph root
        cli
    Requirements
        boost/1.85.0#0146e46a0e32fbb44e7189f25c193dae - Downloaded (conan-center)
        brotli/1.1.0#d56d7bb9ca722942aba17369cb5c0519 - Downloaded (conan-center)
        bzip2/1.0.8#457c272f7da34cb9c67456dd217d36c4 - Downloaded (conan-center)
        cli11/2.4.2#1b431bda2fb2cd3efed633899abcd8cc - Downloaded (conan-center)
        double-conversion/3.3.0#33321c201741cc32b51169c6d2d05e60 - Downloaded (conan-center)
        eigen/3.4.0#2e192482a8acff96fe34766adca2b24c - Downloaded (conan-center)
        expat/2.6.2#2d385d0d50eb5561006a7ff9e356656b - Downloaded (conan-center)
        exprtk/0.0.2#7c52632dc5320bf71832189b33d0fee8 - Downloaded (conan-center)
        fast_float/6.1.3#eb74c0b0102c8ea0e53ea10033755ef4 - Downloaded (conan-center)
        fmt/10.2.1#8d582aeebdf05b6f0abe2911b926c3f4 - Downloaded (conan-center)
        fontconfig/2.15.0#e0b660ff9389f08e1aca1a67d748d737 - Downloaded (conan-center)
        freetype/2.13.2#7934d59c447d72edcd56025dc60e1aeb - Downloaded (conan-center)
        glew/2.2.0#7ed80001a1a9686f00ccf4f4680c5f73 - Downloaded (conan-center)
        hdf5/1.14.1#1b521c1ac9b9638c5491d26e15a4d140 - Downloaded (conan-center)
        jsoncpp/1.9.5#9d91be1604af36ced56ae89ee65d53e0 - Downloaded (conan-center)
        libarchive/3.7.4#db39e5a5cddfd3a1884daaab4b7942fb - Downloaded (conan-center)
        libbacktrace/cci.20210118#a7691bfccd8caaf66309df196790a5a1 - Downloaded (conan-center)
        libglvnd/1.7.0#cd2e728b07cc6cf5e2e0d88ca6d689f8 - Downloaded (conan-center)
        libharu/2.4.4#9259d30533775316235d6e5f1f2ffd06 - Downloaded (conan-center)
        libiconv/1.17#73fefc1b696e069df90fd1d18aa63edd - Downloaded (conan-center)
        libjpeg/9e#3cd27a78643419450ee6d3739514d25c - Downloaded (conan-center)
        libpng/1.6.43#c219d8f01983bac10c404fc613605eef - Downloaded (conan-center)
        lz4/1.9.4#652b313a0444c8b1d60d1bf9e95fb0a1 - Downloaded (conan-center)
        mesa-glu/9.0.3#94609f918d5ca4e5fea0f7a985b29f68 - Downloaded (conan-center)
        nlohmann_json/3.11.3#45828be26eb619a2e04ca517bb7b828d - Downloaded (conan-center)
        opengl/system#4df6fecde4084386beded3ed0e56e4ea - Downloaded (conan-center)
        proj/9.3.1#23136aa2e9754eff2d00b443c297d962 - Downloaded (conan-center)
        pugixml/1.14#c6afdcf73d71858303d8260b0d76ff91 - Downloaded (conan-center)
        utfcpp/4.0.4#6d93b29490c5cba2a9b4c06ae0c89cfd - Downloaded (conan-center)
        util-linux-libuuid/2.39.2#339f80aea7e5cf507b5b9839a128909f - Downloaded (conan-center)
        vtk/9.3.1#10d19ab160b55139a235990ed2bc2d51 - Cache
        xorg/system#f626cbdd0ba57d9c53bce2d8b9362fad - Downloaded (conan-center)
        xorg-macros/1.19.3#c3465b331ce1d044ee771dc5e4529b79 - Downloaded (conan-center)
        xorg-proto/2022.2#0088fff0ee788a2fa8f22a9704ea941a - Downloaded (conan-center)
        xz_utils/5.4.5#51e5a6e6564f4ea3afd79def01f035ad - Downloaded (conan-center)
        zlib/1.3.1#f52e03ae3d251dec704634230cd806a2 - Downloaded (conan-center)
    Build requirements
        autoconf/2.71#f9307992909d7fb3df459340f1932809 - Downloaded (conan-center)
        automake/1.16.5#058bda3e21c36c9aa8425daf3c1faf50 - Downloaded (conan-center)
        b2/5.2.1#91bc73931a0acb655947a81569ed8b80 - Downloaded (conan-center)
        cmake/3.30.1#6d832cf2d46f6ec969ca5ed5b41f91eb - Downloaded (conan-center)
        gperf/3.1#1d622ad9717e9348ed3685c9994ad0b9 - Downloaded (conan-center)
        m4/1.4.19#b38ced39a01e31fef5435bc634461fd2 - Downloaded (conan-center)
        meson/1.2.2#04bdfb85d665c82b08a3510aee3ffd19 - Downloaded (conan-center)
        meson/1.2.3#aad1203ff72cd2dd1b43e5dfad9783a1 - Downloaded (conan-center)
        meson/1.3.2#d1125ba555ec1a94f165a3412fdf7f88 - Downloaded (conan-center)
        meson/1.4.0#024dfac41ea5570cb1aec3ea6fe34d0a - Downloaded (conan-center)
        ninja/1.11.1#77587f8c8318662ac8e5a7867eb4be21 - Downloaded (conan-center)
        pkgconf/2.0.3#f996677e96e61e6552d85e83756c328b - Downloaded (conan-center)
        pkgconf/2.1.0#27f44583701117b571307cf5b5fe5605 - Downloaded (conan-center)
        xorg-macros/1.19.3#c3465b331ce1d044ee771dc5e4529b79 - Downloaded (conan-center)
    Resolved version ranges
        b2/[>=5.2 <6]: b2/5.2.1
        cmake/[>=3.18 <4]: cmake/3.30.1
        expat/[>=2.6.2 <3]: expat/2.6.2
        libpng/[>=1.6 <2]: libpng/1.6.43
        xz_utils/[>=5.4.5 <6]: xz_utils/5.4.5
        zlib/[>=1.2.11 <2]: zlib/1.3.1
    ERROR: Version conflict: Conflict between sqlite3/3.44.2 and sqlite3/3.45.3 in the graph.
    Conflict originates from proj/9.3.1
    
    Run 'conan graph info ... --format=html > graph.html' and open 'graph.html' to inspect the conflict graphically.
    

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.

conan-center-bot avatar Aug 04 '24 03:08 conan-center-bot

Conan v1 pipeline :x:

Failure in build 5 (5b827dbe62daa21cc41be4bf0f5f4868e5b7ff63):

  • vtk/9.3.1: Error running command conan export recipes/vtk/all/conanfile.py vtk/9.3.1@:
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    ERROR: Error loading conanfile at '/home/conan/workspace/prod-v1_cci_PR-24808/recipes/vtk/all/conanfile.py': Current Conan version (1.64.1) does not satisfy the defined one (>=2.0.0).
    

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.

conan-center-bot avatar Aug 04 '24 04:08 conan-center-bot

Conan v1 pipeline :x:

Failure in build 6 (dfe5b7781a98c4a5e4100885a5d0350f5c47d8ce):

  • vtk/9.3.1: CI failed to create some packages (All logs)

    Logs for packageID 8cdd744e2d5d41fcdb8c870f739c3bab1cef784b:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    vtk:shared=False
    
    [...]
    debconf: delaying package configuration, since apt-utils is not installed
    CMake Warning at CMake/vtkModule.cmake:4787 (find_package):
      Could not find a configuration file for package "FastFloat" that is
      compatible with requested version "3.9.0".
    
      The following configuration files were considered but not accepted:
    
        /home/conan/workspace/prod-v1/bsr/77569/adaae/.conan/data/vtk/9.3.1/_/_/build/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b/build/Release/generators/FastFloatConfig.cmake, version: 6.1.3
    
    Call Stack (most recent call first):
      CMake/vtkModule.cmake:5393 (vtk_module_find_package)
      CMake/vtkModule.cmake:5261 (vtk_module_third_party_external)
      ThirdParty/fast_float/CMakeLists.txt:1 (vtk_module_third_party)
    
    
    CMake Error at CMake/vtkModule.cmake:4793 (message):
      Could not find the FastFloat external dependency.
    Call Stack (most recent call first):
      CMake/vtkModule.cmake:5393 (vtk_module_find_package)
      CMake/vtkModule.cmake:5261 (vtk_module_third_party_external)
      ThirdParty/fast_float/CMakeLists.txt:1 (vtk_module_third_party)
    
    
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    WARN: libarchive/3.7.4: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: boost/1.84.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: fontconfig/2.15.0: requirement expat/[>=2.6.2 <3] overridden by vtk/9.3.1 to expat/2.6.2 
    WARN: freetype/2.13.2: requirement libpng/[>=1.6 <2] overridden by fontconfig/2.15.0 to libpng/1.6.43 
    WARN: freetype/2.13.2: requirement zlib/[>=1.2.10 <2] overridden by fontconfig/2.15.0 to zlib/1.3.1 
    WARN: libpng/1.6.43: requirement zlib/[>=1.2.11 <2] overridden by freetype/2.13.2 to zlib/1.3.1 
    WARN: hdf5/1.14.1: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: libharu/2.4.4: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: libharu/2.4.4: requirement libpng/[>=1.6 <2] overridden by vtk/9.3.1 to libpng/1.6.43 
    WARN: libxml2/2.12.7: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: openvdb/11.0.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: c-blosc/1.21.5: requirement zlib/[>=1.2.11 <2] overridden by openvdb/11.0.0 to zlib/1.3.1 
    WARN: openssl/3.2.2: requirement zlib/[>=1.2.11 <2] overridden by pulseaudio/14.2 to zlib/1.3.1 
    WARN: wayland/1.22.0: requirement libxml2/[>=2.12.5 <3] overridden by sdl/2.30.5 to libxml2/2.12.7 
    WARN: wayland/1.22.0: requirement expat/[>=2.6.2 <3] overridden by sdl/2.30.5 to expat/2.6.2 
    WARN: xkbcommon/1.6.0: requirement libxml2/[>=2.12.5 <3] overridden by sdl/2.30.5 to libxml2/2.12.7 
    WARN: libunwind/1.8.0: requirement zlib/[>=1.2.11 <2] overridden by sdl/2.30.5 to zlib/1.3.1 
    WARN: libtiff/4.6.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    vtk/9.3.1: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior
    vtk/9.3.1: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior
    vtk/9.3.1: ERROR: Package '8cdd744e2d5d41fcdb8c870f739c3bab1cef784b' build failed
    vtk/9.3.1: WARN: Build folder /home/conan/workspace/prod-v1/bsr/77569/adaae/.conan/data/vtk/9.3.1/_/_/build/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b/build/Release
    ERROR: vtk/9.3.1: Error in build() method, line 830
    	cmake.configure()
    	ConanException: Error 1 while executing cmake -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE="/home/conan/workspace/prod-v1/bsr/77569/adaae/.conan/data/vtk/9.3.1/_/_/build/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b/build/Release/generators/conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="/home/conan/workspace/prod-v1/bsr/77569/adaae/.conan/data/vtk/9.3.1/_/_/package/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" -DCMAKE_BUILD_TYPE="Release" "/home/conan/workspace/prod-v1/bsr/77569/adaae/.conan/data/vtk/9.3.1/_/_/source/src"
    

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.


Conan v2 pipeline :x:

Note: Conan v2 builds are now mandatory. Please read our discussion about it.

The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.

Failure in build 6 (dfe5b7781a98c4a5e4100885a5d0350f5c47d8ce):

  • vtk/9.3.1: CI failed to create some packages (All logs)

    Logs for packageID 5a5c588bb01a9a411029e04c118918c4ee26a8f8:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.cppstd=17
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    [...]
    -- Conan: Component target declared 'Boost::wave'
    -- Conan: Component target declared 'Boost::contract'
    -- Conan: Component target declared 'Boost::fiber_numa'
    -- Conan: Component target declared 'Boost::locale'
    -- Conan: Component target declared 'Boost::log'
    -- Conan: Component target declared 'Boost::type_erasure'
    -- Conan: Component target declared 'Boost::unit_test_framework'
    -- Conan: Component target declared 'Boost::log_setup'
    -- Conan: Target declared 'boost::boost'
    -- Conan: Target declared 'BZip2::BZip2'
    -- Conan: Including build module from '/home/conan/workspace/prod-v2/bsr/69864/dcead/p/bzip24ed69d4fecc16/p/lib/cmake/conan-official-bzip2-variables.cmake'
    -- Conan: Target declared 'libbacktrace::libbacktrace'
    -- Conan: Target declared 'ZLIB::ZLIB'
    -- VTK module debug building: VTK::FiltersReduction is being built
    -- VTK module debug building: VTK::FiltersProgrammable is being built
    -- VTK module debug building: VTK::FiltersPoints is being built
    -- VTK module debug building: VTK::FiltersParallelVerdict is being built
    -- VTK module debug building: VTK::FiltersParallelStatistics is being built
    -- VTK module debug building: VTK::FiltersImaging is being built
    -- VTK module debug building: VTK::FiltersParallelImaging is being built
    -- VTK module debug building: VTK::FiltersParallelDIY2 is being built
    -- VTK module debug building: VTK::ChartsCore is being built
    -- VTK module debug building: VTK::FiltersOpenTURNS is being built
    CMake Error at Filters/OpenTURNS/CMakeLists.txt:1 (find_package):
      By not providing "FindOpenTURNS.cmake" in CMAKE_MODULE_PATH this project
      has asked CMake to find a package configuration file provided by
      "OpenTURNS", but CMake did not find one.
    
      Could not find a package configuration file provided by "OpenTURNS"
      (requested version 1.8) with any of the following names:
    
        OpenTURNSConfig.cmake
        openturns-config.cmake
    
      Add the installation prefix of "OpenTURNS" to CMAKE_PREFIX_PATH or set
      "OpenTURNS_DIR" to a directory containing one of the above files.  If
      "OpenTURNS" provides a separate development package or SDK, be sure it has
      been installed.
    
    
    -- Configuring incomplete, errors occurred!
    See also "/home/conan/workspace/prod-v2/bsr/69864/dcead/p/b/vtk175d72c33de0e/b/build/Release/CMakeFiles/CMakeOutput.log".
    See also "/home/conan/workspace/prod-v2/bsr/69864/dcead/p/b/vtk175d72c33de0e/b/build/Release/CMakeFiles/CMakeError.log".
    
    vtk/9.3.1: ERROR: 
    Package '5a5c588bb01a9a411029e04c118918c4ee26a8f8' build failed
    vtk/9.3.1: WARN: Build folder /home/conan/workspace/prod-v2/bsr/69864/dcead/p/b/vtk175d72c33de0e/b/build/Release
    ERROR: vtk/9.3.1: Error in build() method, line 830
    	cmake.configure()
    	ConanException: Error 1 while executing
    

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.

conan-center-bot avatar Aug 04 '24 12:08 conan-center-bot

Conan v1 pipeline :x:

Failure in build 7 (26a09d5b9c589206551669e75ebec365dff6368c):

  • vtk/9.3.1: CI failed to create some packages (All logs)

    Logs for packageID 8cdd744e2d5d41fcdb8c870f739c3bab1cef784b:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    vtk:shared=False
    
    [...]
    debconf: delaying package configuration, since apt-utils is not installed
    CMake Warning at CMake/vtkModule.cmake:4787 (find_package):
      Could not find a configuration file for package "FastFloat" that is
      compatible with requested version "3.9.0".
    
      The following configuration files were considered but not accepted:
    
        /home/conan/workspace/prod-v1/bsr/77573/fdddc/.conan/data/vtk/9.3.1/_/_/build/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b/build/Release/generators/FastFloatConfig.cmake, version: 6.1.3
    
    Call Stack (most recent call first):
      CMake/vtkModule.cmake:5393 (vtk_module_find_package)
      CMake/vtkModule.cmake:5261 (vtk_module_third_party_external)
      ThirdParty/fast_float/CMakeLists.txt:1 (vtk_module_third_party)
    
    
    CMake Error at CMake/vtkModule.cmake:4793 (message):
      Could not find the FastFloat external dependency.
    Call Stack (most recent call first):
      CMake/vtkModule.cmake:5393 (vtk_module_find_package)
      CMake/vtkModule.cmake:5261 (vtk_module_third_party_external)
      ThirdParty/fast_float/CMakeLists.txt:1 (vtk_module_third_party)
    
    
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    WARN: libarchive/3.7.4: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: boost/1.84.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: fontconfig/2.15.0: requirement expat/[>=2.6.2 <3] overridden by vtk/9.3.1 to expat/2.6.2 
    WARN: freetype/2.13.2: requirement libpng/[>=1.6 <2] overridden by fontconfig/2.15.0 to libpng/1.6.43 
    WARN: freetype/2.13.2: requirement zlib/[>=1.2.10 <2] overridden by fontconfig/2.15.0 to zlib/1.3.1 
    WARN: libpng/1.6.43: requirement zlib/[>=1.2.11 <2] overridden by freetype/2.13.2 to zlib/1.3.1 
    WARN: hdf5/1.14.1: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: libharu/2.4.4: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: libharu/2.4.4: requirement libpng/[>=1.6 <2] overridden by vtk/9.3.1 to libpng/1.6.43 
    WARN: libxml2/2.12.7: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: openvdb/11.0.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: c-blosc/1.21.5: requirement zlib/[>=1.2.11 <2] overridden by openvdb/11.0.0 to zlib/1.3.1 
    WARN: openssl/3.2.2: requirement zlib/[>=1.2.11 <2] overridden by pulseaudio/14.2 to zlib/1.3.1 
    WARN: wayland/1.22.0: requirement libxml2/[>=2.12.5 <3] overridden by sdl/2.30.5 to libxml2/2.12.7 
    WARN: wayland/1.22.0: requirement expat/[>=2.6.2 <3] overridden by sdl/2.30.5 to expat/2.6.2 
    WARN: xkbcommon/1.6.0: requirement libxml2/[>=2.12.5 <3] overridden by sdl/2.30.5 to libxml2/2.12.7 
    WARN: libunwind/1.8.0: requirement zlib/[>=1.2.11 <2] overridden by sdl/2.30.5 to zlib/1.3.1 
    WARN: libtiff/4.6.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    vtk/9.3.1: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior
    vtk/9.3.1: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior
    vtk/9.3.1: ERROR: Package '8cdd744e2d5d41fcdb8c870f739c3bab1cef784b' build failed
    vtk/9.3.1: WARN: Build folder /home/conan/workspace/prod-v1/bsr/77573/fdddc/.conan/data/vtk/9.3.1/_/_/build/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b/build/Release
    ERROR: vtk/9.3.1: Error in build() method, line 830
    	cmake.configure()
    	ConanException: Error 1 while executing cmake -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE="/home/conan/workspace/prod-v1/bsr/77573/fdddc/.conan/data/vtk/9.3.1/_/_/build/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b/build/Release/generators/conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="/home/conan/workspace/prod-v1/bsr/77573/fdddc/.conan/data/vtk/9.3.1/_/_/package/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" -DCMAKE_BUILD_TYPE="Release" "/home/conan/workspace/prod-v1/bsr/77573/fdddc/.conan/data/vtk/9.3.1/_/_/source/src"
    

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.


Conan v2 pipeline :x:

Note: Conan v2 builds are now mandatory. Please read our discussion about it.

The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping @conan-io/barbarians on the PR and we will help you.

Failure in build 7 (26a09d5b9c589206551669e75ebec365dff6368c):

  • vtk/9.3.1: CI failed to create some packages (All logs)

    Logs for packageID 5a5c588bb01a9a411029e04c118918c4ee26a8f8:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.cppstd=17
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    [...]
    -- Conan: Component target declared 'Boost::wave'
    -- Conan: Component target declared 'Boost::contract'
    -- Conan: Component target declared 'Boost::fiber_numa'
    -- Conan: Component target declared 'Boost::locale'
    -- Conan: Component target declared 'Boost::log'
    -- Conan: Component target declared 'Boost::type_erasure'
    -- Conan: Component target declared 'Boost::unit_test_framework'
    -- Conan: Component target declared 'Boost::log_setup'
    -- Conan: Target declared 'boost::boost'
    -- Conan: Target declared 'BZip2::BZip2'
    -- Conan: Including build module from '/home/conan/workspace/prod-v2/bsr/69866/ffbed/p/bzip24ed69d4fecc16/p/lib/cmake/conan-official-bzip2-variables.cmake'
    -- Conan: Target declared 'libbacktrace::libbacktrace'
    -- Conan: Target declared 'ZLIB::ZLIB'
    -- VTK module debug building: VTK::FiltersReduction is being built
    -- VTK module debug building: VTK::FiltersProgrammable is being built
    -- VTK module debug building: VTK::FiltersPoints is being built
    -- VTK module debug building: VTK::FiltersParallelVerdict is being built
    -- VTK module debug building: VTK::FiltersParallelStatistics is being built
    -- VTK module debug building: VTK::FiltersImaging is being built
    -- VTK module debug building: VTK::FiltersParallelImaging is being built
    -- VTK module debug building: VTK::FiltersParallelDIY2 is being built
    -- VTK module debug building: VTK::ChartsCore is being built
    -- VTK module debug building: VTK::FiltersOpenTURNS is being built
    CMake Error at Filters/OpenTURNS/CMakeLists.txt:1 (find_package):
      By not providing "FindOpenTURNS.cmake" in CMAKE_MODULE_PATH this project
      has asked CMake to find a package configuration file provided by
      "OpenTURNS", but CMake did not find one.
    
      Could not find a package configuration file provided by "OpenTURNS"
      (requested version 1.8) with any of the following names:
    
        OpenTURNSConfig.cmake
        openturns-config.cmake
    
      Add the installation prefix of "OpenTURNS" to CMAKE_PREFIX_PATH or set
      "OpenTURNS_DIR" to a directory containing one of the above files.  If
      "OpenTURNS" provides a separate development package or SDK, be sure it has
      been installed.
    
    
    -- Configuring incomplete, errors occurred!
    See also "/home/conan/workspace/prod-v2/bsr/69866/ffbed/p/b/vtk0dac19d47509f/b/build/Release/CMakeFiles/CMakeOutput.log".
    See also "/home/conan/workspace/prod-v2/bsr/69866/ffbed/p/b/vtk0dac19d47509f/b/build/Release/CMakeFiles/CMakeError.log".
    
    vtk/9.3.1: ERROR: 
    Package '5a5c588bb01a9a411029e04c118918c4ee26a8f8' build failed
    vtk/9.3.1: WARN: Build folder /home/conan/workspace/prod-v2/bsr/69866/ffbed/p/b/vtk0dac19d47509f/b/build/Release
    ERROR: vtk/9.3.1: Error in build() method, line 830
    	cmake.configure()
    	ConanException: Error 1 while executing
    

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.

conan-center-bot avatar Aug 04 '24 13:08 conan-center-bot

Nice to see some action, but just so you know, I'm using my VTK recipe in production and its working well.

I like the sound of the poison target, and it is interesting that you are parsing the cmake target file.

Looking forward to seeing it progress further!

paulharris avatar Aug 05 '24 13:08 paulharris

Conan v1 pipeline :x:

Failure in build 8 (f65e275a42e13eef412089e041e4214f3160379e):

  • vtk/9.3.1: CI failed to create some packages (All logs)

    Logs for packageID 8cdd744e2d5d41fcdb8c870f739c3bab1cef784b:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    vtk:shared=False
    
    [...]
    debconf: delaying package configuration, since apt-utils is not installed
    CMake Warning at CMake/vtkModule.cmake:4787 (find_package):
      Could not find a configuration file for package "FastFloat" that is
      compatible with requested version "3.9.0".
    
      The following configuration files were considered but not accepted:
    
        /home/conan/workspace/prod-v1/bsr/90741/fcebb/.conan/data/vtk/9.3.1/_/_/build/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b/build/Release/generators/FastFloatConfig.cmake, version: 6.1.3
    
    Call Stack (most recent call first):
      CMake/vtkModule.cmake:5393 (vtk_module_find_package)
      CMake/vtkModule.cmake:5261 (vtk_module_third_party_external)
      ThirdParty/fast_float/CMakeLists.txt:1 (vtk_module_third_party)
    
    
    CMake Error at CMake/vtkModule.cmake:4793 (message):
      Could not find the FastFloat external dependency.
    Call Stack (most recent call first):
      CMake/vtkModule.cmake:5393 (vtk_module_find_package)
      CMake/vtkModule.cmake:5261 (vtk_module_third_party_external)
      ThirdParty/fast_float/CMakeLists.txt:1 (vtk_module_third_party)
    
    
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    WARN: libarchive/3.7.4: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: boost/1.84.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: fontconfig/2.15.0: requirement expat/[>=2.6.2 <3] overridden by vtk/9.3.1 to expat/2.6.2 
    WARN: freetype/2.13.2: requirement libpng/[>=1.6 <2] overridden by fontconfig/2.15.0 to libpng/1.6.43 
    WARN: freetype/2.13.2: requirement zlib/[>=1.2.10 <2] overridden by fontconfig/2.15.0 to zlib/1.3.1 
    WARN: libpng/1.6.43: requirement zlib/[>=1.2.11 <2] overridden by freetype/2.13.2 to zlib/1.3.1 
    WARN: hdf5/1.14.1: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: libharu/2.4.4: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: libharu/2.4.4: requirement libpng/[>=1.6 <2] overridden by vtk/9.3.1 to libpng/1.6.43 
    WARN: libxml2/2.12.7: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: openvdb/11.0.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: c-blosc/1.21.5: requirement zlib/[>=1.2.11 <2] overridden by openvdb/11.0.0 to zlib/1.3.1 
    WARN: openssl/3.3.1: requirement zlib/[>=1.2.11 <2] overridden by pulseaudio/14.2 to zlib/1.3.1 
    WARN: wayland/1.22.0: requirement libxml2/[>=2.12.5 <3] overridden by sdl/2.30.5 to libxml2/2.12.7 
    WARN: wayland/1.22.0: requirement expat/[>=2.6.2 <3] overridden by sdl/2.30.5 to expat/2.6.2 
    WARN: xkbcommon/1.6.0: requirement libxml2/[>=2.12.5 <3] overridden by sdl/2.30.5 to libxml2/2.12.7 
    WARN: libunwind/1.8.0: requirement zlib/[>=1.2.11 <2] overridden by sdl/2.30.5 to zlib/1.3.1 
    WARN: libtiff/4.6.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    vtk/9.3.1: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior
    vtk/9.3.1: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior
    vtk/9.3.1: ERROR: Package '8cdd744e2d5d41fcdb8c870f739c3bab1cef784b' build failed
    vtk/9.3.1: WARN: Build folder /home/conan/workspace/prod-v1/bsr/90741/fcebb/.conan/data/vtk/9.3.1/_/_/build/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b/build/Release
    ERROR: vtk/9.3.1: Error in build() method, line 836
    	cmake.configure()
    	ConanException: Error 1 while executing cmake -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE="/home/conan/workspace/prod-v1/bsr/90741/fcebb/.conan/data/vtk/9.3.1/_/_/build/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b/build/Release/generators/conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="/home/conan/workspace/prod-v1/bsr/90741/fcebb/.conan/data/vtk/9.3.1/_/_/package/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" -DCMAKE_BUILD_TYPE="Release" "/home/conan/workspace/prod-v1/bsr/90741/fcebb/.conan/data/vtk/9.3.1/_/_/source/src"
    

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.

conan-center-bot avatar Aug 30 '24 12:08 conan-center-bot

Conan v1 pipeline :x:

Failure in build 9 (fc1e63862ef3764a68c7aa4b5e87fc7f168399c8):

  • vtk/9.3.1: CI failed to create some packages (All logs)

    Logs for packageID 8cdd744e2d5d41fcdb8c870f739c3bab1cef784b:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    vtk:shared=False
    
    [...]
    debconf: delaying package configuration, since apt-utils is not installed
    CMake Warning at CMake/vtkModule.cmake:4787 (find_package):
      Could not find a configuration file for package "fmt" that is compatible
      with requested version "9.0.0".
    
      The following configuration files were considered but not accepted:
    
        /home/conan/workspace/prod-v1/bsr/90792/cacfe/.conan/data/vtk/9.3.1/_/_/build/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b/build/Release/generators/fmt-config.cmake, version: 10.2.1
    
    Call Stack (most recent call first):
      CMake/vtkModule.cmake:5393 (vtk_module_find_package)
      CMake/vtkModule.cmake:5261 (vtk_module_third_party_external)
      ThirdParty/fmt/CMakeLists.txt:1 (vtk_module_third_party)
    
    
    CMake Error at CMake/vtkModule.cmake:4793 (message):
      Could not find the fmt external dependency.
    Call Stack (most recent call first):
      CMake/vtkModule.cmake:5393 (vtk_module_find_package)
      CMake/vtkModule.cmake:5261 (vtk_module_third_party_external)
      ThirdParty/fmt/CMakeLists.txt:1 (vtk_module_third_party)
    
    
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    WARN: libarchive/3.7.4: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: boost/1.84.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: fontconfig/2.15.0: requirement expat/[>=2.6.2 <3] overridden by vtk/9.3.1 to expat/2.6.2 
    WARN: freetype/2.13.2: requirement libpng/[>=1.6 <2] overridden by fontconfig/2.15.0 to libpng/1.6.43 
    WARN: freetype/2.13.2: requirement zlib/[>=1.2.10 <2] overridden by fontconfig/2.15.0 to zlib/1.3.1 
    WARN: libpng/1.6.43: requirement zlib/[>=1.2.11 <2] overridden by freetype/2.13.2 to zlib/1.3.1 
    WARN: hdf5/1.14.1: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: libharu/2.4.4: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: libharu/2.4.4: requirement libpng/[>=1.6 <2] overridden by vtk/9.3.1 to libpng/1.6.43 
    WARN: libxml2/2.12.7: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: openvdb/11.0.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: c-blosc/1.21.5: requirement zlib/[>=1.2.11 <2] overridden by openvdb/11.0.0 to zlib/1.3.1 
    WARN: openssl/3.3.1: requirement zlib/[>=1.2.11 <2] overridden by pulseaudio/14.2 to zlib/1.3.1 
    WARN: wayland/1.22.0: requirement libxml2/[>=2.12.5 <3] overridden by sdl/2.30.5 to libxml2/2.12.7 
    WARN: wayland/1.22.0: requirement expat/[>=2.6.2 <3] overridden by sdl/2.30.5 to expat/2.6.2 
    WARN: xkbcommon/1.6.0: requirement libxml2/[>=2.12.5 <3] overridden by sdl/2.30.5 to libxml2/2.12.7 
    WARN: libunwind/1.8.0: requirement zlib/[>=1.2.11 <2] overridden by sdl/2.30.5 to zlib/1.3.1 
    WARN: libtiff/4.6.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    vtk/9.3.1: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior
    vtk/9.3.1: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior
    vtk/9.3.1: ERROR: Package '8cdd744e2d5d41fcdb8c870f739c3bab1cef784b' build failed
    vtk/9.3.1: WARN: Build folder /home/conan/workspace/prod-v1/bsr/90792/cacfe/.conan/data/vtk/9.3.1/_/_/build/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b/build/Release
    ERROR: vtk/9.3.1: Error in build() method, line 836
    	cmake.configure()
    	ConanException: Error 1 while executing cmake -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE="/home/conan/workspace/prod-v1/bsr/90792/cacfe/.conan/data/vtk/9.3.1/_/_/build/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b/build/Release/generators/conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="/home/conan/workspace/prod-v1/bsr/90792/cacfe/.conan/data/vtk/9.3.1/_/_/package/8cdd744e2d5d41fcdb8c870f739c3bab1cef784b" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" -DCMAKE_BUILD_TYPE="Release" "/home/conan/workspace/prod-v1/bsr/90792/cacfe/.conan/data/vtk/9.3.1/_/_/source/src"
    

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.

conan-center-bot avatar Aug 30 '24 13:08 conan-center-bot

Conan v1 pipeline :x:

Failure in build 10 (e75e991cf368babea64dea1412b0ed195c159406):

  • vtk/9.3.1: CI failed to create some packages (All logs)

    Logs for packageID df4ce4dfda67120a736fa15daf1323af038ac99b:
    [settings]
    arch=x86_64
    build_type=Debug
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    vtk:shared=False
    
    [...]
    dpkg-query: no packages found matching libxcb-xinerama0-dev
    dpkg-query: no packages found matching uuid-dev
    dpkg-query: no packages found matching libxcb-cursor-dev
    dpkg-query: no packages found matching libxcb-composite0-dev
    dpkg-query: no packages found matching libxcb-ewmh-dev
    dpkg-query: no packages found matching libxcb-res0-dev
    debconf: delaying package configuration, since apt-utils is not installed
    dpkg-query: no packages found matching libxcb-util-dev
    debconf: delaying package configuration, since apt-utils is not installed
    CMake Warning:
      Manually-specified variables were not used by the project:
    
        CMAKE_POLICY_DEFAULT_CMP0091
    
    
    /home/conan/workspace/prod-v1/bsr/90809/ffaab/.conan/data/vtk/9.3.1/_/_/source/src/ThirdParty/xdmf2/vtkxdmf2/libsrc/XdmfDOM.cxx: In constructor 'xdmf2::XdmfDOM::XdmfDOM()':
    /home/conan/workspace/prod-v1/bsr/90809/ffaab/.conan/data/vtk/9.3.1/_/_/source/src/ThirdParty/xdmf2/vtkxdmf2/libsrc/XdmfDOM.cxx:72:23: warning: 'int xmlKeepBlanksDefault(int)' is deprecated [-Wdeprecated-declarations]
       72 |   xmlKeepBlanksDefault(0);
          |   ~~~~~~~~~~~~~~~~~~~~^~~
    In file included from /home/conan/workspace/prod-v1/bsr/90809/ffaab/.conan/data/libxml2/2.12.7/_/_/package/a0eb883ef4c5f6bbed8510d21145a7b12bd3ce89/include/libxml2/libxml/HTMLparser.h:16,
                     from /home/conan/workspace/prod-v1/bsr/90809/ffaab/.conan/data/libxml2/2.12.7/_/_/package/a0eb883ef4c5f6bbed8510d21145a7b12bd3ce89/include/libxml2/libxml/globals.h:18,
                     from /home/conan/workspace/prod-v1/bsr/90809/ffaab/.conan/data/vtk/9.3.1/_/_/source/src/ThirdParty/xdmf2/vtkxdmf2/libsrc/XdmfDOM.cxx:28:
    /home/conan/workspace/prod-v1/bsr/90809/ffaab/.conan/data/libxml2/2.12.7/_/_/package/a0eb883ef4c5f6bbed8510d21145a7b12bd3ce89/include/libxml2/libxml/parser.h:957:17: note: declared here
      957 |                 xmlKeepBlanksDefault    (int val);
          |                 ^~~~~~~~~~~~~~~~~~~~
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    WARN: libarchive/3.7.4: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: boost/1.84.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: fontconfig/2.15.0: requirement expat/[>=2.6.2 <3] overridden by vtk/9.3.1 to expat/2.6.2 
    WARN: freetype/2.13.2: requirement libpng/[>=1.6 <2] overridden by fontconfig/2.15.0 to libpng/1.6.43 
    WARN: freetype/2.13.2: requirement zlib/[>=1.2.10 <2] overridden by fontconfig/2.15.0 to zlib/1.3.1 
    WARN: libpng/1.6.43: requirement zlib/[>=1.2.11 <2] overridden by freetype/2.13.2 to zlib/1.3.1 
    WARN: hdf5/1.14.1: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: libharu/2.4.4: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: libharu/2.4.4: requirement libpng/[>=1.6 <2] overridden by vtk/9.3.1 to libpng/1.6.43 
    WARN: libxml2/2.12.7: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: openvdb/11.0.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: c-blosc/1.21.5: requirement zlib/[>=1.2.11 <2] overridden by openvdb/11.0.0 to zlib/1.3.1 
    WARN: openssl/3.3.1: requirement zlib/[>=1.2.11 <2] overridden by pulseaudio/14.2 to zlib/1.3.1 
    WARN: wayland/1.22.0: requirement libxml2/[>=2.12.5 <3] overridden by sdl/2.30.5 to libxml2/2.12.7 
    WARN: wayland/1.22.0: requirement expat/[>=2.6.2 <3] overridden by sdl/2.30.5 to expat/2.6.2 
    WARN: xkbcommon/1.6.0: requirement libxml2/[>=2.12.5 <3] overridden by sdl/2.30.5 to libxml2/2.12.7 
    WARN: libunwind/1.8.0: requirement zlib/[>=1.2.11 <2] overridden by sdl/2.30.5 to zlib/1.3.1 
    WARN: libtiff/4.6.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    vtk/9.3.1: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior
    vtk/9.3.1: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior
    vtk/9.3.1: WARN: CMake target VTK::pugixml has a circular dependency on itself
    [HOOK - conan-center.py] post_package(): ERROR: [DEFAULT PACKAGE LAYOUT (KB-H013)] Unknown folder 'share' in the package (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H013-DEFAULT-PACKAGE-LAYOUT) 
    ERROR: [HOOK - conan-center.py] post_package(): Some checks failed running the hook, check the output
    

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.

conan-center-bot avatar Aug 30 '24 15:08 conan-center-bot

Conan v1 pipeline :x:

Failure in build 11 (1c574d077eb6c17d85bd64fb932b17ca2172974b):

  • vtk/9.3.1: CI failed to create some packages (All logs)

    Logs for packageID df4ce4dfda67120a736fa15daf1323af038ac99b:
    [settings]
    arch=x86_64
    build_type=Debug
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    vtk:shared=False
    
    [...]
    vtk/9.3.1 (test package): Generator 'CMakeDeps' calling 'generate()'
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    WARN: libarchive/3.7.4: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: boost/1.84.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: fontconfig/2.15.0: requirement expat/[>=2.6.2 <3] overridden by vtk/9.3.1 to expat/2.6.2 
    WARN: freetype/2.13.2: requirement libpng/[>=1.6 <2] overridden by fontconfig/2.15.0 to libpng/1.6.43 
    WARN: freetype/2.13.2: requirement zlib/[>=1.2.10 <2] overridden by fontconfig/2.15.0 to zlib/1.3.1 
    WARN: libpng/1.6.43: requirement zlib/[>=1.2.11 <2] overridden by freetype/2.13.2 to zlib/1.3.1 
    WARN: hdf5/1.14.1: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: libharu/2.4.4: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: libharu/2.4.4: requirement libpng/[>=1.6 <2] overridden by vtk/9.3.1 to libpng/1.6.43 
    WARN: libxml2/2.12.7: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: openvdb/11.0.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    WARN: c-blosc/1.21.5: requirement zlib/[>=1.2.11 <2] overridden by openvdb/11.0.0 to zlib/1.3.1 
    WARN: openssl/3.3.1: requirement zlib/[>=1.2.11 <2] overridden by pulseaudio/14.2 to zlib/1.3.1 
    WARN: wayland/1.22.0: requirement libxml2/[>=2.12.5 <3] overridden by sdl/2.30.5 to libxml2/2.12.7 
    WARN: wayland/1.22.0: requirement expat/[>=2.6.2 <3] overridden by sdl/2.30.5 to expat/2.6.2 
    WARN: xkbcommon/1.6.0: requirement libxml2/[>=2.12.5 <3] overridden by sdl/2.30.5 to libxml2/2.12.7 
    WARN: libunwind/1.8.0: requirement zlib/[>=1.2.11 <2] overridden by sdl/2.30.5 to zlib/1.3.1 
    WARN: libtiff/4.6.0: requirement zlib/[>=1.2.11 <2] overridden by vtk/9.3.1 to zlib/1.3.1 
    vtk/9.3.1 (test package): WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior
    vtk/9.3.1 (test package): WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior
    vtk/9.3.1 (test package): ERROR: Traceback (most recent call last):
      File "/opt/pyenv/versions/3.7.17/lib/python3.7/site-packages/conan/tools/cmake/cmakedeps/templates/__init__.py", line 42, in render
        context = self.context
      File "/opt/pyenv/versions/3.7.17/lib/python3.7/site-packages/conan/tools/cmake/cmakedeps/templates/target_data.py", line 32, in context
        components = self._get_required_components_cpp()
      File "/opt/pyenv/versions/3.7.17/lib/python3.7/site-packages/conan/tools/cmake/cmakedeps/templates/target_data.py", line 173, in _get_required_components_cpp
        public_comp_deps.append(self.get_component_alias(req, cmp_name))
      File "/opt/pyenv/versions/3.7.17/lib/python3.7/site-packages/conan/tools/cmake/cmakedeps/templates/__init__.py", line 99, in get_component_alias
        "package requirement".format(name=req.ref.name, cname=comp_name))
    conans.errors.ConanException: Component 'exprtk::None' not found in 'exprtk' package requirement
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "/opt/pyenv/versions/3.7.17/lib/python3.7/site-packages/conans/client/generators/__init__.py", line 179, in write_generators
        generator.generate()
      File "/opt/pyenv/versions/3.7.17/lib/python3.7/site-packages/conan/tools/cmake/cmakedeps/cmakedeps.py", line 48, in generate
        generator_files = self.content
      File "/opt/pyenv/versions/3.7.17/lib/python3.7/site-packages/conan/tools/cmake/cmakedeps/cmakedeps.py", line 90, in content
        self._generate_files(require, dep, ret, find_module_mode=False)
      File "/opt/pyenv/versions/3.7.17/lib/python3.7/site-packages/conan/tools/cmake/cmakedeps/cmakedeps.py", line 103, in _generate_files
        ret[data_target.filename] = data_target.render()
      File "/opt/pyenv/versions/3.7.17/lib/python3.7/site-packages/conan/tools/cmake/cmakedeps/templates/__init__.py", line 44, in render
        raise ConanException("error generating context for '{}': {}".format(self.conanfile, e))
    conans.errors.ConanException: error generating context for 'vtk/9.3.1': Component 'exprtk::None' not found in 'exprtk' package requirement
    
    ERROR: Error in generator 'CMakeDeps': error generating context for 'vtk/9.3.1': Component 'exprtk::None' not found in 'exprtk' package requirement
    

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.

conan-center-bot avatar Aug 30 '24 22:08 conan-center-bot

Conan v1 pipeline :x:

Failure in build 12 (dfa44fca0a26a3d0ccf9839cdd79d09851c20e89):

  • vtk/9.3.1: Error running command conan export recipes/vtk/all/conanfile.py vtk/9.3.1@:
    WARN: *** Conan 1 is legacy and on a deprecation path ***
    WARN: *** Please upgrade to Conan 2 ***
    ERROR: Error loading conanfile at '/home/conan/workspace/prod-v1_cci_PR-24808/recipes/vtk/all/conanfile.py': Current Conan version (1.64.1) does not satisfy the defined one (>=2.0.6).
    

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.

conan-center-bot avatar Aug 31 '24 08:08 conan-center-bot

Conan v1 pipeline :heavy_check_mark:

All green in build 13 (9e297e1f39c52d63f2fc0e6d9ea749ec82938c8a):

  • vtk/9.3.1: All packages built successfully! (All logs)

conan-center-bot avatar Aug 31 '24 09:08 conan-center-bot

Conan v1 pipeline :heavy_check_mark:

All green in build 14 (5ce69ca53af1e9ad9f5dfa2397247e06290d4baf):

  • vtk/9.3.1: All packages built successfully! (All logs)

conan-center-bot avatar Aug 31 '24 16:08 conan-center-bot

Conan v1 pipeline :heavy_check_mark:

All green in build 15 (bee0c9264e33b3bccc809d970085b293ae82f6c3):

  • vtk/9.3.1: All packages built successfully! (All logs)

conan-center-bot avatar Sep 03 '24 20:09 conan-center-bot

Conan v1 pipeline :heavy_check_mark:

All green in build 16 (69b4bd23c4901abc31e482aece850546ef4fdf83):

  • vtk/9.3.1: All packages built successfully! (All logs)

conan-center-bot avatar Sep 04 '24 05:09 conan-center-bot

Conan v1 pipeline :heavy_check_mark:

[!WARNING] Conan Center will stop receiving updates for Conan 1.x packages soon - please see announcement.

All green in build 17 (f199ea6d58a037761f03ade06270369c6e99f3dc):

  • vtk/9.3.1: No packages built :warning: (All logs)

conan-center-bot avatar Oct 08 '24 09:10 conan-center-bot

Hi, Any updates on this recipe? I am currently trying to use it in order to build vtk 9.3.1 with support for Qt5. After some minor tweaks I am almost successful. Last failure I can see is in package_info():

Traceback (most recent call last):
  File "C:\Python311\Lib\site-packages\conan\cli\cli.py", line 193, in run
    command.run(self._conan_api, args[0][1:])
  File "C:\Python311\Lib\site-packages\conan\cli\command.py", line 171, in run
    info = self._method(conan_api, parser, *args)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Python311\Lib\site-packages\conan\cli\commands\install.py", line 75, in install
    conan_api.install.install_binaries(deps_graph=deps_graph, remotes=remotes)
  File "C:\Python311\Lib\site-packages\conan\api\subapi\install.py", line 29, in install_binaries
    installer.install(deps_graph, remotes, install_order=install_order)
  File "C:\Python311\Lib\site-packages\conans\client\installer.py", line 259, in install
    self._handle_package(package, install_reference, handled_count, package_count)
  File "C:\Python311\Lib\site-packages\conans\client\installer.py", line 343, in _handle_package
    self._call_package_info(conanfile, conanfile.package_folder, is_editable=False)
  File "C:\Python311\Lib\site-packages\conans\client\installer.py", line 458, in _call_package_info
    conanfile.cpp_info.check_component_requires(conanfile)
  File "C:\Python311\Lib\site-packages\conans\model\build_info.py", line 574, in check_component_requires
    raise ConanException(
conans.errors.ConanException: vtk/9.3.0: required component package 'directx::' not in dependencies

ERROR: vtk/9.3.0: required component package 'directx::' not in dependencies

Any ideas on what can go wrong here?

gillesgui avatar Oct 23 '24 20:10 gillesgui

hi, @valgur , thanks for the hard work firstly, but this PR seems been held for long time, do u know why?

leolcao avatar Nov 04 '24 13:11 leolcao

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you all sign our Contributor License Agreement before we can accept your contribution.
1 out of 2 committers have signed the CLA.

:white_check_mark: paulharris
:x: Martin Valgur


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.

CLAassistant avatar Mar 09 '25 08:03 CLAassistant