Skip to content

Commit 81ef40b

Browse files
committed
Use rippled repo for wasmi fork
1 parent 5c68372 commit 81ef40b

File tree

3 files changed

+3
-677
lines changed

3 files changed

+3
-677
lines changed

recipes/wasmi/all/conandata.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,5 @@
22

33
sources:
44
"1.0.6":
5-
url: https://github.com/wasmi-labs/wasmi/archive/refs/tags/v1.0.6.tar.gz
6-
sha256: dae2da33bba478deab23947407fe1f28422fd2f6756502d0eb7f065ca3224e91
7-
patches:
8-
"1.0.6":
9-
- patch_file: "patches/0002-xrplf-1.0.6.patch"
10-
patch_description: Integrate wasmi lib into smart-escrow.
11-
patch_type: conan
5+
url: https://github.com/XRPLF/wasmi/archive/refs/tags/v1.0.6.tar.gz
6+
sha256: 05edd402f381bc3a4c6fb683b85dabaf4daf51f2f1e68b9010db5f9644450d64

recipes/wasmi/all/conanfile.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from conan import ConanFile, tools
22
from conan.tools.cmake import CMake, CMakeToolchain, cmake_layout
3-
from conan.tools.files import apply_conandata_patches, export_conandata_patches, get
3+
from conan.tools.files import get
44
import os
55

66
required_conan_version = ">=2.0.0"
@@ -15,15 +15,11 @@ class WasmiConan(ConanFile):
1515
options = {"shared": [False]}
1616
default_options = {"shared": False}
1717

18-
def export_sources(self):
19-
export_conandata_patches(self)
20-
2118
def layout(self):
2219
cmake_layout(self, src_folder="src")
2320

2421
def source(self):
2522
get(self, **self.conan_data["sources"][self.version], strip_root=True)
26-
apply_conandata_patches(self)
2723

2824
def generate(self):
2925
tc = CMakeToolchain(self)

0 commit comments

Comments
 (0)