-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
conanfile.py
197 lines (171 loc) · 8.6 KB
/
conanfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
from conan import ConanFile
from conan.errors import ConanInvalidConfiguration
from conan.tools.cmake import CMake, CMakeDeps, CMakeToolchain, cmake_layout
from conan.tools.files import export_conandata_patches, apply_conandata_patches, copy, get, rmdir
from conan.tools.scm import Version
import os
required_conan_version = ">=1.53.0"
class CivetwebConan(ConanFile):
name = "civetweb"
license = "MIT"
homepage = "https://github.com/civetweb/civetweb"
url = "https://github.com/conan-io/conan-center-index"
description = "Embedded C/C++ web server"
topics = ("web-server", "embedded")
package_type = "library"
settings = "os", "arch", "compiler", "build_type"
options = {
"fPIC": [True, False],
"shared": [True, False],
"ssl_dynamic_loading": [True, False],
"thread_stack_size": [None, "ANY"],
"with_caching": [True, False],
"with_cgi": [True, False],
"with_cxx": [True, False],
"with_duktape": [True, False],
"with_ipv6": [True, False],
"with_lua": [True, False],
"with_server_stats": [True, False],
"with_ssl": [True, False],
"with_static_files": [True, False],
"with_third_party_output": [True, False],
"with_websockets": [True, False],
"with_zlib": [True, False],
}
default_options = {
"fPIC": True,
"shared": False,
"ssl_dynamic_loading": False,
"thread_stack_size": None,
"with_caching": True,
"with_cgi": True,
"with_cxx": True,
"with_duktape": False,
"with_ipv6": True,
"with_lua": False,
"with_server_stats": False,
"with_ssl": True,
"with_static_files": True,
"with_third_party_output": False,
"with_websockets": True,
"with_zlib": False,
}
no_copy_source = True
@property
def _has_zlib_option(self):
return Version(self.version) >= "1.15"
def export_sources(self):
export_conandata_patches(self)
def config_options(self):
if self.settings.os == "Windows":
del self.options.fPIC
if not self._has_zlib_option:
del self.options.with_zlib
def configure(self):
if self.options.shared:
self.options.rm_safe("fPIC")
if not self.options.with_cxx:
self.settings.rm_safe("compiler.cppstd")
self.settings.rm_safe("compiler.libcxx")
if not self.options.with_ssl:
del self.options.ssl_dynamic_loading
def layout(self):
cmake_layout(self, src_folder="src")
def requirements(self):
if self.options.with_ssl:
if Version(self.version) < "1.16":
self.requires("openssl/1.1.1w")
else:
self.requires("openssl/[>=1 <4]")
if self.options.get_safe("with_zlib"):
self.requires("zlib/[>=1.2.11 <2]")
def validate(self):
if self.options.get_safe("ssl_dynamic_loading") and not self.dependencies["openssl"].options.shared:
raise ConanInvalidConfiguration("ssl_dynamic_loading requires shared openssl")
if self.options.thread_stack_size and not str(self.options.thread_stack_size).isdigit():
raise ConanInvalidConfiguration("-o='civetweb/*:thread_stack_size' should be a positive integer")
def source(self):
get(self, **self.conan_data["sources"][self.version], strip_root=True)
def generate(self):
tc = CMakeToolchain(self)
if self.options.with_ssl:
openssl_version = Version(self.dependencies["openssl"].ref.version)
tc.variables["CIVETWEB_ENABLE_SSL"] = self.options.with_ssl
tc.variables["CIVETWEB_ENABLE_SSL_DYNAMIC_LOADING"] = self.options.ssl_dynamic_loading
tc.variables["CIVETWEB_SSL_OPENSSL_API_1_0"] = openssl_version.major == "1" and openssl_version.minor == "0"
tc.variables["CIVETWEB_SSL_OPENSSL_API_1_1"] = openssl_version.major == "1" and openssl_version.minor == "1"
if Version(self.version) >= "1.16":
tc.variables["CIVETWEB_SSL_OPENSSL_API_3_0"] = openssl_version.major == "3"
tc.variables["CIVETWEB_BUILD_TESTING"] = False
tc.variables["CIVETWEB_CXX_ENABLE_LTO"] = False
tc.variables["CIVETWEB_ENABLE_ASAN"] = False
tc.variables["CIVETWEB_DISABLE_CACHING"] = not self.options.with_caching
tc.variables["CIVETWEB_DISABLE_CGI"] = not self.options.with_cgi
tc.variables["CIVETWEB_ENABLE_CXX"] = self.options.with_cxx
tc.variables["CIVETWEB_ENABLE_DUKTAPE"] = self.options.with_duktape
tc.variables["CIVETWEB_ENABLE_IPV6"] = self.options.with_ipv6
tc.variables["CIVETWEB_ENABLE_LUA"] = self.options.with_lua
tc.variables["CIVETWEB_ENABLE_SERVER_STATS"] = self.options.with_server_stats
tc.variables["CIVETWEB_ENABLE_THIRD_PARTY_OUTPUT"] = self.options.with_third_party_output
tc.variables["CIVETWEB_ENABLE_WEBSOCKETS"] = self.options.with_websockets
tc.variables["CIVETWEB_SERVE_NO_FILES"] = not self.options.with_static_files
if self.options.thread_stack_size:
tc.variables["CIVETWEB_THREAD_STACK_SIZE"] = self.options.thread_stack_size
if self._has_zlib_option:
tc.variables["CIVETWEB_ENABLE_ZLIB"] = self.options.with_zlib
tc.generate()
cd = CMakeDeps(self)
cd.generate()
def build(self):
apply_conandata_patches(self)
cmake = CMake(self)
cmake.configure()
cmake.build()
def package(self):
copy(self, "LICENSE.md", src=self.source_folder, dst=os.path.join(self.package_folder, "licenses"))
cmake = CMake(self)
cmake.configure()
cmake.install()
rmdir(self, os.path.join(self.package_folder, "lib", "pkgconfig"))
rmdir(self, os.path.join(self.package_folder, "lib", "cmake"))
rmdir(self, os.path.join(self.package_folder, "share"))
bin_folder = os.path.join(self.package_folder, "bin")
for bin_file in os.listdir(bin_folder):
if not bin_file.startswith("civetweb"):
os.remove(os.path.join(bin_folder, bin_file))
def package_info(self):
self.cpp_info.set_property("cmake_file_name", "civetweb")
self.cpp_info.set_property("cmake_target_name", "civetweb::civetweb-cpp" if self.options.with_cxx else "civetweb::civetweb")
self.cpp_info.set_property("pkg_config_name", "civetweb")
self.cpp_info.components["_civetweb"].set_property("cmake_target_name", "civetweb::civetweb")
self.cpp_info.components["_civetweb"].libs = ["civetweb"]
if self.settings.os in ["Linux", "FreeBSD"]:
self.cpp_info.components["_civetweb"].system_libs.extend(["rt", "pthread"])
if self.options.get_safe("ssl_dynamic_loading"):
self.cpp_info.components["_civetweb"].system_libs.append("dl")
elif self.settings.os == "Macos":
self.cpp_info.components["_civetweb"].frameworks.append("Cocoa")
elif self.settings.os == "Windows":
self.cpp_info.components["_civetweb"].system_libs.append("ws2_32")
if self.options.shared:
self.cpp_info.components["_civetweb"].defines.append("CIVETWEB_DLL_IMPORTS")
if self.options.with_ssl:
self.cpp_info.components["_civetweb"].requires.append("openssl::openssl")
if self.options.get_safe("with_zlib"):
self.cpp_info.components["_civetweb"].requires.append("zlib::zlib")
if self.options.with_cxx:
self.cpp_info.components["civetweb-cpp"].set_property("cmake_target_name", "civetweb::civetweb-cpp")
self.cpp_info.components["civetweb-cpp"].libs = ["civetweb-cpp"]
self.cpp_info.components["civetweb-cpp"].requires = ["_civetweb"]
if self.settings.os in ["Linux", "FreeBSD"]:
self.cpp_info.components["civetweb-cpp"].system_libs.append("m")
elif self.settings.os == "Windows":
if self.options.shared:
self.cpp_info.components["civetweb-cpp"].defines.append("CIVETWEB_CXX_DLL_IMPORTS")
# TODO: to remove once conan v1 support dropped
self.cpp_info.components["_civetweb"].names["cmake_find_package"] = "civetweb"
self.cpp_info.components["_civetweb"].names["cmake_find_package_multi"] = "civetweb"
if self.options.with_cxx:
self.cpp_info.components["civetweb-cpp"].names["cmake_find_package"] = "civetweb-cpp"
self.cpp_info.components["civetweb-cpp"].names["cmake_find_package_multi"] = "civetweb-cpp"
self.env_info.PATH.append(os.path.join(self.package_folder, "bin"))