Skip to content

Commit

Permalink
keystone: add new recipe (#25968)
Browse files Browse the repository at this point in the history
Co-authored-by: Uilian Ries <uilianries@gmail.com>
Co-authored-by: Abril Rincón Blanco <git@rinconblanco.es>
  • Loading branch information
3 people authored Nov 20, 2024
1 parent a0ea51d commit 6264e9e
Show file tree
Hide file tree
Showing 6 changed files with 143 additions and 0 deletions.
4 changes: 4 additions & 0 deletions recipes/keystone/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sources:
"0.9.2":
url: "https://github.com/keystone-engine/keystone/archive/refs/tags/0.9.2.tar.gz"
sha256: "c9b3a343ed3e05ee168d29daf89820aff9effb2c74c6803c2d9e21d55b5b7c24"
93 changes: 93 additions & 0 deletions recipes/keystone/all/conanfile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
from conan import ConanFile
from conan.tools.cmake import CMake, CMakeToolchain, cmake_layout
from conan.tools.files import copy, get, rmdir
from conan.tools.microsoft import is_msvc, is_msvc_static_runtime
from conan.tools.build import check_max_cppstd
import os

required_conan_version = ">=2.0"


class KeystoneConan(ConanFile):
name = "keystone"
description = (
"Keystone assembler framework: Core (Arm, Arm64, Hexagon, "
"Mips, PowerPC, Sparc, SystemZ & X86) + bindings."
)
license = ( "GPL-2.0-only", "DocumentRef-EXCEPTIONS-CLIENT:LicenseRef-FOSS-License-Exception" )
url = "https://github.com/conan-io/conan-center-index"
homepage = "https://www.keystone-engine.org"
topics = (
"security",
"arm",
"framework",
"mips",
"x86-64",
"reverse-engineering",
"assembler",
"x86",
"hexagon",
"arm64",
"sparc",
"powerpc",
"systemz"
)
package_type = "library"
settings = "os", "arch", "compiler", "build_type"
options = {
"shared": [True, False],
"fPIC": [True, False],
}
default_options = {
"shared": False,
"fPIC": True,
}
implements = ["auto_shared_fpic"]

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

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

def validate(self):
# INFO: include/llvm/ADT/STLExtras.h:54:34: error: no template named 'binary_function' in namespace 'std'
# The std::binary_function was removed in C++17
check_max_cppstd(self, 14)

def generate(self):
tc = CMakeToolchain(self)
tc.cache_variables["BUILD_LIBS_ONLY"] = True
tc.cache_variables["KEYSTONE_BUILD_STATIC_RUNTIME"] = is_msvc_static_runtime(self)
tc.generate()

def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()

def package(self):
copy(
self,
"COPYING",
src=self.source_folder,
dst=os.path.join(self.package_folder, "licenses"),
)
copy(
self,
"EXCEPTIONS-CLIENT",
src=self.source_folder,
dst=os.path.join(self.package_folder, "licenses"),
)
copy(self, "LICENSE*", src=self.source_folder, dst=os.path.join(self.package_folder, "licenses"))
cmake = CMake(self)
cmake.install()
rmdir(self, os.path.join(self.package_folder, "lib", "cmake"))
rmdir(self, os.path.join(self.package_folder, "lib", "pkgconfig"))

def package_info(self):
self.cpp_info.libs = ["keystone"]
if is_msvc(self) and self.options.shared:
self.cpp_info.bindirs = ["lib"]
if self.settings.os == "Windows":
self.cpp_info.system_libs = ["shell32", "ole32", "uuid"]
7 changes: 7 additions & 0 deletions recipes/keystone/all/test_package/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
cmake_minimum_required(VERSION 3.15)
project(test_package LANGUAGES CXX)

find_package(keystone REQUIRED CONFIG)

add_executable(${PROJECT_NAME} test_package.cpp)
target_link_libraries(${PROJECT_NAME} PRIVATE keystone::keystone)
26 changes: 26 additions & 0 deletions recipes/keystone/all/test_package/conanfile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
from conan import ConanFile
from conan.tools.build import can_run
from conan.tools.cmake import CMake, cmake_layout
import os


class TestPackageConan(ConanFile):
settings = "os", "arch", "compiler", "build_type"
generators = "CMakeToolchain", "CMakeDeps", "VirtualRunEnv"
test_type = "explicit"

def layout(self):
cmake_layout(self)

def requirements(self):
self.requires(self.tested_reference_str)

def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()

def test(self):
if can_run(self):
bin_path = os.path.join(self.cpp.build.bindirs[0], "test_package")
self.run(bin_path, env="conanrun")
10 changes: 10 additions & 0 deletions recipes/keystone/all/test_package/test_package.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include <iostream>
#include <keystone/keystone.h>

int main()
{
unsigned int major = 0, minor = 0;
ks_version(&major, &minor);
std::cout << "Keystone version: " << major << "." << minor << std::endl;
return EXIT_SUCCESS;
}
3 changes: 3 additions & 0 deletions recipes/keystone/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
versions:
"0.9.2":
folder: "all"

0 comments on commit 6264e9e

Please sign in to comment.