为什么我的柯南软件包似乎已损坏?

问题描述 投票:0回答:1

背景

我有一个正在使用boost/1.71.0@conan/stable的项目,并且给了我一个编译时错误。我决定尝试boost/1.72.0来解决这个问题。当我这样做的时候,我得到了:

1> [CMake] ERROR: boost/1.72.0: Error in source() method, line 151
1> [CMake]  tools.get(**self.conan_data["sources"][self.version])
1> [CMake]  AttributeError: 'NoneType' object has no attribute 'token'
1> [CMake] CMake Error at out/build/x64-Debug/conan.cmake:402 (message):
1> [CMake]   Conan install failed='1'
1> [CMake] Call Stack (most recent call first):
1> [CMake]   out/build/x64-Debug/conan.cmake:497 (conan_cmake_install)
1> [CMake]   CMakeLists.txt:41 (conan_cmake_run)

它引用了我的CMakeLists.txt中的conan_cmake_run()调用:

if(CONAN_EXPORTED) # in conan local cache
    include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
    conan_basic_setup()
else() # in user space
    include(${CMAKE_BINARY_DIR}/conan.cmake)

    conan_cmake_run(CONANFILE conanfile.txt
                    BASIC_SETUP
                    BUILD missing)
endif()

和boost conanfile.py中的第151行:

        if tools.os_info.is_windows:
            sha256 = "85a94ac71c28e59cf97a96714e4c58a18550c227ac8b0388c260d6c717e47a69"
            extension = ".zip"
        else:
            sha256 = "d73a8da01e8bf8c7eda40b4c84915071a8c8a0df4a6734537ddde4a8580524ee"
            extension = ".tar.bz2"

        zip_name = "%s%s" % (self.folder_name, extension)
        url = "https://dl.bintray.com/boostorg/release/%s/source/%s" % (self.version, zip_name)
151:    tools.get(url, sha256=sha256)

        ...

我的conanfile.txt:

[requires]
boost/1.72.0
...some of my own packages...

[generators]
cmake

[options]
boost:shared=True

我尝试过的事情

  • 将柯南从1.21升级到1.23。那给了我一个不同的错误(“禁止”某事或其他),因此在尝试消除了一段时间后,我恢复了。我也在这里的某个地方更新了Pip。
  • 使用conan remove boost/*删除boost包
  • 其他增强版本...我尝试过boost/1.71.0boost/1.72.0boost/1.71.0@conan/stable。后者最初起作用,但在删除所有boost程序包后不再起作用。与此相关的是,当我第二次生成CMake缓存时(即boost软件包已经在本地缓存中),我收到以下警告:
1> [CMake] boost/1.72.0: Configuring sources in C:\.conan\133b85\1
1> [CMake] boost/1.72.0: WARN: Package is corrupted, removing folder: C:\.conan\854baa\1
1> [CMake] boost/1.72.0: WARN: Build folder is dirty, removing it: C:\.conan\34c708\1
1> [CMake] boost/1.72.0: WARN: Trying to remove corrupted source folder
1> [CMake] boost/1.72.0: WARN: This can take a while for big packages
1> [CMake] ERROR: boost/1.72.0: Error in source() method, line 151]
... snip: the additional errors already copied at the beginning of the post ...

所以,我怀疑甚至是以前工作的boost/1.71.0@conan/stable在重新拉动时也被破坏了。

注意:当指示Visual Studio生成CMake缓存时,会发生这种情况。

conan
1个回答
0
投票

软件包配方中使用的URL:https://dl.bintray.com/boostorg/release/1.72.0/source/boost_1_72_0.tar.bz2,不起作用。似乎下载网址存在一些问题,您可以尝试在浏览器中下载。因此,与柯南无关,而不是食谱问题。

© www.soinside.com 2019 - 2024. All rights reserved.