class BoostPython < Formula desc "C++ library for C++/Python2 interoperability" homepage "https://www.boost.org/" url "https://dl.bintray.com/boostorg/release/1.71.0/source/boost_1_71_0.tar.bz2" sha256 "d73a8da01e8bf8c7eda40b4c84915071a8c8a0df4a6734537ddde4a8580524ee" revision 1 head "https://github.com/boostorg/boost.git" bottle do cellar :any sha256 "b24f1fe5df7656855e939a546c4232849ecb766a5e18a717e46d05a5c2de23a7" => :catalina sha256 "59e9bbab32ea0f35503e2add7d99873c53cc406331b7e488e39d84f1270b8bc2" => :mojave sha256 "c158a1f9bf5fbd14c726f3b6e7440353d2aeab11876e095969e9d429ecc844a2" => :high_sierra end depends_on "boost" def install # "layout" should be synchronized with boost args = %W[ -d2 -j#{ENV.make_jobs} --layout=tagged-1.66 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 pyver = Language::Python.major_minor_version "python" system "./bootstrap.sh", "--prefix=#{prefix}", "--libdir=#{lib}", "--with-libraries=python", "--with-python=python" system "./b2", "--build-dir=build-python", "--stagedir=stage-python", "--libdir=install-python/lib", "--prefix=install-python", "python=#{pyver}", *args lib.install Dir["install-python/lib/*.*"] lib.install Dir["stage-python/lib/*py*"] doc.install Dir["libs/python/doc/*"] end def caveats; <<~EOS This formula provides Boost.Python for Python 2. Due to a collision with boost-python3, the CMake Config files are not available. Please use -DBoost_NO_BOOST_CMAKE=ON when building with CMake or switch to Python 3. EOS 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 pyprefix = `python-config --prefix`.chomp pyincludes = Utils.popen_read("python-config --includes").chomp.split(" ") pylib = Utils.popen_read("python-config --ldflags").chomp.split(" ") system ENV.cxx, "-shared", "hello.cpp", "-L#{lib}", "-lboost_python27", "-o", "hello.so", "-I#{pyprefix}/include/python2.7", *pyincludes, *pylib output = <<~EOS from __future__ import print_function import hello print(hello.greet()) EOS assert_match "Hello, world!", pipe_output("python", output, 0) end end