Skip to content

Commit

Permalink
(#15510) c-client: conan v2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceIm authored Feb 1, 2023
1 parent c90f7c4 commit a0f18e5
Show file tree
Hide file tree
Showing 6 changed files with 117 additions and 88 deletions.
7 changes: 1 addition & 6 deletions recipes/c-client/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
sources:
"2007f":
url: "https://github.com/uw-imap/imap/archive/cab109466534e206a3652ef1c68fe88101b68bda.zip"
sha256: "aaca88c228b7bab9f73b5972e996fd39f770d8e226561b3e107ec19ceaf21570"
url: https://github.com/uw-imap/imap/archive/cab109466534e206a3652ef1c68fe88101b68bda.zip
patches:
"2007f":
- patch_file: patches/0001-fix-yunchan-tempfile.patch
base_path: ""
- patch_file: patches/0002-fix-makefile-w2k.patch
base_path: ""
- patch_file: patches/0003-fix-env-nt.patch
base_path: ""
- patch_file: patches/0004-fix-makefile.patch
base_path: ""
- patch_file: patches/2014_openssl1.1.1_sni.patch
base_path: ""
148 changes: 76 additions & 72 deletions recipes/c-client/all/conanfile.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
from conan import ConanFile
from conan.errors import ConanInvalidConfiguration
from conan.tools.files import apply_conandata_patches, chdir, copy, export_conandata_patches, get, mkdir, replace_in_file
from conan.tools.gnu import Autotools, AutotoolsDeps, AutotoolsToolchain
from conan.tools.layout import basic_layout
from conan.tools.microsoft import is_msvc, NMakeToolchain
import glob
import os
import shutil
import stat

from conans import AutoToolsBuildEnvironment, ConanFile, tools
from conans.errors import ConanInvalidConfiguration

required_conan_version = ">=1.43.0"
required_conan_version = ">=1.55.0"


class CclientConan(ConanFile):
Expand All @@ -21,20 +26,29 @@ class CclientConan(ConanFile):
default_options = {
"fPIC": True,
}
exports_sources = "patches/*"

@property
def _settings_build(self):
return getattr(self, "settings_build", self.settings)
def export_sources(self):
export_conandata_patches(self)

def config_options(self):
if self.settings.os == "Windows":
del self.options.fPIC

def configure(self):
self.settings.rm_safe("compiler.cppstd")
self.settings.rm_safe("compiler.libcxx")

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

@property
def _is_msvc(self):
return self._settings_build.compiler in ("Visual Studio", "msvc")
def requirements(self):
if not is_msvc(self):
self.requires("openssl/1.1.1s")

def validate(self):
if self._settings_build.os == "Windows" and not self._is_msvc:
if self.settings.os == "Windows" and not is_msvc(self):
raise ConanInvalidConfiguration(
"c-client is setup to build only with MSVC on Windows"
"c-client is setup to build only with MSVC for Windows"
)
# FIXME: need krb5 recipe
if self.settings.os == "Macos":
Expand All @@ -43,40 +57,28 @@ def validate(self):
"Conan yet"
)

def config_options(self):
if self.settings.os == "Windows":
del self.options.fPIC

def configure(self):
del self.settings.compiler.libcxx
del self.settings.compiler.cppstd

def requirements(self):
if not self._is_msvc:
self.requires("openssl/1.1.1q")

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

def _patch_msvc(self):
opt_flags = "/O2 /Ob2 /DNDEBUG"
if self.settings.build_type == "Debug":
opt_flags = "/Zi /Ob0 /Od /RTC1"
runtime = f"/{self.settings.compiler.runtime}"
# NOTE: boatloads of warnings for truncation, sign mismatch,
# implicit conversions, just the usual C things
warnings = \
"/W3 /wd4267 /wd4244 /wd4273 /wd4311 /wd4312 /wd4133 /wd4028"
cflags = f"{runtime} {warnings} /GS {opt_flags}"
search = "EXTRACFLAGS ="
replace = f"EXTRACFLAGS = {cflags}"
tools.replace_in_file(r"src\osdep\nt\makefile.w2k", search, replace)
get(self, **self.conan_data["sources"][self.version], strip_root=True)

def generate(self):
if is_msvc(self):
tc = NMakeToolchain(self)
tc.generate()
else:
tc = AutotoolsToolchain(self)
tc.generate()
deps = AutotoolsDeps(self)
deps.generate()

def _build_msvc(self):
make = "nmake /nologo /f makefile.w2k"
with tools.vcvars(self):
self.run(f"{make} c-client", run_environment=True)
self.run(make, cwd="c-client", run_environment=True)
# Avoid many warnings
makefile_w2k = os.path.join(self.source_folder, "src", "osdep", "nt", "makefile.w2k")
warnings = "/W3 /wd4267 /wd4244 /wd4273 /wd4311 /wd4312 /wd4133 /wd4028"
replace_in_file(self, makefile_w2k, "EXTRACFLAGS =", f"EXTRACFLAGS = {warnings}")

nmake = "nmake /f makefile.w2k"
self.run(f"{nmake} c-client", cwd=self.source_folder)
self.run(nmake, cwd=os.path.join(self.source_folder, "c-client"))

def _chmod_x(self, path):
os.chmod(path, os.stat(path).st_mode | stat.S_IEXEC)
Expand All @@ -85,50 +87,52 @@ def _touch(self, path):
with open(path, "a", encoding=None): pass

def _build_unix(self):
self._touch("ip6")
self._chmod_x("tools/an")
self._chmod_x("tools/ua")
unix = "src/osdep/unix"
self._chmod_x(f"{unix}/drivers")
self._chmod_x(f"{unix}/mkauths")
search = "SSLDIR=/usr/local/ssl"
ssldir = self.deps_cpp_info["openssl"].rootpath
tools.replace_in_file(f"{unix}/Makefile", search, f"SSLDIR={ssldir}")
self._touch(os.path.join(self.source_folder, "ip6"))
self._chmod_x(os.path.join(self.source_folder, "tools", "an"))
self._chmod_x(os.path.join(self.source_folder, "tools", "ua"))
unix = os.path.join(self.source_folder, "src", "osdep", "unix")
self._chmod_x(os.path.join(unix, "drivers"))
self._chmod_x(os.path.join(unix, "mkauths"))
ssldir = self.dependencies["openssl"].package_folder
replace_in_file(self, os.path.join(unix, "Makefile"), "SSLDIR=/usr/local/ssl", f"SSLDIR={ssldir}")
# This is from the Homebrew Formula
tools.replace_in_file(
"src/osdep/unix/ssl_unix.c",
replace_in_file(
self, os.path.join(unix, "ssl_unix.c"),
"#include <x509v3.h>\n#include <ssl.h>",
"#include <ssl.h>\n#include <x509v3.h>"
)
target = "osx" if self.settings.os == "Macos" else "slx"
# NOTE: only one job is used, because there are issues with dependency
# tracking in parallel builds
args = ["IP=6", "-j1"]
AutoToolsBuildEnvironment(self).make(target=target, args=args)
autotools = Autotools(self)
with chdir(self, self.source_folder):
autotools.make(target=target, args=args)

def build(self):
for patch in self.conan_data["patches"][self.version]:
tools.patch(**patch)
if self._is_msvc:
self._patch_msvc()
apply_conandata_patches(self)
if is_msvc(self):
self._build_msvc()
else:
self._build_unix()

def package(self):
self.copy("LICENSE.txt", "licenses")
self.copy("c-client/*.h", "include")
if self._is_msvc:
self.copy("*.lib", "lib", "c-client")
else:
self.copy("*.a", "lib", "c-client")
copy(self, "LICENSE.txt", src=self.source_folder, dst=os.path.join(self.package_folder, "licenses"))
# Install headers (headers in build tree are symlinks)
include_folder = os.path.join(self.package_folder, "include", "c-client")
mkdir(self, include_folder)
for header_path in glob.glob(os.path.join(self.source_folder, "c-client", "*.h")):
# conan.tools.files.copy can't be used because it copies symlinks instead of real files
shutil.copy(src=header_path, dst=os.path.join(include_folder, os.path.basename(header_path)))
# Install libs
for lib in ("*.a", "*.lib"):
copy(self, lib, src=os.path.join(self.source_folder, "c-client"), dst=os.path.join(self.package_folder, "lib"))

def package_info(self):
if self._is_msvc:
self.cpp_info.system_libs = \
["Winmm", "Ws2_32", "Secur32", "Crypt32"]
else:
self.cpp_info.libs = ["cclient" if is_msvc(self) else "c-client"]
if self.settings.os != "Windows":
self.cpp_info.defines = ["_DEFAULT_SOURCE"]
if self.settings.os == "Windows":
self.cpp_info.system_libs = ["winmm", "ws2_32", "secur32", "crypt32"]
elif self.settings.os in ["Linux", "FreeBSD"]:
self.cpp_info.system_libs = ["crypt"]
self.cpp_info.requires = ["openssl::crypto", "openssl::ssl"]
self.cpp_info.libs = ["cclient" if self._is_msvc else "c-client"]
5 changes: 1 addition & 4 deletions recipes/c-client/all/test_package/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
cmake_minimum_required(VERSION 3.1)
project(test_package C)

include("${CMAKE_BINARY_DIR}/conanbuildinfo.cmake")
conan_basic_setup(TARGETS KEEP_RPATHS)
project(test_package LANGUAGES C)

find_package(c-client REQUIRED CONFIG)

Expand Down
20 changes: 14 additions & 6 deletions recipes/c-client/all/test_package/conanfile.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
from conan import ConanFile
from conan.tools.build import can_run
from conan.tools.cmake import CMake, cmake_layout
import os

from conans import ConanFile, CMake, tools


class TestPackageConan(ConanFile):
settings = "os", "arch", "compiler", "build_type"
generators = "cmake", "cmake_find_package_multi"
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 not tools.cross_building(self):
bin_path = os.path.join("bin", "test_package")
self.run(bin_path, run_environment=True)
if can_run(self):
bin_path = os.path.join(self.cpp.build.bindirs[0], "test_package")
self.run(bin_path, env="conanrun")
8 changes: 8 additions & 0 deletions recipes/c-client/all/test_v1_package/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.1)
project(test_package)

include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup(TARGETS)

add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../test_package
${CMAKE_CURRENT_BINARY_DIR}/test_package)
17 changes: 17 additions & 0 deletions recipes/c-client/all/test_v1_package/conanfile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from conans import ConanFile, CMake, tools
import os


class TestPackageConan(ConanFile):
settings = "os", "arch", "compiler", "build_type"
generators = "cmake", "cmake_find_package_multi"

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

def test(self):
if not tools.cross_building(self):
bin_path = os.path.join("bin", "test_package")
self.run(bin_path, run_environment=True)

0 comments on commit a0f18e5

Please sign in to comment.