homebrew-core/Formula/boost-python3.rb
2019-12-28 09:53:31 +01:00

97 lines
3.4 KiB
Ruby

class BoostPython3 < Formula
desc "C++ library for C++/Python3 interoperability"
homepage "https://www.boost.org/"
url "https://dl.bintray.com/boostorg/release/1.72.0/source/boost_1_72_0.tar.bz2"
sha256 "59c9b274bc451cf91a9ba1dd2c7fdcaf5d60b1b3aa83f2c9fa143417cc660722"
head "https://github.com/boostorg/boost.git"
bottle do
cellar :any
sha256 "ce20b29ffbf51137476d5bce459731fd2eb9bd0f5a3a9b1758a6c2cb52b0826d" => :catalina
sha256 "a89c855389dba45e976613c0a818d5a1d9042f5627c27a57d825136538f95543" => :mojave
sha256 "ff1323cf64f2604a274486bc822bf5790f8e8eaac6b2e44e5bdabda3ecb8c661" => :high_sierra
end
depends_on "numpy" => :build
depends_on "boost"
depends_on "python"
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"
if ENV.compiler == :clang
args << "cxxflags=-stdlib=libc++" << "linkflags=-stdlib=libc++"
end
# 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 "python3"
py_prefix = Formula["python3"].opt_frameworks/"Python.framework/Versions/#{pyver}"
# Force boost to compile with the desired compiler
(buildpath/"user-config.jam").write <<~EOS
using darwin : : #{ENV.cxx} ;
using python : #{pyver}
: python3
: #{py_prefix}/include/python#{pyver}m
: #{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 = Utils.popen_read("python3-config --includes").chomp.split(" ")
pylib = Utils.popen_read("python3-config --ldflags").chomp.split(" ")
pyver = Language::Python.major_minor_version("python3").to_s.delete(".")
system ENV.cxx, "-shared", "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("python3", output, 0)
end
end