xmake.lua 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. package("python")
  2. set_homepage("https://www.python.org/")
  3. set_description("The python programming language.")
  4. set_license("PSF")
  5. if is_host("windows") then
  6. if is_arch("x86", "i386") or os.arch() == "x86" then
  7. add_urls("https://github.com/xmake-mirror/python-windows/releases/download/$(version)/python-$(version).win32.zip")
  8. add_versions("2.7.18", "95e21c87c9f38fa8068e014fc3683c3bc2c827f64875e620b9ecd3c75976a79c")
  9. add_versions("3.7.9", "55c8a408a11e598964f5d581589cf7f8c622e3cad048dce331ee5a61e5a6f57f")
  10. add_versions("3.8.10", "f520d2880578df076e3df53bf9e147b81b5328db02d8d873670a651fa076be50")
  11. add_versions("3.9.5", "ce0bfe8ced874d8d74a6cf6a98f13f5afee27cffbaf2d1ee0f09d3a027fab299")
  12. add_versions("3.9.6", "2918246384dfb233bd8f8c2bcf6aa3688e6834e84ab204f7c962147c468f8d12")
  13. add_versions("3.9.10", "e2c8e6b792748289ac27ef8462478022c96e24c99c4c3eb97d3afe510d9db646")
  14. add_versions("3.9.13", "c60ec0da0adf3a31623073d4fa085da62747085a9f23f4348fe43dfe94ea447b")
  15. add_versions("3.10.6", "c1a07f7685b5499f58cfad2bb32b394b853ba12b8062e0f7530f2352b0942096")
  16. add_versions("3.10.11", "7fac6ed9a58623f31610024d2c4d6abb33fac0cf741ec1a5285d056b5933012e")
  17. add_versions("3.11.3", "992648876ecca6cfbe122dc2d9c358c9029d9fdb83ee6edd6e54926bf0360da6")
  18. add_versions("3.11.8", "f5e399d12b00a4f73dc3078b7b4fe900e1de6821aa3e31d1c27c6ef4e33e95d9")
  19. add_versions("3.12.3", "49bbcd200cda1f56452feeaf0954045e85b27a93b929034cc03ab198c4d9662e")
  20. add_versions("3.12.8", "b4ec65bf24417c4098c8d1f30a30fec12680aedd7094de3caf35e5e2d55d9c46")
  21. add_versions("3.12.10", "c23a8efcecadbe19fead675c621af54dc8fa086f1526b568718343f06b6dc1d2")
  22. add_versions("3.13.1", "f89b297ca94ced2fbdad7919518ebf05005f39637f8ec5b01e42f2c71d53a673")
  23. add_versions("3.13.2", "67ccaa5e8fb05e8e15a46f9262368fcfef190b1cfab3e2511acada7d68cf6464")
  24. elseif is_arch("x64", "x86_64") or os.arch() == "x64" then
  25. add_urls("https://github.com/xmake-mirror/python-windows/releases/download/$(version)/python-$(version).win64.zip")
  26. add_versions("2.7.18", "6680835ed5b818e2c041c7033bea47ace17f6f3b73b0d6efb6ded8598a266754")
  27. add_versions("3.7.9", "d0d879c934b463d46161f933db53a676790d72f24e92143f629ee5629ae286bc")
  28. add_versions("3.8.10", "acf35048274404dd415e190bf5b928fae3b03d8bb5dfbfa504f9a183361468bd")
  29. add_versions("3.9.5", "3265059edac21bf4c46fac13553a5d78417e7aa209eceeffd0250aa1dd8d6fdf")
  30. add_versions("3.9.6", "57ccd1b1b5fbc62882bd2a6f47df6e830ba39af741acf0a1d2f161eef4e87f2e")
  31. add_versions("3.9.10", "4cee67e2a529fe363e34f0da57f8e5c3fc036913dc838b17389b2319ead0927e")
  32. add_versions("3.9.13", "6774fdd872fc55b028becc81b7d79bdcb96c5e0eb1483cfcd38224b921c94d7d")
  33. add_versions("3.10.6", "8cbc234939a679687da44c3bbc6d6ce375ea4b84c4fa8dbc1bf5befc43254b58")
  34. add_versions("3.10.11", "96663f508643c1efec639733118d4a8382c5c895b82ad1362caead17b643260e")
  35. add_versions("3.11.3", "708c4e666989b3b00057eaea553a42b23f692c4496337a91d17aced931280dc4")
  36. add_versions("3.11.8", "2be5fdc87a96659b75f2acd9f4c4a7709fcfccb7a81cd0bd11e9c0e08380e55c")
  37. add_versions("3.12.3", "00a80ccce8738de45ebe73c6084b1ea92ad131ec79cbe5c033a925c761cb5fdc")
  38. add_versions("3.12.8", "7f8cf0a21a076d2646b26c5248ae47f1dbc870bc059670915e042f6eb1850ecb")
  39. add_versions("3.12.10", "c6218cb107638583bd51f617cd7400e903e3c0c7fbe3f5b3c3d87efeb4738fbf")
  40. add_versions("3.13.1", "104d1de9eb6ff7c345c3415a57880dc0b2c51695515f2a87097512e6d77e977d")
  41. add_versions("3.13.2", "baee66e4d1b16a220bf61d64a210676f6d6fef69c65959ffd9828264c7fe8ef5")
  42. elseif is_arch("arm64.*", "aarch64") or os.arch() == "arm64" then
  43. add_urls("https://github.com/xmake-mirror/python-windows/releases/download/$(version)/python-$(version).winarm64.zip")
  44. add_versions("3.12.10", "ca559e226e5bb99ccad687817c191ddf4d972ac3f582f26e88c80f94884ff29f")
  45. add_versions("3.13.2", "f121c4a9a1118d297814155c93e75ef376f3d0bbccbd5cf38598d6e833b0e858")
  46. end
  47. set_policy("package.precompiled", false)
  48. else
  49. add_urls("https://www.python.org/ftp/python/$(version)/Python-$(version).tgz")
  50. add_versions("2.7.18", "da3080e3b488f648a3d7a4560ddee895284c3380b11d6de75edb986526b9a814")
  51. add_versions("3.7.9", "39b018bc7d8a165e59aa827d9ae45c45901739b0bbb13721e4f973f3521c166a")
  52. add_versions("3.8.10", "b37ac74d2cbad2590e7cd0dd2b3826c29afe89a734090a87bf8c03c45066cb65")
  53. add_versions("3.9.5", "e0fbd5b6e1ee242524430dee3c91baf4cbbaba4a72dd1674b90fda87b713c7ab")
  54. add_versions("3.9.6", "d0a35182e19e416fc8eae25a3dcd4d02d4997333e4ad1f2eee6010aadc3fe866")
  55. add_versions("3.9.10", "1aa9c0702edbae8f6a2c95f70a49da8420aaa76b7889d3419c186bfc8c0e571e")
  56. add_versions("3.9.13", "829b0d26072a44689a6b0810f5b4a3933ee2a0b8a4bfc99d7c5893ffd4f97c44")
  57. add_versions("3.10.6", "848cb06a5caa85da5c45bd7a9221bb821e33fc2bdcba088c127c58fad44e6343")
  58. add_versions("3.10.11", "f3db31b668efa983508bd67b5712898aa4247899a346f2eb745734699ccd3859")
  59. add_versions("3.11.3", "1a79f3df32265d9e6625f1a0b31c28eb1594df911403d11f3320ee1da1b3e048")
  60. add_versions("3.11.8", "d3019a613b9e8761d260d9ebe3bd4df63976de30464e5c0189566e1ae3f61889")
  61. add_versions("3.11.9", "e7de3240a8bc2b1e1ba5c81bf943f06861ff494b69fda990ce2722a504c6153d")
  62. add_versions("3.12.3", "a6b9459f45a6ebbbc1af44f5762623fa355a0c87208ed417628b379d762dddb0")
  63. add_versions("3.12.8", "5978435c479a376648cb02854df3b892ace9ed7d32b1fead652712bee9d03a45")
  64. add_versions("3.12.10", "15d9c623abfd2165fe816ea1fb385d6ed8cf3c664661ab357f1782e3036a6dac")
  65. add_versions("3.13.0", "12445c7b3db3126c41190bfdc1c8239c39c719404e844babbd015a1bc3fafcd4")
  66. add_versions("3.13.1", "1513925a9f255ef0793dbf2f78bb4533c9f184bdd0ad19763fd7f47a400a7c55")
  67. add_versions("3.13.2", "b8d79530e3b7c96a5cb2d40d431ddb512af4a563e863728d8713039aa50203f9")
  68. end
  69. add_configs("headeronly", {description = "Use header only version.", default = false, type = "boolean"})
  70. if not is_plat(os.host()) or not is_arch(os.arch()) then
  71. set_kind("binary")
  72. end
  73. if is_host("linux", "bsd") then
  74. add_deps("libffi", "zlib", {host = true, private = true})
  75. add_syslinks("util", "pthread", "dl")
  76. end
  77. on_load("@windows", "@msys", "@cygwin", function (package)
  78. -- set includedirs
  79. package:add("includedirs", "include")
  80. -- set python environments
  81. local PYTHONPATH = package:installdir("Lib", "site-packages")
  82. package:addenv("PYTHONPATH", PYTHONPATH)
  83. package:addenv("PATH", "bin")
  84. package:addenv("PATH", "Scripts")
  85. end)
  86. on_load("@macosx", "@linux", "@bsd", function (package)
  87. local version = package:version()
  88. -- set openssl dep
  89. if version:ge("3.10") then
  90. -- starting with Python 3.10, Python requires OpenSSL 1.1.1 or newer
  91. -- see https://peps.python.org/pep-0644/
  92. package:add("deps", "openssl >=1.1.1-a", "ca-certificates", {host = true, private = package:config("headeronly")})
  93. else
  94. package:add("deps", "openssl", "ca-certificates", {host = true, private = package:config("headeronly")})
  95. end
  96. -- set includedirs
  97. local pyver = ("python%d.%d"):format(version:major(), version:minor())
  98. if version:ge("3.0") and version:le("3.8") then
  99. package:add("includedirs", path.join("include", pyver .. "m"))
  100. else
  101. package:add("includedirs", path.join("include", pyver))
  102. end
  103. -- set python environments
  104. local PYTHONPATH = package:installdir("lib", pyver, "site-packages")
  105. package:addenv("PYTHONPATH", PYTHONPATH)
  106. package:addenv("PATH", "bin")
  107. package:addenv("PATH", "Scripts")
  108. if package:config("headeronly") then
  109. package:set("links", "")
  110. end
  111. end)
  112. on_fetch("fetch")
  113. on_install("@windows|x86", "@windows|x64", "@windows|arm64*", "@msys", "@cygwin", function (package)
  114. if package:version():ge("3.0") then
  115. os.cp("python.exe", path.join(package:installdir("bin"), "python3.exe"))
  116. else
  117. os.cp("python.exe", path.join(package:installdir("bin"), "python2.exe"))
  118. end
  119. os.cp("*.exe", package:installdir("bin"))
  120. os.cp("*.dll", package:installdir("bin"))
  121. os.cp("Lib", package:installdir())
  122. os.cp("libs/*", package:installdir("lib"))
  123. os.cp("*", package:installdir())
  124. local python = path.join(package:installdir("bin"), "python.exe")
  125. os.vrunv(python, {"-m", "pip", "install", "--upgrade", "--force-reinstall", "pip"})
  126. os.vrunv(python, {"-m", "pip", "install", "--upgrade", "setuptools"})
  127. os.vrunv(python, {"-m", "pip", "install", "wheel"})
  128. end)
  129. on_install("@macosx", "@bsd", "@linux", function (package)
  130. local version = package:version()
  131. -- init configs
  132. local configs = {"--enable-ipv6", "--with-ensurepip", "--enable-optimizations"}
  133. table.insert(configs, "--libdir=" .. package:installdir("lib"))
  134. table.insert(configs, "--with-platlibdir=lib")
  135. table.insert(configs, "--datadir=" .. package:installdir("share"))
  136. table.insert(configs, "--datarootdir=" .. package:installdir("share"))
  137. table.insert(configs, "--enable-shared=" .. (package:config("shared") and "yes" or "no"))
  138. -- add openssl libs path
  139. local openssl = package:dep("openssl"):fetch()
  140. if openssl then
  141. local openssl_dir
  142. for _, linkdir in ipairs(openssl.linkdirs) do
  143. if path.filename(linkdir) == "lib" then
  144. openssl_dir = path.directory(linkdir)
  145. else
  146. -- try to find if linkdir is root (brew has linkdir as root and includedirs inside)
  147. for _, includedir in ipairs(openssl.sysincludedirs or openssl.includedirs) do
  148. if includedir:startswith(linkdir) then
  149. openssl_dir = linkdir
  150. break
  151. end
  152. end
  153. end
  154. if openssl_dir then
  155. if version:ge("3.0") then
  156. table.insert(configs, "--with-openssl=" .. openssl_dir)
  157. else
  158. io.gsub("setup.py", "/usr/local/ssl", openssl_dir)
  159. end
  160. break
  161. end
  162. end
  163. end
  164. -- allow python modules to use ctypes.find_library to find xmake's stuff
  165. if package:is_plat("macosx") then
  166. io.gsub("Lib/ctypes/macholib/dyld.py", "DEFAULT_LIBRARY_FALLBACK = %[", format("DEFAULT_LIBRARY_FALLBACK = [ '%s/lib',", package:installdir()))
  167. end
  168. -- add flags for macOS
  169. local cppflags = {}
  170. local ldflags = {}
  171. if package:is_plat("macosx") then
  172. -- get xcode information
  173. import("core.tool.toolchain")
  174. local xcode_dir
  175. local xcode_sdkver
  176. local target_minver
  177. local xcode = toolchain.load("xcode", {plat = package:plat(), arch = package:arch()})
  178. if xcode and xcode.config and xcode:check() then
  179. xcode_dir = xcode:config("xcode")
  180. xcode_sdkver = xcode:config("xcode_sdkver")
  181. target_minver = xcode:config("target_minver")
  182. end
  183. xcode_dir = xcode_dir or get_config("xcode")
  184. xcode_sdkver = xcode_sdkver or get_config("xcode_sdkver")
  185. target_minver = target_minver or get_config("target_minver")
  186. if xcode_dir and xcode_sdkver then
  187. -- help Python's build system (setuptools/pip) to build things on SDK-based systems
  188. -- the setup.py looks at "-isysroot" to get the sysroot (and not at --sysroot)
  189. local xcode_sdkdir = xcode_dir .. "/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX" .. xcode_sdkver .. ".sdk"
  190. table.insert(cppflags, "-isysroot " .. xcode_sdkdir)
  191. table.insert(cppflags, "-I" .. path.join(xcode_sdkdir, "/usr/include"))
  192. table.insert(ldflags, "-isysroot " .. xcode_sdkdir)
  193. -- for the Xlib.h, Python needs this header dir with the system Tk
  194. -- yep, this needs the absolute path where zlib needed a path relative to the SDK.
  195. table.insert(cppflags, "-I" .. path.join(xcode_sdkdir, "/System/Library/Frameworks/Tk.framework/Versions/8.5/Headers"))
  196. end
  197. -- avoid linking to libgcc https://mail.python.org/pipermail/python-dev/2012-February/116205.html
  198. if target_minver then
  199. table.insert(configs, "MACOSX_DEPLOYMENT_TARGET=" .. target_minver)
  200. end
  201. end
  202. -- add pic
  203. if package:is_plat("linux", "bsd") and package:config("pic") ~= false then
  204. table.insert(cppflags, "-fPIC")
  205. end
  206. -- add external path for zlib and libffi
  207. for _, libname in ipairs({"zlib", "libffi"}) do
  208. local lib = package:dep(libname)
  209. if lib and not lib:is_system() then
  210. local fetchinfo = lib:fetch({external = false})
  211. if fetchinfo then
  212. for _, includedir in ipairs(fetchinfo.includedirs or fetchinfo.sysincludedirs) do
  213. table.insert(cppflags, "-I" .. includedir)
  214. end
  215. for _, linkdir in ipairs(fetchinfo.linkdirs) do
  216. table.insert(ldflags, "-L" .. linkdir)
  217. end
  218. end
  219. end
  220. end
  221. if #cppflags > 0 then
  222. table.insert(configs, "CPPFLAGS=" .. table.concat(cppflags, " "))
  223. end
  224. if #ldflags > 0 then
  225. table.insert(configs, "LDFLAGS=" .. table.concat(ldflags, " "))
  226. end
  227. local pyver = ("python%d.%d"):format(version:major(), version:minor())
  228. -- https://github.com/python/cpython/issues/109796
  229. if version:ge("3.12.0") then
  230. os.mkdir(package:installdir("lib", pyver))
  231. end
  232. -- fix ssl module detect, e.g. gcc conftest.c -ldl -lcrypto >&5
  233. if package:is_plat("linux") then
  234. io.replace("./configure", "-lssl -lcrypto", "-lssl -lcrypto -ldl", {plain = true})
  235. end
  236. -- unset these so that installing pip and setuptools puts them where we want
  237. -- and not into some other Python the user has installed.
  238. import("package.tools.autoconf").configure(package, configs, {envs = {PYTHONHOME = "", PYTHONPATH = ""}})
  239. os.vrunv("make", {"-j4", "PYTHONAPPSDIR=" .. package:installdir()})
  240. os.vrunv("make", {"install", "-j4", "PYTHONAPPSDIR=" .. package:installdir()})
  241. if version:ge("3.0") then
  242. os.cp(path.join(package:installdir("bin"), "python3"), path.join(package:installdir("bin"), "python"))
  243. os.cp(path.join(package:installdir("bin"), "python3-config"), path.join(package:installdir("bin"), "python-config"))
  244. end
  245. -- install wheel
  246. local python = path.join(package:installdir("bin"), "python")
  247. local envs = {
  248. PATH = package:installdir("bin"),
  249. PYTHONPATH = package:installdir("lib", pyver, "site-packages"),
  250. LD_LIBRARY_PATH = package:installdir("lib")
  251. }
  252. os.vrunv(python, {"-m", "pip", "install", "--upgrade", "--force-reinstall", "pip"}, {envs = envs})
  253. os.vrunv(python, {"-m", "pip", "install", "--upgrade", "setuptools"}, {envs = envs})
  254. os.vrunv(python, {"-m", "pip", "install", "wheel"}, {envs = envs})
  255. end)
  256. on_test(function (package)
  257. os.vrun("python --version")
  258. os.vrun("python -c \"import pip\"")
  259. os.vrun("python -c \"import setuptools\"")
  260. os.vrun("python -c \"import wheel\"")
  261. if package:kind() ~= "binary" and not package:config("headeronly") then
  262. assert(package:has_cfuncs("PyModule_New", {includes = "Python.h"}))
  263. end
  264. end)