diff --git a/recipes/co/all/conandata.yml b/recipes/co/all/conandata.yml index 9e3f30dfa8bb6b..e71aeda87ca269 100644 --- a/recipes/co/all/conandata.yml +++ b/recipes/co/all/conandata.yml @@ -1,7 +1,7 @@ sources: "2.0.2": url: "https://github.com/idealvin/co/archive/refs/tags/v2.0.2.tar.gz" - sha256: "b5fecc4e0556e33ae11ac2b7c80e37add6cc9d32942e48ce65593f09aa3ef35b" + sha256: "5dbb90e18627ebe563a6a437e8e28329a6bfc07f266718318bd3adf26027d156" patches: "2.0.2": - patch_file: "patches/001-install-dll.patch" diff --git a/recipes/co/all/conanfile.py b/recipes/co/all/conanfile.py index 1752f89b396c95..5be88f24e0ce3d 100644 --- a/recipes/co/all/conanfile.py +++ b/recipes/co/all/conanfile.py @@ -1,6 +1,5 @@ from conans import ConanFile, CMake, tools from conans.errors import ConanInvalidConfiguration -import os required_conan_version = ">=1.33.0" @@ -12,6 +11,9 @@ class CoConan(ConanFile): license = "MIT" description = "A go-style coroutine library in C++11 and more." topics = ("co", "coroutine", "c++11") + + deprecated = "cocoyaxi" + exports_sources = "CMakeLists.txt", "patches/*" generators = "cmake", "cmake_find_package"