109 lines
4.2 KiB
Ruby
109 lines
4.2 KiB
Ruby
class BoostPython3 < Formula
|
|
desc "C++ library for C++/Python3 interoperability"
|
|
homepage "https://www.boost.org/"
|
|
url "https://boostorg.jfrog.io/artifactory/main/release/1.79.0/source/boost_1_79_0.tar.bz2"
|
|
sha256 "475d589d51a7f8b3ba2ba4eda022b170e562ca3b760ee922c146b6c65856ef39"
|
|
license "BSL-1.0"
|
|
head "https://github.com/boostorg/boost.git", branch: "master"
|
|
|
|
livecheck do
|
|
formula "boost"
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_monterey: "bcf770f6af642791ddcff1e54f98f6b7a1798c67fd971b9a7694f0b85d0bfe89"
|
|
sha256 cellar: :any, arm64_big_sur: "6f8635758ab47e2252ac89601c1864ca2d47012fb2c277794a94652eef89c368"
|
|
sha256 cellar: :any, monterey: "a0bacd0dc355d1e90861e4a8147cbc454e17661dc9cbac65c334482ccc591d0d"
|
|
sha256 cellar: :any, big_sur: "35b6c92200f3d6b8a42d4a6858491874d11944f16d9157c42984e40071655142"
|
|
sha256 cellar: :any, catalina: "defd9f4eb167bd391e0b0e0db244c5b2508e53aacf79a41cc2be9c551283a9e6"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "f4b30c16b06647063465b0944769b2277cc2b969acfefe151d4bf97bb7f5ef1a"
|
|
end
|
|
|
|
depends_on "numpy" => :build
|
|
depends_on "boost"
|
|
depends_on "python@3.9"
|
|
|
|
def install
|
|
# "layout" should be synchronized with boost
|
|
args = %W[
|
|
-d2
|
|
-j#{ENV.make_jobs}
|
|
--layout=tagged-1.66
|
|
--user-config=user-config.jam
|
|
install
|
|
threading=multi,single
|
|
link=shared,static
|
|
]
|
|
|
|
# Boost is using "clang++ -x c" to select C compiler which breaks C++14
|
|
# handling using ENV.cxx14. Using "cxxflags" and "linkflags" still works.
|
|
args << "cxxflags=-std=c++14"
|
|
args << "cxxflags=-stdlib=libc++" << "linkflags=-stdlib=libc++" if ENV.compiler == :clang
|
|
|
|
# disable python detection in bootstrap.sh; it guesses the wrong include
|
|
# directory for Python 3 headers, so we configure python manually in
|
|
# user-config.jam below.
|
|
inreplace "bootstrap.sh", "using python", "#using python"
|
|
|
|
pyver = Language::Python.major_minor_version Formula["python@3.9"].opt_bin/"python3"
|
|
py_prefix = Formula["python@3.9"].opt_frameworks/"Python.framework/Versions/#{pyver}"
|
|
py_prefix = Formula["python@3.9"].opt_prefix if OS.linux?
|
|
|
|
# Force boost to compile with the desired compiler
|
|
compiler_text = if OS.mac?
|
|
"using darwin : : #{ENV.cxx} ;"
|
|
else
|
|
"using gcc : : #{ENV.cxx} ;"
|
|
end
|
|
(buildpath/"user-config.jam").write <<~EOS
|
|
#{compiler_text}
|
|
using python : #{pyver}
|
|
: python3
|
|
: #{py_prefix}/include/python#{pyver}
|
|
: #{py_prefix}/lib ;
|
|
EOS
|
|
|
|
system "./bootstrap.sh", "--prefix=#{prefix}", "--libdir=#{lib}",
|
|
"--with-libraries=python", "--with-python=python3",
|
|
"--with-python-root=#{py_prefix}"
|
|
|
|
system "./b2", "--build-dir=build-python3",
|
|
"--stagedir=stage-python3",
|
|
"--libdir=install-python3/lib",
|
|
"--prefix=install-python3",
|
|
"python=#{pyver}",
|
|
*args
|
|
|
|
lib.install Dir["install-python3/lib/*.*"]
|
|
(lib/"cmake").install Dir["install-python3/lib/cmake/boost_python*"]
|
|
(lib/"cmake").install Dir["install-python3/lib/cmake/boost_numpy*"]
|
|
doc.install Dir["libs/python/doc/*"]
|
|
end
|
|
|
|
test do
|
|
(testpath/"hello.cpp").write <<~EOS
|
|
#include <boost/python.hpp>
|
|
char const* greet() {
|
|
return "Hello, world!";
|
|
}
|
|
BOOST_PYTHON_MODULE(hello)
|
|
{
|
|
boost::python::def("greet", greet);
|
|
}
|
|
EOS
|
|
|
|
pyincludes = shell_output("#{Formula["python@3.9"].opt_bin}/python3-config --includes").chomp.split
|
|
pylib = shell_output("#{Formula["python@3.9"].opt_bin}/python3-config --ldflags --embed").chomp.split
|
|
pyver = Language::Python.major_minor_version(Formula["python@3.9"].opt_bin/"python3").to_s.delete(".")
|
|
|
|
system ENV.cxx, "-shared", "-fPIC", "hello.cpp", "-L#{lib}", "-lboost_python#{pyver}", "-o",
|
|
"hello.so", *pyincludes, *pylib
|
|
|
|
output = <<~EOS
|
|
import hello
|
|
print(hello.greet())
|
|
EOS
|
|
assert_match "Hello, world!", pipe_output(Formula["python@3.9"].opt_bin/"python3", output, 0)
|
|
end
|
|
end
|