class BoostPython < Formula desc "C++ library for C++/Python 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" head "https://github.com/boostorg/boost.git" bottle do cellar :any sha256 "cc913dbdf2fcd107d089dae8bdc428ba3fc13f8a035038602263233564ac928b" => :high_sierra sha256 "78f5e363d73448e6d9c79618511c90af13515714ac283a24449eeb90a4fdef8c" => :sierra sha256 "fbeeda33c58cebac4ddf0114494cd59c40bb6217b758cc8433527a470ab68a9d" => :el_capitan end option "without-python", "Build without python 2 support" depends_on :python3 => :optional depends_on "boost" needs :cxx11 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" Language::Python.each_python(build) do |python, version| py_prefix = `#{python} -c "from __future__ import print_function; import sys; print(sys.prefix)"`.strip py_include = `#{python} -c "from __future__ import print_function; import distutils.sysconfig; print(distutils.sysconfig.get_python_inc(True))"`.strip open("user-config.jam", "w") do |file| # Force boost to compile with the desired compiler file.write "using darwin : : #{ENV.cxx} ;\n" file.write <<~EOS using python : #{version} : #{python} : #{py_include} : #{py_prefix}/lib ; EOS end system "./bootstrap.sh", "--prefix=#{prefix}", "--libdir=#{lib}", "--with-libraries=python", "--with-python=#{python}", "--with-python-root=#{py_prefix}" system "./b2", "--build-dir=build-#{python}", "--stagedir=stage-#{python}", "python=#{version}", *args end lib.install Dir["stage-python3/lib/*py*"] if build.with?("python3") lib.install Dir["stage-python/lib/*py*"] if build.with?("python") doc.install Dir["libs/python/doc/*"] end test do (testpath/"hello.cpp").write <<~EOS #include char const* greet() { return "Hello, world!"; } BOOST_PYTHON_MODULE(hello) { boost::python::def("greet", greet); } EOS Language::Python.each_python(build) do |python, _| pyflags = (`#{python}-config --includes`.strip + " " + `#{python}-config --ldflags`.strip).split(" ") system ENV.cxx, "-shared", "hello.cpp", "-L#{lib}", "-lboost_#{python}", "-o", "hello.so", *pyflags output = `#{python} -c "from __future__ import print_function; import hello; print(hello.greet())"` assert_match "Hello, world!", output end end end