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

[bug] ERROR: 404: Not Found. [Remote: conan-center] #8293

Closed
blackliner opened this issue Jan 7, 2021 · 25 comments
Closed

[bug] ERROR: 404: Not Found. [Remote: conan-center] #8293

blackliner opened this issue Jan 7, 2021 · 25 comments
Assignees

Comments

@blackliner
Copy link
Contributor

Some of my coworkers came up with the following problem: When they run conan install .. -b missing from the build folder, they get this error message (sorry for screenshots instead of code, thats how I got it):
image

I asked them to run some commands, and these are the results:
conan user
image

conan remote list
image

conan install acado/1.2.2-beta@ -r conan-center << fails I guess because -b missing is missing
image

conan install acado/1.2.2-beta@ -r conan-center -b missing
image

Other commands like conan install opencv/4.5.0@ -r conan-center -b missing work.

The current workaround is to conan remove acado, but I want to avoid my devs having to do this on a regular base. Fortunately CI is not yet hit by that 😅

Environment Details (include every applicable attribute)

  • Operating System+version: Ubuntu 18.04 LTS
  • Compiler+version: gcc 7.5
  • Conan version: 1.32.1
  • Python version: 3.6

Steps to reproduce (Include if Applicable)

see above

@jgsogo jgsogo self-assigned this Jan 7, 2021
@jgsogo
Copy link
Contributor

jgsogo commented Jan 7, 2021

Hi! It looks like the error is related to the line ERROR: 404: Not found. [Remote: conan-center]. Conan fails to get the file with the sources from the remote when it tries to. The file conan_sources.tgz is there (https://bintray.com/conan/conan-center/acado%3A_/1.2.2-beta%3A_#files/_%2Facado%2F1.2.2-beta%2F_%2F940076526896dd68ae1d9628aff18cb9%2Fexport). Can you check that the user/machine has access to conan-center (and the recipe comes from that URL)?

@blackliner
Copy link
Contributor Author

But it should be here: https://conan.io/center/acado

Is CCI replicating to bintray, or is it actually the same repo with different frontends?

@jgsogo
Copy link
Contributor

jgsogo commented Jan 7, 2021

ATM, the frontend uses a database to show the information about packages, but Conan client retrieves packages from Bintray (the URL https://conan.bintray.com corresponds to the bintray repository I linked above).

@blackliner
Copy link
Contributor Author

blackliner commented Jan 7, 2021

In my OP I wrote:

Other commands like conan install opencv/4.5.0@ -r conan-center -b missing work.

So I assume the conan center was reachable?

@jgsogo
Copy link
Contributor

jgsogo commented Jan 7, 2021

Hi! I need to understand the scenario better:

your coworkers run conan install acado/1.2.2-beta@ -r conan-center -b missing and they get the error, but if they run conan remove acado and then conan install acado/1.2.2-beta@ -r conan-center -b missing it works? I have one question: where does the already existing acado recipe come from? Why do they have something in the cache? (you can run conan remote list_ref to get association between recipes and remotes)

@blackliner
Copy link
Contributor Author

your coworkers run conan install acado/1.2.2-beta@ -r conan-center -b missing and they get the error, but if they run conan remove acado and then conan install acado/1.2.2-beta@ -r conan-center -b missing it works?

Yes

I have one question: where does the already existing acado recipe come from? Why do they have something in the cache? (you can run conan remote list_ref to get association between recipes and remotes)

It also comes from conan-center. But we had problems with compiler.libcxx=libstdc++ in the default profile and had to switch to compiler.libcxx=libstdc++11, so maybe that is related?

@jgsogo
Copy link
Contributor

jgsogo commented Jan 7, 2021

If I look for that package in the default conan-center remote I can find the packageID you are looking for:

conan search acado/1.2.2-beta@ -r conan-center  --table=acado.html

You can see that a packageID like the one you are building does exist:

image

It makes me think that you are not getting the recipe nor the packages from conan-center remote but somewhere else. Your existing recipe has been installed from a different remote (what is the output from conan remote list_ref before removing the existing acado recipe?). When you remove the package and install it again, Conan gets the recipe from conan-center.

Please, double check it. Use also --update when running conan install, maybe the existing recipe belongs to a previous revision of the recipe.

@blackliner
Copy link
Contributor Author

I cannot think of any other source, because our own, inhouse Artifactory is not ready yet, and there was ever only one version of this recipe on CCI (the second PR is to be merged atm).

But --update is a good hint, do you think it makes sense to run it always, with every call of conan install?

@jgsogo
Copy link
Contributor

jgsogo commented Jan 7, 2021

Well, if you use --update you will get the latest recipe revision from ConanCenter. As you know, those recipes change and evolve, typically for the better, but new versions might break your existing builds (new options, added components, CMake target names,...) and, if you need to build from sources because you use a custom configuration you need to build from sources whenever you get a new recipe revision.

There are pros and cons. In a company environment, I wouldn't use the --update as I'd want all my developers to use the same recipe revision from the dependencies. In fact, I would use only an in-house Artifactory. I'd test new revisions and, only if successful, I'd upload them to that in-house Artifactory. My developers would only use the in-house repository to get the dependencies.

@blackliner
Copy link
Contributor Author

Yes, we will move the the inhouse Artifactory soon, but as this one has a remote-repo pointing towards the official CCI repo so no one has to do any manual updates. I hope this will get better with recipe revisions, right?

Back to the bug, I can ask the next guy that has such a 404 problem to run conan remote list_ref, but my guess is it comes from conan-center

@jgsogo
Copy link
Contributor

jgsogo commented Jan 8, 2021

Check also the recipe revision they are using (if they have revisions enabled).

@blackliner
Copy link
Contributor Author

blackliner commented Jan 8, 2021

Got it now on our CI, after runing conan upload "*" --confirm -all --parallel --remote luminar:

[2021-01-08T15:56:10.466Z] ERROR: yaml-cpp/0.6.3: Upload recipe to 'luminar' failed: 404: Not Found. [Remote: conan-center]
[2021-01-08T15:56:10.466Z] The 'yaml-cpp/0.6.3' package has 'exports_sources' but sources not found in local cache.

It is not a dockerized environment, and another PR might have introduced the package on the machine. Is there a way I could debug this, given I have access to the node?

@jgsogo
Copy link
Contributor

jgsogo commented Jan 8, 2021

Yes, please:

  • Is there anything else in the log? Does it fail for a specific package-ID or just the first one?
  • Get the recipe revision you have locally (in the cache): conan info yaml-cpp/0.6.3@
  • Get the recipe revisions you have in your remotes: conan search yaml-cpp/0.6.3@ -r conan-center and conan search yaml-cpp/0.6.3@ -r luminar
  • Get remotes and URLs (just in case): conan remote list
  • Get remotes associated with recipes: conan remote list_ref
  • Get remotes associated with packages: conan remote list_pref

Let's see if we can see which one is the offending one.

@blackliner
Copy link
Contributor Author

blackliner commented Jan 8, 2021

Alright, here is the data:

Is there anything else in the log? Does it fail for a specific package-ID or just the first one?

Others work in this run, see the following log:

Jenkins LOG

[2021-01-08T15:55:57.771Z] Uploading to remote 'luminar':
[2021-01-08T15:55:57.771Z] 
Uploading acado/1.2.2-beta to remote 'luminar'                                           
[2021-01-08T15:55:57.771Z] 
Uploading arena_sdk/0.1.24 to remote 'luminar'                                           
[2021-01-08T15:55:57.771Z] 
Uploading arena_sdk/0.1.38 to remote 'luminar'                                           
[2021-01-08T15:55:57.771Z] 
Uploading catch2/2.13.3 to remote 'luminar'                                              
[2021-01-08T15:55:57.771Z] 
Uploading ceres-solver/1.14.0 to remote 'luminar'                                        
[2021-01-08T15:55:57.771Z] 
Uploading eigen/3.3.8 to remote 'luminar'                                                
[2021-01-08T15:55:57.771Z] 
Uploading nanoflann/1.3.2 to remote 'luminar'                                            
[2021-01-08T15:55:57.771Z] 
Uploading nlohmann_json/3.1.1 to remote 'luminar'                                        
[2021-01-08T15:55:57.771Z] Compressing recipe...
[2021-01-08T15:55:57.771Z] Compressing recipe...
[2021-01-08T15:55:59.540Z] Recipe is up to date, upload skipped
[2021-01-08T15:55:59.897Z] 
Uploading nlohmann_json/3.2.0 to remote 'luminar'                                        
[2021-01-08T15:55:59.897Z] Recipe is up to date, upload skipped
[2021-01-08T15:55:59.897Z] 
Uploading nlohmann_json/3.9.1 to remote 'luminar'                                        
[2021-01-08T15:55:59.897Z] Recipe is up to date, upload skipped
[2021-01-08T15:55:59.897Z] Recipe is up to date, upload skipped
[2021-01-08T15:55:59.897Z] Recipe is up to date, upload skipped
[2021-01-08T15:55:59.897Z] Recipe is up to date, upload skipped
[2021-01-08T15:55:59.897Z] 
Uploading trompeloeil/v39@rollbear/stable to remote 'luminar'                            
[2021-01-08T15:55:59.897Z] Recipe is up to date, upload skipped
[2021-01-08T15:55:59.897Z] 
Uploading trompeloeil/39 to remote 'luminar'                                             
[2021-01-08T15:55:59.897Z] 
Uploading yaml-cpp/0.6.3 to remote 'luminar'                                             
[2021-01-08T15:55:59.897Z] Recipe is up to date, upload skipped
[2021-01-08T15:55:59.897Z] 
Uploading package 1/1: 34f1dd71b4c6f8460340af87c7b7a669e148de75 to 'luminar'             
[2021-01-08T15:55:59.897Z] 
Uploading package 1/1: b832e2f92ca152953957d45b9654e5e4b1aa13a6 to 'luminar'             
[2021-01-08T15:55:59.897Z] Recipe is up to date, upload skipped
[2021-01-08T15:55:59.897Z] 
Uploading package 1/1: 5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9 to 'luminar'             
[2021-01-08T15:55:59.897Z] 
Uploading package 1/1: 5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9 to 'luminar'             
[2021-01-08T15:56:00.253Z] Recipe is up to date, upload skipped
[2021-01-08T15:56:00.253Z] 
Uploading package 1/1: 5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9 to 'luminar'             
[2021-01-08T15:56:00.253Z] Package is up to date, upload skipped
[2021-01-08T15:56:00.253Z] Recipe is up to date, upload skipped
[2021-01-08T15:56:00.253Z] 
Uploading package 1/1: 5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9 to 'luminar'             
[2021-01-08T15:56:00.253Z] Package is up to date, upload skipped
[2021-01-08T15:56:00.253Z] Package is up to date, upload skipped
[2021-01-08T15:56:00.253Z] Package is up to date, upload skipped
[2021-01-08T15:56:00.253Z] 
Uploading package 1/1: b0bab81756b4971d42859e9b1bc6f8b3fa8e036e to 'luminar'             
[2021-01-08T15:56:00.253Z] 
Uploading package 1/1: 5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9 to 'luminar'             
[2021-01-08T15:56:00.253Z] 
Uploading package 1/1: d1091b2ed420e6d287293709a907ae824d5de508 to 'luminar'             
[2021-01-08T15:56:00.253Z] 
Uploading package 1/1: 5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9 to 'luminar'             
[2021-01-08T15:56:00.253Z] Package is up to date, upload skipped
[2021-01-08T15:56:00.608Z] Package is up to date, upload skipped
[2021-01-08T15:56:00.608Z] Package is up to date, upload skipped
[2021-01-08T15:56:00.608Z] Compressing package...
[2021-01-08T15:56:00.963Z] Package is up to date, upload skipped
[2021-01-08T15:56:00.963Z] Package is up to date, upload skipped
[2021-01-08T15:56:01.316Z] Recipe is up to date, upload skipped
[2021-01-08T15:56:01.316Z] 
Uploading package 1/1: 5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9 to 'luminar'             
[2021-01-08T15:56:01.316Z] Package is up to date, upload skipped
[2021-01-08T15:56:10.466Z] Package is up to date, upload skipped
[2021-01-08T15:56:10.466Z] ERROR: yaml-cpp/0.6.3: Upload recipe to 'luminar' failed: 404: Not Found. [Remote: conan-center]
[2021-01-08T15:56:10.466Z] The 'yaml-cpp/0.6.3' package has 'exports_sources' but sources not found in local cache.
[2021-01-08T15:56:10.466Z] Probably it was installed from a remote that is no longer available.
[2021-01-08T15:56:10.466Z] 
[2021-01-08T15:56:10.466Z] 
[2021-01-08T15:56:10.466Z] ERROR: Errors uploading some packages

conan info yaml-cpp/0.6.3@

ERROR: yaml-cpp/0.6.3: Error in configure() method, line 35
        if self.settings.compiler.cppstd:
        ConanException: 'settings.compiler' value not defined

WARNING HUGE LIST

conan search yaml-cpp/0.6.3@ -r conan-center

    Package_ID: 0361dffd8f43a76c9aa894d20cb58fd062ae22cc
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 6.0
            os: Linux
        Outdated from recipe: False

    Package_ID: 038baac88f4c7bfa972ce5adac1616bed8fe2ef4
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: 038f8796e196b3dba76fcc5fd4ef5d3d9c6866ec
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: 053ea29eb0edc6b1695c893b738a971110c756fd
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 7
            os: Linux
        Outdated from recipe: False

    Package_ID: 0af8d75efe38bba3cbf8f16eed4218fe0d5f9605
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 5.0
            os: Linux
        Outdated from recipe: False

    Package_ID: 0b9354067ca7f207862935625f2824fd463f17d0
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 11
            os: Linux
        Outdated from recipe: False

    Package_ID: 0ee819761f77c3915f6726a76cc3243c89a98417
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: 127af201a4cdf8111e2e08540525c245c9b3b99e
        [options]
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: Visual Studio
            compiler.runtime: MD
            compiler.version: 16
            os: Windows
        Outdated from recipe: False

    Package_ID: 12e5893b8fc659201c13cf8aada0e395245207b9
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 4.9
            os: Linux
        Outdated from recipe: False

    Package_ID: 13020582e5189cd3e7bbbddba79f550e90552766
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 6
            os: Linux
        Outdated from recipe: False

    Package_ID: 13b48d56cd5d7dff22684d58482d685be985d688
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 9.1
            os: Macos
        Outdated from recipe: False

    Package_ID: 15d8ae16a02229b9d0a5fa05f7498a843f98f840
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 3.9
            os: Linux
        Outdated from recipe: False

    Package_ID: 180c83b442b8b30fb19151eca5509796e51d441b
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 10.0
            os: Macos
        Outdated from recipe: False

    Package_ID: 193ce1967be2dcbbe4e556f05a65b79934183cb6
        [options]
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: Visual Studio
            compiler.runtime: MTd
            compiler.version: 15
            os: Windows
        Outdated from recipe: False

    Package_ID: 1a1ab1b5ec185a3fe2d9c8e7c5b43dde10fa236a
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: 1a651c5b4129ad794b88522bece2281a7453aee4
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 7
            os: Linux
        Outdated from recipe: False

    Package_ID: 1c5bcde1e213fc712537f46d30a40b84c726ad26
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 11
            os: Linux
        Outdated from recipe: False

    Package_ID: 2000e2a2943bb17bf9e35568b527e0da032f28f8
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 3.9
            os: Linux
        Outdated from recipe: False

    Package_ID: 20b82f03d2422a719e5621a9d3c32ba02e7e332d
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 7
            os: Linux
        Outdated from recipe: False

    Package_ID: 21206bd73c3636750497f5d1a65364cc6adec885
        [options]
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: Visual Studio
            compiler.runtime: MTd
            compiler.version: 16
            os: Windows
        Outdated from recipe: False

    Package_ID: 23a056ea1e8bb56f3b1a67fbef4f47e9aa2d2522
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 4.0
            os: Linux
        Outdated from recipe: False

    Package_ID: 25913ae3483b9acf52199f7957909bd0fbfb0ac8
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 10.0
            os: Macos
        Outdated from recipe: False

    Package_ID: 264a397d120095b26217828520f5d9c8d0469b2f
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: 2ecdd61e37225a4dc2d2a6dbfc35904e6f4aa5f6
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: 350650b7664b7dfa8040cf894d2902f59d0da1cf
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 11
            os: Linux
        Outdated from recipe: False

    Package_ID: 3a7513ca1a6983009e409351999306636fb90d95
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: 3b345617ce2bd705ca33e4a8969fc7eb031ea30a
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 4.9
            os: Linux
        Outdated from recipe: False

    Package_ID: 3d70729ad0dce2c6d7b062b47c24bd4534a22930
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 6.0
            os: Linux
        Outdated from recipe: False

    Package_ID: 3fb49604f9c2f729b85ba3115852006824e72cab
        [options]
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: Visual Studio
            compiler.runtime: MD
            compiler.version: 16
            os: Windows
        Outdated from recipe: False

    Package_ID: 4005d674b93fd32898426b39a2b22d25df5ad644
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 5
            os: Linux
        Outdated from recipe: False

    Package_ID: 428b1d8ae0d3b0f1dd21e5a8590af6ebcf512650
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 3.9
            os: Linux
        Outdated from recipe: False

    Package_ID: 435f6d82215d51c7350154060d2d6634250003de
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 5
            os: Linux
        Outdated from recipe: False

    Package_ID: 4385e18b024237c4c0c095ad5eb42128ee311944
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 6
            os: Linux
        Outdated from recipe: False

    Package_ID: 467f67a13ca4f020df900cf54dea702f5898f054
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 9.1
            os: Macos
        Outdated from recipe: False

    Package_ID: 480b6c2b270c52242654b615baf089e7adedb890
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 5.0
            os: Linux
        Outdated from recipe: False

    Package_ID: 4a6bb2115e87f02d8f118c18da3f072d82f43d89
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: 4d887c1c2779c63d2cdd81580698d2e22cb35b29
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 5
            os: Linux
        Outdated from recipe: False

    Package_ID: 4f1710918aa542fccb5a54d7bd712e4b0750b50d
        [options]
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: Visual Studio
            compiler.runtime: MDd
            compiler.version: 16
            os: Windows
        Outdated from recipe: False

    Package_ID: 50a5030bbbb13ae56bc4be41915ecd48549cb895
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: 5123c6a281213ff9b37e6cf441b7be9ce4182462
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 11
            os: Linux
        Outdated from recipe: False

    Package_ID: 56e0cf6d16ee57367a0661ab743f4e43b29223f8
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: 57a838885e49a4f2167511cf2d68865f2b9965b3
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 4.0
            os: Linux
        Outdated from recipe: False

    Package_ID: 5fed66895e5b85fca4af6ac05bb157e1ffecb806
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 11.0
            os: Macos
        Outdated from recipe: False

    Package_ID: 60c19c9a664e1916a70843d229a399e3118f06cf
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 4.0
            os: Linux
        Outdated from recipe: False

    Package_ID: 63b81778d13f8e67b04b99c7daeec28d3e5a8c7e
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 6
            os: Linux
        Outdated from recipe: False

    Package_ID: 63da998e3642b50bee33f4449826b2d623661505
        [options]
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: Visual Studio
            compiler.runtime: MD
            compiler.version: 14
            os: Windows
        Outdated from recipe: False

    Package_ID: 66c5327ebdcecae0a01a863939964495fa019a06
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 7
            os: Linux
        Outdated from recipe: False

    Package_ID: 6905a2c0d81f40fb3433a9d4a9703ea657d96b47
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 3.9
            os: Linux
        Outdated from recipe: False

    Package_ID: 6919ad801145b5177babe14b18e071a555223ff4
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 7.0
            os: Linux
        Outdated from recipe: False

    Package_ID: 6a83d7f783e7ee89a83cf2fe72b5f5f67538e2a6
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 12.0
            os: Macos
        Outdated from recipe: False

    Package_ID: 6cc50b139b9c3d27b3e9042d5f5372d327b3a9f7
        [options]
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: Visual Studio
            compiler.runtime: MD
            compiler.version: 15
            os: Windows
        Outdated from recipe: False

    Package_ID: 6e71dc823e82870859da987d18f23794bd4a757b
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 6.0
            os: Linux
        Outdated from recipe: False

    Package_ID: 7129336b77bae56568bbe2439ff41737ac558bd6
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 7.0
            os: Linux
        Outdated from recipe: False

    Package_ID: 71332e7738fc309949be57cee8b821312d5ddd0d
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: 750e1dcf4c97ff4f414802c71282d79d7405a340
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 11.0
            os: Macos
        Outdated from recipe: False

    Package_ID: 77d57cfe06671f8aa2a9c02a85cddc97f4090f9a
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 5
            os: Linux
        Outdated from recipe: False

    Package_ID: 79b2a61a2a2901fa7e320e8bc07b05f19599353c
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 11
            os: Linux
        Outdated from recipe: False

    Package_ID: 79fff9d59ddc62bb06d68e6f3dfaf1166fde4418
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 5
            os: Linux
        Outdated from recipe: False

    Package_ID: 7a6b4153449d93fcb618404a0cb0dc0b69dc87fa
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: 7bd6f2c3d5c4e48a75805376b58cde753392f711
        [options]
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: Visual Studio
            compiler.runtime: MT
            compiler.version: 15
            os: Windows
        Outdated from recipe: False

    Package_ID: 7e125ee3b8d0acee254624864244a0ccf013d44f
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 5.0
            os: Linux
        Outdated from recipe: False

    Package_ID: 7f2f2e0dc409417fb8c1337f4abdc3c40fe90b3e
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: 7fa3148f741307b51a958483d8a2d2dd66cf0ac7
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 6
            os: Linux
        Outdated from recipe: False

    Package_ID: 80c1362d1262357d44b643c1edb50da5d67234c1
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 11.0
            os: Macos
        Outdated from recipe: False

    Package_ID: 82c4af7bfd01c8a01ef0c55c0b6d894c79fb672f
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 11
            os: Linux
        Outdated from recipe: False

    Package_ID: 82ef5eac51c38971dea2fd342dd55ddf2ddfbbc3
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: 853c4b61e2571e98cd7b854c1cda6bc111b8b32c
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 10.0
            os: Macos
        Outdated from recipe: False

    Package_ID: 85746886a6e8fefad755d863c764932ad6817380
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: 8a509d7228e44a159480ea7b3fe014c0acf934b5
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: 8a672d2a861a76ab51d514e456102f6443ec5709
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 6.0
            os: Linux
        Outdated from recipe: False

    Package_ID: 8cf01e2f50fcd6b63525e70584df0326550364e1
        [options]
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: Visual Studio
            compiler.runtime: MDd
            compiler.version: 15
            os: Windows
        Outdated from recipe: False

    Package_ID: 8d70f299a9f66b1d155c0c4fefc7a9c068ebcd3e
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 7.0
            os: Linux
        Outdated from recipe: False

    Package_ID: 8dcb27d07e271534b72b1af6c57b071afe9ad65e
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 5
            os: Linux
        Outdated from recipe: False

    Package_ID: 8f80b85104246024bbf167df2731aa620d73290e
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 6
            os: Linux
        Outdated from recipe: False

    Package_ID: 9117106b1c1bfe76c5aae136836b353c35b36fff
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 6.0
            os: Linux
        Outdated from recipe: False

    Package_ID: 91f2f6ad8e5961a465a4035bbf5d0e4c737c9caa
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: 95a0193c978a44a415a11a2919ce1f77f26dd1c5
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: 95b87e2c9261497d05b76244c015fbde06fe50b3
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 10.0
            os: Macos
        Outdated from recipe: False

    Package_ID: 963bb116781855de98dbb23aaac41621e5d312d8
        [options]
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: Visual Studio
            compiler.runtime: MTd
            compiler.version: 15
            os: Windows
        Outdated from recipe: False

    Package_ID: 96c41e54568df8febe78baf285fc1258aa1d4690
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: 970e773c5651dc2560f86200a4ea56c23f568ff9
        [options]
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: Visual Studio
            compiler.runtime: MD
            compiler.version: 15
            os: Windows
        Outdated from recipe: False

    Package_ID: 995e0f0b86a651012a3bfca00d60f35ae037db5e
        [options]
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: Visual Studio
            compiler.runtime: MT
            compiler.version: 16
            os: Windows
        Outdated from recipe: False

    Package_ID: 99e816379051e5c714aaf43176c5d635ac5622e8
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: 9ad3f90740e647ac0c539e7a0a57b31afcc1a28c
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: 9aea1b1a46cc502b3591eafb492153938cec535f
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: 9cb7ac99f58a79b591516cbdd53096db4a815c86
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: 9d40ee60216e81e879dbfd05f2e8be7d0fae14ac
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 5.0
            os: Linux
        Outdated from recipe: False

    Package_ID: 9d667adb04069556cf0869da7c98ed5df66d32f5
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 3.9
            os: Linux
        Outdated from recipe: False

    Package_ID: 9e273ff21d3cee9af2a370e391eadf737bf084b3
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 6.0
            os: Linux
        Outdated from recipe: False

    Package_ID: a16e582b6208f9dcfa44325507b9c20f9157bfc7
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 11
            os: Linux
        Outdated from recipe: False

    Package_ID: a2457157ee4cd9d5639b97f97d9e4b2e75219cbe
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 6.0
            os: Linux
        Outdated from recipe: False

    Package_ID: a2582e1f57e524e15d7e84f4c862d0a472d3216f
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: a25d6c83542b56b72fdaa05a85db5d46f5f0f71c
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: a3186c3ffdda28485106ba9aa7e96b083e85c085
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 7.0
            os: Linux
        Outdated from recipe: False

    Package_ID: a3595d142cf8e2b68ddac3c867061dc0d9173818
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 3.9
            os: Linux
        Outdated from recipe: False

    Package_ID: a506942c4fdc4003ced5ed2afee2a0486db24337
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 4.9
            os: Linux
        Outdated from recipe: False

    Package_ID: a79a557254fabcb77849dd623fed97c9c5ab7651
        [options]
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: Visual Studio
            compiler.runtime: MT
            compiler.version: 16
            os: Windows
        Outdated from recipe: False

    Package_ID: a7dd99fee8f8af418e4cf97d9514c5e8e833fdfa
        [options]
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: Visual Studio
            compiler.runtime: MTd
            compiler.version: 14
            os: Windows
        Outdated from recipe: False

    Package_ID: a90dfc6d67d865c90c5681f9f689d5864aac8e3d
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 6.0
            os: Linux
        Outdated from recipe: False

    Package_ID: ab1732eaa9b018f8ce55e42c1863eee4f20db10b
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 5.0
            os: Linux
        Outdated from recipe: False

    Package_ID: ab4797bac78775d9e373e5fbcbd9b3fb01264904
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: ab511e4ed7acd7ee16883b0408acaa70424f45e2
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 5.0
            os: Linux
        Outdated from recipe: False

    Package_ID: aba3db45ce6e33092e8eb3cb126fc3f291d32bf5
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: ac062fddda604275b8d4a5eeef8896e72fd329dd
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 4.0
            os: Linux
        Outdated from recipe: False

    Package_ID: aca5a09a6c56469ea46c32f6cc82e5270dd64304
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 11
            os: Linux
        Outdated from recipe: False

    Package_ID: ae90f8a7999b915f4a8a6ade3911eaddd75c7105
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: affb332c85f8958a44b68f8e24dc0e62e12897f0
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 7
            os: Linux
        Outdated from recipe: False

    Package_ID: b01ec9b927644995e35dbd5bf63567d679c87350
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 6
            os: Linux
        Outdated from recipe: False

    Package_ID: b08b9c5744b12aea1e424a3c0d22fe80bd9b3cc3
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 9.1
            os: Macos
        Outdated from recipe: False

    Package_ID: b173bbda18164d49a449ffadc1c9e817f49e819d
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: b28bcde4cbb80d2db194739511c07ae209a4ab3a
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 7
            os: Linux
        Outdated from recipe: False

    Package_ID: b2b69efcc79a149e0bc765fb12ba0278d52fc260
        [options]
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: Visual Studio
            compiler.runtime: MTd
            compiler.version: 16
            os: Windows
        Outdated from recipe: False

    Package_ID: b3b365349e0f15b02d4bfbbed773d6600227a3f0
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: b6ed6852348b865abb04a1f44074bcd81d14d521
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: b759e10106fc0b4923414b05bb78eba0bbc8b30b
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 5
            os: Linux
        Outdated from recipe: False

    Package_ID: b83448bdc84fb0b55b49f3ba31d33036718e65de
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: b911f48570f9bb2902d9e83b2b9ebf9d376c8c56
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: b91d4c850085ce839f1cd3308ec904a1a58da7ea
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: b956615a2d7a652db3d8c889cd2ba264be9600c7
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 6
            os: Linux
        Outdated from recipe: False

    Package_ID: b99ab7186b6639903ac2a51fe3e9cf73aecb26ad
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: ba203d82ae0020eccba7236c3748eb8f79fceaf6
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 12.0
            os: Macos
        Outdated from recipe: False

    Package_ID: ba3872b419f0b5f5948b43bc6817447b031fa997
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 12.0
            os: Macos
        Outdated from recipe: False

    Package_ID: bad6dc67d896584743e7ad668a5167e6875f3aaa
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: bd296613bdf96784eee27d07e7101fa30484f901
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 7
            os: Linux
        Outdated from recipe: False

    Package_ID: bf81e8e693fa7ccd30472785bfbb7216b8c6109b
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 4.0
            os: Linux
        Outdated from recipe: False

    Package_ID: bf8bf3502ae799c155450cfd720fb00e0f31c39c
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 7.0
            os: Linux
        Outdated from recipe: False

    Package_ID: c32596dcd26b8c708dc3d19cb73738d2b48f12a8
        [options]
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: Visual Studio
            compiler.runtime: MDd
            compiler.version: 14
            os: Windows
        Outdated from recipe: False

    Package_ID: c504c67933d514fc146c38d6f062b33cd27ad91d
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: c7d62cae1a5f1e3841a62ab36957509fc6892680
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 4.0
            os: Linux
        Outdated from recipe: False

    Package_ID: c83d8b197f1a331ca3b55943846d427ad4f7f8e1
        [options]
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: Visual Studio
            compiler.runtime: MDd
            compiler.version: 14
            os: Windows
        Outdated from recipe: False

    Package_ID: c85f9b402dd4d46acdf074e1c63b768a41181d7a
        [options]
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: Visual Studio
            compiler.runtime: MD
            compiler.version: 14
            os: Windows
        Outdated from recipe: False

    Package_ID: ca4b767114c8e107f72671a3380d9917e2b9adff
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: ca909424a72d2d23947dd92df119772d090322de
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 4.0
            os: Linux
        Outdated from recipe: False

    Package_ID: cad341f291faebcd39bbde6ac068275eaef44ca1
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: cbf3700a07e77fc094c00feba083e4a770f80834
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: cc87fc8d8b45cd4affbef9538b392ad194f977b3
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 7.0
            os: Linux
        Outdated from recipe: False

    Package_ID: ce0b52dcb928cd6c38c9ab276585a36273fdf43c
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 3.9
            os: Linux
        Outdated from recipe: False

    Package_ID: d057732059ea44a47760900cb5e4855d2bea8714
        [options]
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: Visual Studio
            compiler.runtime: MDd
            compiler.version: 16
            os: Windows
        Outdated from recipe: False

    Package_ID: d0ec62fc032e5a10524fa454546aa1bdbb22baf8
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 6
            os: Linux
        Outdated from recipe: False

    Package_ID: d1f0b10beb795519840f0ae9a7d41be2430b7000
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 5.0
            os: Linux
        Outdated from recipe: False

    Package_ID: d351525cc53ebe68279edf1978846402420066e7
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 7
            os: Linux
        Outdated from recipe: False

    Package_ID: d3d03154b751f59793bfb4aab82a828f47c73538
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: d78cbfd7d6f9547f459e93d4c34763973313d0e2
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 5.0
            os: Linux
        Outdated from recipe: False

    Package_ID: d8916f6016f745b1163b85952f5e984556ca5311
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 9.1
            os: Macos
        Outdated from recipe: False

    Package_ID: df81ad20137149d7a51276fd3e24009b45e5964a
        [options]
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: Visual Studio
            compiler.runtime: MT
            compiler.version: 14
            os: Windows
        Outdated from recipe: False

    Package_ID: dfaa0b5d375c252c10fee091f8f0e3e63a81ad74
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: e139c19861dec307fc798394ed758ebe6270c17a
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: e25698fed5bcb8badcb5735dd76d70be92a69b01
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: e2d1924e024898d440cada5480848fef6a249107
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 3.9
            os: Linux
        Outdated from recipe: False

    Package_ID: e3733e97a2ea8fc5313745c53c0b53c9a1e9b0ea
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 7.0
            os: Linux
        Outdated from recipe: False

    Package_ID: e5cc9bd394a15c8352218d8e046d8e0e11e3c092
        [options]
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: Visual Studio
            compiler.runtime: MT
            compiler.version: 14
            os: Windows
        Outdated from recipe: False

    Package_ID: e8fa0f46f269de0e47e5811369aa4a092c818e15
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 8
            os: Linux
        Outdated from recipe: False

    Package_ID: e9d45343ff508f061548a4e53a13dfc21e6428bd
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 4.0
            os: Linux
        Outdated from recipe: False

    Package_ID: ec99b8603cf0c868ef79c7e6ea021f731303cd5e
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 4.9
            os: Linux
        Outdated from recipe: False

    Package_ID: ee7fdf6f4b8b8176ff69e620a8ab90b51ec192d0
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 9
            os: Linux
        Outdated from recipe: False

    Package_ID: eec6acc43f6348a597c20e5bd28d9e0590a02597
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Release
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 11.0
            os: Macos
        Outdated from recipe: False

    Package_ID: ef0c3edca1cf558ed18a8d520327dc2ba60a60a2
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: f27dcd2d5e453cb01f9324a959461903ce8116a0
        [options]
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: Visual Studio
            compiler.runtime: MTd
            compiler.version: 14
            os: Windows
        Outdated from recipe: False

    Package_ID: f42ebec2d0ee7d5c41713cd8eee15cf988b0d202
        [options]
            shared: True
        [settings]
            arch: x86_64
            build_type: Release
            compiler: Visual Studio
            compiler.runtime: MT
            compiler.version: 15
            os: Windows
        Outdated from recipe: False

    Package_ID: fc6732b46ab0a5cc80e881909f3ca067caab18c2
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: apple-clang
            compiler.libcxx: libc++
            compiler.version: 12.0
            os: Macos
        Outdated from recipe: False

    Package_ID: fcc9bda6948b7e5cd4eddd99173a9b73f3bfaebb
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 5
            os: Linux
        Outdated from recipe: False

    Package_ID: fd074ebd62bf73af57ebfb7be4c6779f47d7ea19
        [options]
            fPIC: True
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libstdc++
            compiler.version: 10
            os: Linux
        Outdated from recipe: False

    Package_ID: fd4b27a6be910ea0ad65558a2e9eca0c70c181f6
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: clang
            compiler.libcxx: libc++
            compiler.version: 7.0
            os: Linux
        Outdated from recipe: False

    Package_ID: ff82a1e70ba8430648a79986385b20a3648f8c19
        [options]
            shared: True
        [settings]
            arch: x86_64
            build_type: Debug
            compiler: Visual Studio
            compiler.runtime: MDd
            compiler.version: 15
            os: Windows
        Outdated from recipe: False

conan search yaml-cpp/0.6.3@ -r luminar

Existing packages for recipe yaml-cpp/0.6.3:

Existing recipe in remote 'luminar':

    Package_ID: 08f0f6b54224d0f59c7a23bfbaa25f463db315ae
        [options]
            fPIC: True
            shared: False
        [settings]
            arch: armv8
            build_type: Release
            compiler: gcc
            compiler.libcxx: libstdc++11
            compiler.version: 7
            os: Linux
        Outdated from recipe: False

conan remote list

conan-center: https://conan.bintray.com [Verify SSL: True]
conan-community: https://api.bintray.com/conan/conan-community/conan [Verify SSL: True]
bincrafters: https://api.bintray.com/conan/bincrafters/public-conan [Verify SSL: True]
luminar: https://luminartech.jfrog.io/artifactory/api/conan/conan [Verify SSL: True] << this one is actually authenticated with the CI user

conan remote list_ref

arena_sdk/0.1.38: luminar
arena_sdk/0.1.24: luminar
nlohmann_json/3.9.1: conan-center
nlohmann_json/3.1.1: conan-center
nlohmann_json/3.2.0: conan-center
trompeloeil/v39@rollbear/stable: conan-center
trompeloeil/39: conan-center
acado/1.2.2-beta: conan-center
nanoflann/1.3.2: conan-center
eigen/3.3.8: conan-center
catch2/2.13.3: conan-center
ceres-solver/1.14.0: conan-center
yaml-cpp/0.6.3: conan-center

conan remote list_pref

usage: conan remote list_pref [-h] [--no-remote] reference
conan remote list_pref: error: the following arguments are required: reference
ERROR: Exiting with code: 2

So I tried conan remote list_pref yaml-cpp/0.6.3 but the result was empty 🤷

@jgsogo
Copy link
Contributor

jgsogo commented Jan 8, 2021

I forgot two more commands:

  • Recipe revisions in the remotes: conan search yaml-cpp/0.6.3@ --revisions -r conan-center and conan search yaml-cpp/0.6.3@ --revisions -r luminar
  • Recipe revision locally (substitutes the failing conan info command): conan search yaml-cpp/0.6.3@ --revisions

@jgsogo
Copy link
Contributor

jgsogo commented Jan 8, 2021

I didn't expect conan remote list_pref yaml-cpp/0.6.3@ (try with the trailing @) to return an empty list... I would expect your Jenkins node to contain at least one package, isn't it?

@blackliner
Copy link
Contributor Author

blackliner commented Jan 8, 2021

conan search yaml-cpp/0.6.3@ --revisions -r conan-center

Revisions for 'yaml-cpp/0.6.3' at remote 'conan-center':
4a206282f067a1bde11d74bbdaa7f4b1 (2020-11-12 15:04:01 UTC)
1d967c38733ac53e1a4c8af1f20d4700 (2020-07-07 14:31:30 UTC)
cbd172d0cd32aea7edb229a9980ecfb5 (2019-12-12 10:27:56 UTC)
75f4cc5402a0884ece3de7cd4f4daacc (2019-10-01 14:12:56 UTC)

conan search yaml-cpp/0.6.3@ --revisions -r luminar

Revisions for 'yaml-cpp/0.6.3' at remote 'luminar':
0 (2021-01-07 19:33:34 UTC)
4a206282f067a1bde11d74bbdaa7f4b1 (2021-01-07 18:47:52 UTC)
4a206282f067a1bde11d74bbdaa7f4b1 (2020-11-12 15:04:01 UTC)
1d967c38733ac53e1a4c8af1f20d4700 (2020-07-07 14:31:30 UTC)
cbd172d0cd32aea7edb229a9980ecfb5 (2019-12-12 10:27:56 UTC)
75f4cc5402a0884ece3de7cd4f4daacc (2019-10-01 14:12:56 UTC)

conan search yaml-cpp/0.6.3@ --revisions

Revisions for 'yaml-cpp/0.6.3':
0 (No time)

I didn't expect conan remote list_pref yaml-cpp/0.6.3@ (try with the trailing @) to return an empty list... I would expect your Jenkins node to contain at least one package, isn't it?

Yes, there are a few in it, for example conan remote list_pref acado/1.2.2-beta@ gives:

acado/1.2.2-beta:b832e2f92ca152953957d45b9654e5e4b1aa13a6: luminar

conan remote list_pref yaml-cpp/0.6.3@ is empty :-/

@jgsogo
Copy link
Contributor

jgsogo commented Jan 8, 2021

I didn't expect this output:

Revisions for 'yaml-cpp/0.6.3' at remote 'luminar':
0 (2021-01-07 19:33:34 UTC)
4a206282f067a1bde11d74bbdaa7f4b1 (2021-01-07 18:47:52 UTC)
4a206282f067a1bde11d74bbdaa7f4b1 (2020-11-12 15:04:01 UTC)
1d967c38733ac53e1a4c8af1f20d4700 (2020-07-07 14:31:30 UTC)
cbd172d0cd32aea7edb229a9980ecfb5 (2019-12-12 10:27:56 UTC)
75f4cc5402a0884ece3de7cd4f4daacc (2019-10-01 14:12:56 UTC)

You have a revision 0, which means that you uploaded the packages at some point in time using a Conan client without revisions configured. Is this expected? Are you using revisions or not? I encourage you to use always revisions, it will be the default (and only way) for Conan 2.0 .

Then I see a duplicated revision, I was not aware of this, this is probably because you have conan-center configured as a remote-repository and Artifactory is aggregating the revisions from all the repositories... Something new I learned today (cc/ @czoido )


Back to the main issue:

Can you check if all your devs and CI nodes are using the same configuration? At least, regarding revisions: conan config get general.revisions_enabled.

An empty output here conan remote list_pref yaml-cpp/0.6.3@ is totally unexpected. I suppose you are using a package, something must be in the cache, otherwise you wouldn't be able to compile and link. Can you inspect manually the conan cache (conan config home) inside the directory data/yaml/0.6.3/_/_/? I'm interested on the contents of the file metadata.json and also the list of directories inside data/yaml/0.6.3/_/_/package/.

@blackliner
Copy link
Contributor Author

blackliner commented Jan 8, 2021

Regarding revisions: Our Artifactory is configured to only support revisions, so everyone that tries to upload without revisions enabled, gets an error. Happened to me a few times, so I do not know how this could have happened.

Main issue: yes, we all (and especially the CI node that has this error) use this following config, which is conan config install'd with every build:

[general]
parallel_download = 8
revisions_enabled = 1

[storage]
download_cache = /tmp/conan_download_cache

tree .conan/data/yaml-cpp/0.6.3/_/:

.conan/data/yaml-cpp/0.6.3/_/
├── _
│   ├── dl
│   │   └── export
│   │       └── conan_export.tgz
│   ├── export
│   │   ├── conandata.yml
│   │   ├── conanfile.py
│   │   └── conanmanifest.txt
│   ├── locks
│   │   └── 08f0f6b54224d0f59c7a23bfbaa25f463db315ae
│   ├── metadata.json
│   └── metadata.json.lock
├── _.count
└── _.count.lock

cat .conan/data/yaml-cpp/0.6.3/_/_/metadata.json + https://jsonformatter.curiousconcept.com/:

{
   "recipe":{
      "revision":"0",
      "remote":"conan-center",
      "properties":{
         
      },
      "checksums":{
         "conanmanifest.txt":{
            "md5":"ed9b87577e7a19c67a77d308867d433c",
            "sha1":"2d6a20d139d6a2c9b6a70efe722a3aef938d8180"
         },
         "conanfile.py":{
            "md5":"e37f6ed58e1590773b2b50b158cc8269",
            "sha1":"74dc2ae706b51312be87015f68167720ee5c6715"
         },
         "conan_export.tgz":{
            "md5":"edbf23c0d9fd60ad31a1b141886f6469",
            "sha1":"eff8346587e72182d3de1f83d66df66bb8ee6cb1"
         }
      }
   },
   "packages":{
      
   }
}

@blackliner
Copy link
Contributor Author

blackliner commented Jan 8, 2021

I am on the agent right now, ran conan upload yaml-cpp/0.6.3 --all --confirm --remote luminar:

Uploading to remote 'luminar':
Uploading yaml-cpp/0.6.3 to remote 'luminar'
ERROR: yaml-cpp/0.6.3: Upload recipe to 'luminar' failed: 404: Not Found. [Remote: conan-center]
The 'yaml-cpp/0.6.3' package has 'exports_sources' but sources not found in local cache.
Probably it was installed from a remote that is no longer available.


ERROR: Errors uploading some packages

Is there a DEBUG mode or such? Nvm: export CONAN_TRACE_FILE=/tmp/conan_trace.log:

{
   "_action":"COMMAND",
   "name":"upload",
   "parameters":{
      "all_packages":true,
      "confirm":true,
      "integrity_check":false,
      "package":null,
      "parallel_upload":false,
      "pattern":"yaml-cpp/0.6.3",
      "policy":null,
      "query":null,
      "remote_name":"luminar",
      "retry":null,
      "retry_wait":null
   },
   "time":1610130225.9259057
}{
   "_action":"REST_API_CALL",
   "duration":0.2315664291381836,
   "headers":{
      "User-Agent":"Conan/1.32.1 (Python 3.6.9) python-requests/2.25.1",
      "X-Client-Anonymous-Id":"**********",
      "X-Client-Id":""
   },
   "method":"GET",
   "time":1610130226.1911664,
   "url":"https://conan.bintray.com/v1/ping"
}{
   "_action":"REST_API_CALL",
   "duration":0.0647575855255127,
   "headers":{
      "User-Agent":"Conan/1.32.1 (Python 3.6.9) python-requests/2.25.1",
      "X-Client-Anonymous-Id":"**********",
      "X-Client-Id":""
   },
   "method":"GET",
   "time":1610130226.2583447,
   "url":"https://conan.bintray.com/v2/conans/yaml-cpp/0.6.3/_/_/revisions/0/files"
}{
   "_action":"EXCEPTION",
   "class":"ConanException",
   "message":"Errors uploading some packages",
   "time":1610130226.35303
}

@blackliner
Copy link
Contributor Author

blackliner commented Jan 8, 2021

hen I see a duplicated revision, I was not aware of this, this is probably because you have conan-center configured as a remote-repository and Artifactory is aggregating the revisions from all the repositories... Something new I learned today (cc/ @czoido )

Yes, we have setup a remote repo pointing to conan-center to have access to all packages when we stop using conan-center in our remotes.json and purely rely on our internal Artifactory server (not yet, but soon)

@blackliner
Copy link
Contributor Author

blackliner commented Jan 9, 2021

Got it again, this time on my laptop. Interestingly, it shows a suspicious line before the error now:

zeromq/4.3.3: WARN: Build folder is dirty, removing it: /home/fberchtold/.conan/data/zeromq/4.3.3/_/_/build/08f0f6b54224d0f59c7a23bfbaa25f463db315ae
ERROR: 404: Not Found. [Remote: conan-center]
The 'zeromq/4.3.3' package has 'exports_sources' but sources not found in local cache.
Probably it was installed from a remote that is no longer available

And before the build starts, this line is in the log:

zeromq/4.3.3: WARN: Package binary is corrupted, removing: 08f0f6b54224d0f59c7a23bfbaa25f463db315ae

conan search zeromq/4.3.3@ --revisions

Revisions for 'zeromq/4.3.3':
0 (No time)

Very weird, I would expect this always works:
conan install zeromq/4.3.3@ -b zeromq

Configuration:
[settings]
arch=x86_64
arch_build=x86_64
build_type=Release
compiler=gcc
compiler.libcxx=libstdc++11
compiler.version=7
os=Linux
os_build=Linux
[options]
[build_requires]
[env]

zeromq/4.3.3: Forced build from source
Installing package: zeromq/4.3.3
Requirements
    libsodium/1.0.18 from 'conan-center' - Cache
    zeromq/4.3.3 from 'conan-center' - Cache
Packages
    libsodium/1.0.18:91a02ef095d6f8a3742bd7f4ddf9b748d82a004c - Cache
    zeromq/4.3.3:29f9b88b7d31710de5168e78f04b101f9a1be822 - Build

Installing (downloading, building) binaries...
libsodium/1.0.18: Already installed!
zeromq/4.3.3: WARN: Build folder is dirty, removing it: /home/fberchtold/.conan/data/zeromq/4.3.3/_/_/build/29f9b88b7d31710de5168e78f04b101f9a1be822
ERROR: 404: Not Found. [Remote: conan-center]
The 'zeromq/4.3.3' package has 'exports_sources' but sources not found in local cache.
Probably it was installed from a remote that is no longer available.

@blackliner
Copy link
Contributor Author

blackliner commented Jan 9, 2021

from CONAN_TRACE_FILE=/tmp/conan_trace.log conan install zeromq/4.3.3@ -b zeromq

{"_action": "COMMAND", "name": "install_reference", "parameters": {"build": ["zeromq"], "env": null, "generators": null, "install_folder": null, "lockfile": null, "lockfile_node_id": null, "lockfile_out": null, "manifests": null, "manifests_interactive": null, "options": null, "profile_build": [null, null, null, null], "profile_names": null, "remote_name": null, "settings": null, "update": false, "verify": null}, "time": 1610040542.6646109}
{"_action": "GOT_RECIPE_FROM_LOCAL_CACHE", "_id": "zeromq/4.3.3", "time": 1610040542.6857138}
{"_action": "GOT_RECIPE_FROM_LOCAL_CACHE", "_id": "libsodium/1.0.18", "time": 1610040542.688309}
{"_action": "GOT_PACKAGE_FROM_LOCAL_CACHE", "_id": "libsodium/1.0.18:91a02ef095d6f8a3742bd7f4ddf9b748d82a004c", "time": 1610040542.6986716}
{"_action": "REST_API_CALL", "duration": 0.9377443790435791, "headers": {"User-Agent": "Conan/1.32.1 (Python 3.6.9) python-requests/2.9.1", "X-Client-Anonymous-Id": "**********", "X-Client-Id": ""}, "method": "GET", "time": 1610040543.6383586, "url": "https://conan.bintray.com/v1/ping"}
{"_action": "REST_API_CALL", "duration": 0.2320542335510254, "headers": {"User-Agent": "Conan/1.32.1 (Python 3.6.9) python-requests/2.9.1", "X-Client-Anonymous-Id": "**********", "X-Client-Id": ""}, "method": "GET", "time": 1610040543.8712535, "url": "https://conan.bintray.com/v2/conans/zeromq/4.3.3/_/_/revisions/0/files"}
{"_action": "EXCEPTION", "class": "ConanException", "message": "404: Not Found. [Remote: conan-center]\nThe 'zeromq/4.3.3' package has 'exports_sources' but sources not found in local cache.\nProbably it was installed from a remote that is no longer available.\n", "time": 1610040543.8758316}

suspicious line

{"_action": "REST_API_CALL", "duration": 0.2320542335510254, "headers": {"User-Agent": "Conan/1.32.1 (Python 3.6.9) python-requests/2.9.1", "X-Client-Anonymous-Id": "**********", "X-Client-Id": ""}, "method": "GET", "time": 1610040543.8712535, "url": "https://conan.bintray.com/v2/conans/zeromq/4.3.3/_/_/revisions/0/files"}

especially "url": "https://conan.bintray.com/v2/conans/zeromq/4.3.3/_/_/revisions/0/files" << this url does not exist, right?

@blackliner
Copy link
Contributor Author

@jgsogo any updates? The non existing url might be a lead?

@blackliner
Copy link
Contributor Author

I think this was eventually a duplicate of #8539

@blackliner blackliner closed this as not planned Won't fix, can't repro, duplicate, stale Jun 28, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants