class Coin3d < Formula desc "Open Inventor 2.1 API implementation (Coin) with Python bindings (Pivy)" homepage "https://coin3d.github.io/" license all_of: ["BSD-3-Clause", "ISC"] revision 4 stable do url "https://github.com/coin3d/coin/archive/Coin-4.0.0.tar.gz" sha256 "b00d2a8e9d962397cf9bf0d9baa81bcecfbd16eef675a98c792f5cf49eb6e805" resource "pivy" do url "https://github.com/coin3d/pivy/archive/0.6.6.tar.gz" sha256 "27204574d894cc12aba5df5251770f731f326a3e7de4499e06b5f5809cc5659e" # Support Python 3.10. # Remove with the next version. patch do url "https://github.com/coin3d/pivy/commit/2f049c19200ab4a3a1e4740268450496c12359f9.patch?full_index=1" sha256 "4fcbe10b28aff1e20c2fd42ca393df7cc1bde59839f37f62d2b938831157d27b" end patch do url "https://github.com/coin3d/pivy/commit/4b919a3f6b9f477d0e95a2fd2b6a149a55eb9792.patch?full_index=1" sha256 "41107612702d9eec17d225d52f4b8b26a84d95492e418b265dc4c40284d595a3" end # Fix segmentation fault on Apple Silicon patch :DATA end end livecheck do url :stable regex(/^Coin[._-]v?(\d+(?:\.\d+)+)$/i) end bottle do sha256 cellar: :any, arm64_ventura: "921271da7b44aba66b0ed13c986b849f167c87315206a5dc62dd662bb63afcd4" sha256 cellar: :any, arm64_monterey: "428735b5724d44c297805e06e664568b298fc47f169e268398706dc18af362c3" sha256 cellar: :any, arm64_big_sur: "e0ffcfdf4603321f5331caf3f870586f819cb6a8a7c86bf88f621b5b3740ec6b" sha256 cellar: :any, ventura: "575bbf4d248a7e1cd282ea6e4cb34a668515a26cff0cf653a1700a9bc91fe7f1" sha256 cellar: :any, monterey: "22b2ebe3fea27b2c2636bc5e963834a5a4e29b2afb5d2a043f997e7fa5d89454" sha256 cellar: :any, big_sur: "e823c1170d7caceff04fee98a5947a1333e1d67dc75cecf412811a8c01255275" sha256 cellar: :any, catalina: "7cf7ce170be433841406d71f0feba6f0e69ace689986aaa0ce59453ba5294a26" end head do url "https://github.com/coin3d/coin.git", branch: "master" resource "pivy" do url "https://github.com/coin3d/pivy.git", branch: "master" end end depends_on "cmake" => :build depends_on "doxygen" => :build depends_on "ninja" => :build depends_on "swig" => :build depends_on "boost" depends_on "pyside@2" depends_on "python@3.10" on_linux do depends_on "mesa" depends_on "mesa-glu" end def python3 "python3.10" end def install # Create an empty directory for cpack to make the build system # happy. This is a workaround for a build issue on upstream that # was fixed by commit be8e3d57aeb5b4df6abb52c5fa88666d48e7d7a0 but # hasn't made it to a release yet. mkdir "cpack.d" do touch "CMakeLists.txt" end mkdir "cmakebuild" do args = std_cmake_args + %w[ -GNinja -DCOIN_BUILD_MAC_FRAMEWORK=OFF -DCOIN_BUILD_DOCUMENTATION=ON -DCOIN_BUILD_TESTS=OFF ] system "cmake", "..", *args system "ninja", "install" end resource("pivy").stage do ENV.append_path "CMAKE_PREFIX_PATH", prefix.to_s ENV["LDFLAGS"] = "-Wl,-rpath,#{opt_lib}" system python3, *Language::Python.setup_install_args(prefix, python3) end end test do (testpath/"test.cpp").write <<~EOS #include int main() { SoDB::init(); SoDB::cleanup(); return 0; } EOS opengl_flags = if OS.mac? ["-Wl,-framework,OpenGL"] else ["-L#{Formula["mesa"].opt_lib}", "-lGL"] end system ENV.cc, "test.cpp", "-L#{lib}", "-lCoin", *opengl_flags, "-o", "test" system "./test" ENV.append_path "PYTHONPATH", Formula["pyside@2"].opt_prefix/Language::Python.site_packages(python3) # Set QT_QPA_PLATFORM to minimal to avoid error: # "This application failed to start because no Qt platform plugin could be initialized." ENV["QT_QPA_PLATFORM"] = "minimal" if OS.linux? && ENV["HOMEBREW_GITHUB_ACTIONS"] system python3, "-c", <<~EOS import shiboken2 from pivy.sogui import SoGui assert SoGui.init("test") is not None EOS end end __END__ diff --git a/interfaces/pivy_common_typemaps.i b/interfaces/pivy_common_typemaps.i index 27e26a6..73162c0 100644 --- a/interfaces/pivy_common_typemaps.i +++ b/interfaces/pivy_common_typemaps.i @@ -76,7 +76,7 @@ SWIGEXPORT PyObject * cast(PyObject * self, PyObject * args) { char * type_name; - int type_len; + Py_ssize_t type_len; PyObject * obj = 0; if (!PyArg_ParseTuple(args, "Os#:cast", &obj, &type_name, &type_len)) {