Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/export.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
conan export secp256k1/all --version=0.7.0
conan export snappy/all --version=1.1.10
conan export soci/all --version=4.0.3
conan export wasmi/all --version=0.42.1
conan export wasmi/all --version=1.0.6
conan export wasm-xrplf/all --version=2.4.1-xrplf
- name: Add Conan remote
run: |
Expand Down
11 changes: 3 additions & 8 deletions recipes/wasmi/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
# Do not update. Maintained by programmability team.

sources:
"0.42.1":
url: https://github.com/wasmi-labs/wasmi/archive/refs/tags/v0.42.1.tar.gz
sha256: 2a5697be33c7afce8f671af4a5a3621d9e93ce55d253d31bd8201458e465fbb8
patches:
"0.42.1":
- patch_file: "patches/0001-xrplf-0.42.1.patch"
patch_description: Integrate wasmi lib into smart-escrow.
patch_type: conan
"1.0.6":
url: https://github.com/XRPLF/wasmi/archive/refs/tags/v1.0.6.tar.gz
sha256: 05edd402f381bc3a4c6fb683b85dabaf4daf51f2f1e68b9010db5f9644450d64
6 changes: 1 addition & 5 deletions recipes/wasmi/all/conanfile.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from conan import ConanFile, tools
from conan.tools.cmake import CMake, CMakeToolchain, cmake_layout
from conan.tools.files import apply_conandata_patches, export_conandata_patches, get
from conan.tools.files import get
import os

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

def export_sources(self):
export_conandata_patches(self)

def layout(self):
cmake_layout(self, src_folder="src")

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

def generate(self):
tc = CMakeToolchain(self)
Expand Down
287 changes: 0 additions & 287 deletions recipes/wasmi/all/patches/0001-xrplf-0.42.1.patch

This file was deleted.

2 changes: 1 addition & 1 deletion recipes/wasmi/config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
versions:
"0.42.1":
"1.0.6":
folder: all
Loading