Skip to content

Commit

Permalink
(#8916) deprecate co recipe in favor of cocoyaxi
Browse files Browse the repository at this point in the history
* deprecate co recipe in favor of cocoyaxi

* fix sha
  • Loading branch information
SpaceIm authored Jan 25, 2022
1 parent 8664df3 commit 7e4c441
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion recipes/co/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 3 additions & 1 deletion recipes/co/all/conanfile.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from conans import ConanFile, CMake, tools
from conans.errors import ConanInvalidConfiguration
import os

required_conan_version = ">=1.33.0"

Expand All @@ -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"

Expand Down

0 comments on commit 7e4c441

Please sign in to comment.