Skip to content

Commit

Permalink
(#24358) c4core: add version 0.2.1, remove natvis file
Browse files Browse the repository at this point in the history
  • Loading branch information
toge authored Jun 17, 2024
1 parent 0251a96 commit 7646d1d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions recipes/c4core/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
sources:
"0.2.1":
url: "https://github.com/biojppm/c4core/releases/download/v0.2.1/c4core-0.2.1-src.tgz"
sha256: "6447896444c59002af58c8543d0bc64184b9a5c5992c8fc09d6d71935d039f89"
"0.2.0":
url: "https://github.com/biojppm/c4core/releases/download/v0.2.0/c4core-0.2.0-src.tgz"
sha256: "7843e6fb41c200fff69fc71105dbbf56bb410bdbab6b330e02cbe18430fe23bd"
Expand All @@ -15,6 +18,10 @@ sources:
url: "https://github.com/biojppm/c4core/releases/download/v0.1.8/c4core-0.1.8-src.tgz"
sha256: "95c0663192c6bff7a098b50afcb05d22a34dd0fd8e6be2e1b61edad2b9675fde"
patches:
"0.2.1":
- patch_file: "patches/0.2.0-0001-make-fast_float-external.patch"
patch_description: "use cci's fast_float recipe"
patch_type: "conan"
"0.2.0":
- patch_file: "patches/0.2.0-0001-make-fast_float-external.patch"
patch_description: "use cci's fast_float recipe"
Expand Down
2 changes: 1 addition & 1 deletion recipes/c4core/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def package(self):
cmake.install()
rmdir(self, os.path.join(self.package_folder, "cmake"))
rmdir(self, os.path.join(self.package_folder, "lib", "cmake"))
rm(self, "*.natvis", os.path.join(self.package_folder, "include"))
rm(self, "*.natvis", os.path.join(self.package_folder, "include"), recursive=True)

def package_info(self):
self.cpp_info.libs = ["c4core"]
Expand Down
2 changes: 2 additions & 0 deletions recipes/c4core/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
versions:
"0.2.1":
folder: all
"0.2.0":
folder: all
"0.1.11":
Expand Down

0 comments on commit 7646d1d

Please sign in to comment.