102 lines
3.6 KiB
Ruby
102 lines
3.6 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.66.0/source/boost_1_66_0.tar.bz2"
|
|
sha256 "5721818253e6a0989583192f96782c4a98eb6204965316df9f5ad75819225ca9"
|
|
revision 1
|
|
head "https://github.com/boostorg/boost.git"
|
|
|
|
bottle do
|
|
sha256 "b5af7b8114b1c86e4a47ab5fb58a50ff4f26e57e43e4b80e334eb26d894580f0" => :high_sierra
|
|
sha256 "f7817593f0ca621a42420b4f8ea7d2b66bb8c017f30772efce59120df71548b6" => :sierra
|
|
sha256 "44e03e78576ab81583d82ec0fd2623053a9c12c5fd45e8cd159b19d38583b77d" => :el_capitan
|
|
end
|
|
|
|
depends_on "boost"
|
|
depends_on "python"
|
|
|
|
needs :cxx11
|
|
|
|
resource "numpy" do
|
|
url "https://files.pythonhosted.org/packages/ee/66/7c2690141c520db08b6a6f852fa768f421b0b50683b7bbcd88ef51f33170/numpy-1.14.0.zip"
|
|
sha256 "3de643935b212307b420248018323a44ec51987a336d1d747c1322afc3c099fb"
|
|
end
|
|
|
|
def install
|
|
# "layout" should be synchronized with boost
|
|
args = ["--prefix=#{prefix}",
|
|
"--libdir=#{lib}",
|
|
"-d2",
|
|
"-j#{ENV.make_jobs}",
|
|
"--layout=tagged",
|
|
"--user-config=user-config.jam",
|
|
"threading=multi,single",
|
|
"link=shared,static"]
|
|
|
|
# Trunk starts using "clang++ -x c" to select C compiler which breaks C++11
|
|
# handling using ENV.cxx11. Using "cxxflags" and "linkflags" still works.
|
|
args << "cxxflags=-std=c++11"
|
|
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}"
|
|
|
|
numpy_site_packages = buildpath/"homebrew-numpy/lib/python#{pyver}/site-packages"
|
|
numpy_site_packages.mkpath
|
|
ENV["PYTHONPATH"] = numpy_site_packages
|
|
resource("numpy").stage do
|
|
system "python3", *Language::Python.setup_install_args(buildpath/"homebrew-numpy")
|
|
end
|
|
|
|
# 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",
|
|
"python=#{pyver}", *args
|
|
|
|
lib.install Dir["stage-python3/lib/*py*"]
|
|
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(" ")
|
|
|
|
system ENV.cxx, "-shared", "hello.cpp", "-L#{lib}", "-lboost_python3", "-o",
|
|
"hello.so", *pyincludes, *pylib
|
|
|
|
output = <<~EOS
|
|
import hello
|
|
print(hello.greet())
|
|
EOS
|
|
assert_match "Hello, world!", pipe_output("python3", output, 0)
|
|
end
|
|
end
|