Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Corrade 2020.06 #2109

Closed
wants to merge 12 commits into from
Closed

Conversation

helmesjo
Copy link

@helmesjo helmesjo commented Jul 2, 2020

Specify library name and version: corrade/2020.06

  • Add v2020.06

  • Fix To use Corrade with MSVC 20XX, build it with MSVC20XX_COMPATIBILITY enabled issue for consumers.

  • Fixed so that consumers get the cmake scripts provided by corrade (used to read configs and setup correct preprocessor defines).

  • I've read the guidelines for contributing.

  • I've followed the PEP8 style guides for Python code in the recipes.

  • I've used the latest Conan client version.

@CLAassistant
Copy link

CLAassistant commented Jul 2, 2020

CLA assistant check
All committers have signed the CLA.

@conan-center-bot

This comment has been minimized.

@conan-center-bot

This comment has been minimized.

@conan-center-bot

This comment has been minimized.

@Croydon Croydon mentioned this pull request Jul 3, 2020
@danimtb
Copy link
Member

danimtb commented Jul 20, 2020

@helmesjo has you requested access in issue #4? Otherwise, the CI won't be able to run

@helmesjo helmesjo mentioned this pull request Jul 27, 2020
@helmesjo
Copy link
Author

@danimtb Thanks, just did that!

@helmesjo
Copy link
Author

helmesjo commented Aug 5, 2020

Still waiting for early access.

@conan-center-bot

This comment has been minimized.

@conan-center-bot

This comment has been minimized.

@conan-center-bot

This comment has been minimized.

recipes/corrade/all/conanfile.py Show resolved Hide resolved
recipes/corrade/all/conanfile.py Outdated Show resolved Hide resolved
recipes/corrade/all/conanfile.py Outdated Show resolved Hide resolved
Comment on lines +72 to +73
add_cmake_option("BUILD_STATIC", not self.options.shared)
add_cmake_option("BUILD_STATIC_PIC", not self.options.shared and self.options.get_safe("fPIC") == True)
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
add_cmake_option("BUILD_STATIC", not self.options.shared)
add_cmake_option("BUILD_STATIC_PIC", not self.options.shared and self.options.get_safe("fPIC") == True)
self._cmake.definitions["BUILD_STATIC"] = not self.options.shared
self._cmake.definitions["BUILD_STATIC_PIC"] not self.options.shared and self.options.get_safe("fPIC", False)

Copy link
Author

Choose a reason for hiding this comment

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

Why not reuse the add_cmake_option(...) method?

Copy link
Member

Choose a reason for hiding this comment

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

keep it simple and readable like other recipes. you don't need an extra method for a simple logic.

Comment on lines +76 to +78
self._cmake.definitions["MSVC2015_COMPATIBILITY"] = "ON" if self.settings.compiler.version == "14" else "OFF"
self._cmake.definitions["MSVC2017_COMPATIBILITY"] = "ON" if self.settings.compiler.version == "15" else "OFF"
self._cmake.definitions["MSVC2019_COMPATIBILITY"] = "ON" if self.settings.compiler.version == "16" else "OFF"
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
self._cmake.definitions["MSVC2015_COMPATIBILITY"] = "ON" if self.settings.compiler.version == "14" else "OFF"
self._cmake.definitions["MSVC2017_COMPATIBILITY"] = "ON" if self.settings.compiler.version == "15" else "OFF"
self._cmake.definitions["MSVC2019_COMPATIBILITY"] = "ON" if self.settings.compiler.version == "16" else "OFF"
self._cmake.definitions["MSVC2015_COMPATIBILITY"] = self.settings.compiler.version
self._cmake.definitions["MSVC2017_COMPATIBILITY"] = self.settings.compiler.version
self._cmake.definitions["MSVC2019_COMPATIBILITY"] = self.settings.compiler.version == "16"

Copy link
Author

Choose a reason for hiding this comment

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

What happened to == "14" and == "15"?

Copy link
Author

Choose a reason for hiding this comment

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

Also I could've reused add_cmake_option(...) here as well.

Copy link
Member

Choose a reason for hiding this comment

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

again, don't need an extra method for a very simple logic.

self.copy("CorradeLibSuffix.cmake", src=share_cmake, dst=os.path.join(self.package_folder, "lib", "cmake", "Corrade"))
self.copy("FindCorrade.cmake", src=share_cmake, dst=os.path.join(self.package_folder, "lib", "cmake", "Corrade"))
Copy link
Member

Choose a reason for hiding this comment

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

What specific macro do you need from Corrade? Conan CmakeFindPackage generator should be enough. If there is no specific macro there, please remove FindCorrade/CorradeConfig

Copy link
Author

@helmesjo helmesjo Aug 13, 2020

Choose a reason for hiding this comment

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

All the different options passed to CMake when building corrade (that are relevant for consumers) gets written to a configure.h which is packaged along all other includes. This file is then parsed by FindCorrade.cmake. The alternative is to extract the necessary pieces and add to a CMake script that's part of the recipe (if I'm correct it's only the parsing of configure.h that's relevant for consumers).

Or alternatively mimic it by directly in package_info() setup all these different preprocessor directives. Though this is even more error prone than above, IMO.

Copy link
Member

Choose a reason for hiding this comment

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

I can't find a real evidence of their usage as cmake definitions. For instance, BUILD_STATIC will be "renamed" to CORRADE_BUILD_STATIC, and only the unit tests are using it. The defines in configure.h are okay, they will be processed by the consumer. Do you see a real usage for them?

https://github.com/mosra/corrade/search?q=CORRADE_UTILITY_USE_ANSI_COLORS
https://github.com/mosra/corrade/search?q=CORRADE_BUILD_STATIC

Copy link
Author

Choose a reason for hiding this comment

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

There were some comments here regarding some macros defined (that one is in UseCorrade.cmake though). But yeah, FindCorrade.cmake should not be included, but instead just the bare minimal required by consumers.

recipes/corrade/all/conanfile.py Outdated Show resolved Hide resolved
helmesjo and others added 2 commits August 13, 2020 14:35
Co-authored-by: Uilian Ries <uilianries@gmail.com>
Co-authored-by: Uilian Ries <uilianries@gmail.com>
@conan-center-bot

This comment has been minimized.

self.cpp_info.build_modules.append(os.path.join("lib", "cmake", "Corrade", "CorradeLibSuffix.cmake"))
self.cpp_info.build_modules.append(os.path.join("lib", "cmake", "Corrade", "CMakeLists.txt"))
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
self.cpp_info.build_modules.append(os.path.join("lib", "cmake", "Corrade", "CMakeLists.txt"))

CMakeLists.txt can be removed, it only aggregate other cmake files, Conan will pass them as build modules

self.cpp_info.builddirs = [os.path.join(self.package_folder, "lib", "cmake", "Corrade")]

bindir = os.path.join(self.package_folder, "bin")
self.output.info("Appending PATH environment variable: {}".format(bindir))
Copy link
Member

Choose a reason for hiding this comment

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

Keep the output info.

Copy link
Author

Choose a reason for hiding this comment

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

So which is it: Keep it, or remove it..?

Copy link
Member

Choose a reason for hiding this comment

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

keep.

self.copy("CorradeLibSuffix.cmake", src=share_cmake, dst=os.path.join(self.package_folder, "lib", "cmake", "Corrade"))
self.copy("FindCorrade.cmake", src=share_cmake, dst=os.path.join(self.package_folder, "lib", "cmake", "Corrade"))
Copy link
Member

Choose a reason for hiding this comment

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

I can't find a real evidence of their usage as cmake definitions. For instance, BUILD_STATIC will be "renamed" to CORRADE_BUILD_STATIC, and only the unit tests are using it. The defines in configure.h are okay, they will be processed by the consumer. Do you see a real usage for them?

https://github.com/mosra/corrade/search?q=CORRADE_UTILITY_USE_ANSI_COLORS
https://github.com/mosra/corrade/search?q=CORRADE_BUILD_STATIC

@uilianries
Copy link
Member

Please, don't forget to sign the CLA #2109 (comment)

@conan-center-bot

This comment has been minimized.

@Croydon
Copy link
Contributor

Croydon commented Aug 27, 2020

The hooks message is incomplete:

[HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files:

it does not show the actual files

@stale
Copy link

stale bot commented Dec 1, 2020

This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale label Dec 1, 2020
@Croydon
Copy link
Contributor

Croydon commented Dec 4, 2020

@helmesjo You might want to close the PR for ~10 seconds and re-open it then to re-trigger CI

@stale stale bot removed the stale label Dec 4, 2020
@helmesjo helmesjo closed this Dec 8, 2020
@helmesjo helmesjo reopened this Dec 8, 2020
@conan-center-bot
Copy link
Collaborator

Some configurations of 'corrade/2019.10' failed in build 10 (a6a95a8a5879eca8819fb0066d16761e49e28cb9):

  • Linux x86_64, Release, clang 3.9, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Macos x86_64, Release, apple-clang 10.0, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Macos x86_64, Release, apple-clang 11.0, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs

@stale
Copy link

stale bot commented Jan 7, 2021

This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale label Jan 7, 2021
@tomlankhorst
Copy link

tomlankhorst commented Jan 28, 2021

Bad bot...

Also, thank you for your work... would be awesome to see both Corrade and Magnum popping up in Conan one time.

@stale stale bot removed the stale label Jan 28, 2021
@danimtb
Copy link
Member

danimtb commented Jan 28, 2021

hey @helmesjo, can you check the CLA issue? That will help us to go forward with this PR as we can make it work if you don't have the time. Thank you

@danimtb danimtb requested a review from uilianries January 28, 2021 09:24
@conan-center-bot

This comment has been minimized.

@helmesjo
Copy link
Author

helmesjo commented Jan 28, 2021

hey @helmesjo, can you check the CLA issue? That will help us to go forward with this PR as we can make it work if you don't have the time. Thank you

Just gave it one eye but can't load more comments in #4 thus can't see the state of things (can't even see my own comment)...
load_commentz

@danimtb
Copy link
Member

danimtb commented Jan 28, 2021

no, everything is fine for you in #4, just check the CLA check here #2109 (comment)

@helmesjo
Copy link
Author

no, everything is fine for you in #4, just check the CLA check here #2109 (comment)

Ah, forgot about that one. Alright, signed (with the assumption that it is clear that nothing with this PR violates any license provided by corrade or it's dependencies ;) ).

@conan-center-bot
Copy link
Collaborator

Some configurations of 'corrade/2020.06' failed in build 12 (764671c5efa2fc05056979d6bee7546fcac1e336):

  • Linux x86_64, Debug, gcc 4.9, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Macos x86_64, Debug, apple-clang 11.0, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, gcc 4.9, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, gcc 5, libstdc++11 . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Macos x86_64, Release, apple-clang 11.0, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Macos x86_64, Release, apple-clang 11.0, libc++ . Options: corrade:shared-True
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, gcc 5, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Macos x86_64, Debug, apple-clang 9.1, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Macos x86_64, Debug, apple-clang 10.0, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Macos x86_64, Release, apple-clang 10.0, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Macos x86_64, Release, apple-clang 9.1, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Macos x86_64, Release, apple-clang 10.0, libc++ . Options: corrade:shared-True
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Macos x86_64, Release, apple-clang 9.1, libc++ . Options: corrade:shared-True
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Windows x86_64, Debug, Visual Studio 15, MTd. Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Windows x86_64, Release, Visual Studio 16, MD. Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Windows x86_64, Debug, Visual Studio 16, MTd. Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Windows x86_64, Release, Visual Studio 16, MT. Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Windows x86_64, Debug, Visual Studio 14, MTd. Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Windows x86_64, Debug, Visual Studio 14, MDd. Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Windows x86_64, Release, Visual Studio 14, MT. Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, gcc 7, libstdc++11 . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Windows x86_64, Release, Visual Studio 14, MD. Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Windows x86_64, Release, Visual Studio 15, MD. Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Windows x86_64, Release, Visual Studio 15, MT. Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, clang 3.9, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, clang 7.0, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, gcc 9, libstdc++11 . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, clang 4.0, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, clang 9, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, clang 4.0, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Debug, gcc 4.9, libstdc++ . Options: corrade:shared-True
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, clang 5.0, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, clang 7.0, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Debug, gcc 5, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, gcc 6, libstdc++11 . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, clang 3.9, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, clang 6.0, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, gcc 4.9, libstdc++ . Options: corrade:shared-True
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, gcc 7, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, clang 8, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, clang 5.0, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, clang 6.0, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, clang 9, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, clang 8, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Release, gcc 8, libstdc++11 . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Debug, gcc 6, libstdc++11 . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Debug, clang 3.9, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Debug, clang 6.0, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Debug, clang 4.0, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Debug, clang 6.0, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Debug, clang 5.0, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Debug, gcc 6, libstdc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Debug, clang 4.0, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Debug, clang 3.9, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs
  • Linux x86_64, Debug, clang 7.0, libc++ . Options: corrade:shared-False
    • Hooks errors detected:
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared cpp_infoinformation (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
      • [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016)
    • Log download
    • Log error Download
    • Profile
  • Access to all the logs

@conan-center-bot
Copy link
Collaborator

Failure in build 13 (764671c5efa2fc05056979d6bee7546fcac1e336):

  • corrade/2019.10@:
    CI failed to create some packages (All logs)

    Logs for packageID 3b33660df911df1c25f8d3c782b3e0a4273a03c8:
    [settings]
    arch=x86_64
    arch_build=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=8
    os=Linux
    os_build=Linux
    [options]
    corrade:shared=False
    
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/Endianness.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/Format.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/FormatStl.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/Macros.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/MurmurHash2.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/Resource.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/Sha1.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/String.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/StlForwardArray.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/StlForwardString.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/StlForwardTuple.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/StlForwardVector.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/StlMath.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/System.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/TypeTraits.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/Unicode.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/utilities.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/Utility.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/VisibilityMacros.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/visibility.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/FileWatcher.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/Tweakable.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/./include/Corrade/Utility/TweakableParser.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2019.10/_/_/package/3b33660df911df1c25f8d3c782b3e0a4273a03c8/bin/corrade-rc
    [HOOK - conan-center.py] post_package(): [PACKAGE LICENSE (KB-H012)] OK
    [HOOK - conan-center.py] post_package(): [DEFAULT PACKAGE LAYOUT (KB-H013)] OK
    [HOOK - conan-center.py] post_package(): [MATCHING CONFIGURATION (KB-H014)] OK
    [HOOK - conan-center.py] post_package(): [SHARED ARTIFACTS (KB-H015)] OK
    [HOOK - conan-center.py] post_package(): [PC-FILES (KB-H020)] OK
    [HOOK - conan-center.py] post_package(): [PDB FILES NOT ALLOWED (KB-H017)] OK
    [HOOK - conan-center.py] post_package(): [LIBTOOL FILES PRESENCE (KB-H018)] OK
    [HOOK - conan-center.py] post_package(): [MS RUNTIME FILES (KB-H021)] OK
    CMake Warning:
      Manually-specified variables were not used by the project:
    
        CMAKE_EXPORT_NO_PACKAGE_REGISTRY
        CMAKE_INSTALL_BINDIR
        CMAKE_INSTALL_DATAROOTDIR
        CMAKE_INSTALL_INCLUDEDIR
        CMAKE_INSTALL_LIBDIR
        CMAKE_INSTALL_LIBEXECDIR
        CMAKE_INSTALL_OLDINCLUDEDIR
        CMAKE_INSTALL_SBINDIR
        FPIC
        SHARED
    
    
    [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared `cpp_info` information (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016) 
    [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016) 
    ERROR: [HOOK - conan-center.py] post_package(): Some checks failed running the hook, check the output
    
  • corrade/2020.06@:
    CI failed to create some packages (All logs)

    Logs for packageID 3faefb77462ac5fb027a8f2d6e77f49752b8abf1:
    [settings]
    arch=x86_64
    arch_build=x86_64
    build_type=Release
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=9
    os=Linux
    os_build=Linux
    [options]
    corrade:shared=False
    
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/EndiannessBatch.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/Format.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/FormatStl.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/Macros.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/MurmurHash2.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/Resource.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/Sha1.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/String.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/StlForwardArray.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/StlForwardString.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/StlForwardTuple.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/StlForwardVector.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/StlMath.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/System.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/TypeTraits.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/Unicode.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/utilities.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/Utility.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/VisibilityMacros.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/visibility.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/FileWatcher.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/Tweakable.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/./include/Corrade/Utility/TweakableParser.h
    -- Installing: /home/conan/w/BuildSingleReference/.conan/data/corrade/2020.06/_/_/package/3faefb77462ac5fb027a8f2d6e77f49752b8abf1/bin/corrade-rc
    [HOOK - conan-center.py] post_package(): [PACKAGE LICENSE (KB-H012)] OK
    [HOOK - conan-center.py] post_package(): [DEFAULT PACKAGE LAYOUT (KB-H013)] OK
    [HOOK - conan-center.py] post_package(): [MATCHING CONFIGURATION (KB-H014)] OK
    [HOOK - conan-center.py] post_package(): [SHARED ARTIFACTS (KB-H015)] OK
    [HOOK - conan-center.py] post_package(): [PC-FILES (KB-H020)] OK
    [HOOK - conan-center.py] post_package(): [PDB FILES NOT ALLOWED (KB-H017)] OK
    [HOOK - conan-center.py] post_package(): [LIBTOOL FILES PRESENCE (KB-H018)] OK
    [HOOK - conan-center.py] post_package(): [MS RUNTIME FILES (KB-H021)] OK
    CMake Warning:
      Manually-specified variables were not used by the project:
    
        CMAKE_EXPORT_NO_PACKAGE_REGISTRY
        CMAKE_INSTALL_BINDIR
        CMAKE_INSTALL_DATAROOTDIR
        CMAKE_INSTALL_INCLUDEDIR
        CMAKE_INSTALL_LIBDIR
        CMAKE_INSTALL_LIBEXECDIR
        CMAKE_INSTALL_OLDINCLUDEDIR
        CMAKE_INSTALL_SBINDIR
        FPIC
        SHARED
    
    
    [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] The conan-center repository doesn't allow the packages to contain CMake find modules or config files. The packages have to be located using generators and the declared `cpp_info` information (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016) 
    [HOOK - conan-center.py] post_package(): ERROR: [CMAKE-MODULES-CONFIG-FILES (KB-H016)] Found files: ./lib/cmake/Corrade/CorradeConfig.cmake; ./lib/cmake/Corrade/FindCorrade.cmake (https://github.com/conan-io/conan-center-index/blob/master/docs/error_knowledge_base.md#KB-H016) 
    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.

@stale
Copy link

stale bot commented Apr 6, 2021

This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale label Apr 6, 2021
@stale
Copy link

stale bot commented May 6, 2021

This pull request has been automatically closed because it has not had recent activity. Thank you for your contributions.

@stale stale bot closed this May 6, 2021
@tomlankhorst
Copy link

Bad bot!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants