# # spec file for package FreeCAD # # Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via https://bugs.opensuse.org/ # %define x_prefix %{_libdir}/%{name} %if 0%{?suse_version} > 1500 %bcond_without boost_signals2 %else %bcond_with boost_signals2 %endif %bcond_with smesh_external %bcond_without smesh Name: FreeCAD Version: 0.20.2 Release: 0 Summary: General Purpose 3D CAD Modeler License: GPL-2.0-or-later AND LGPL-2.0-or-later Group: Productivity/Graphics/CAD URL: https://www.freecadweb.org/ Source0: https://github.com/FreeCAD/FreeCAD/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz # PATCH-FIX-UPSTREAM Patch0: 0001-Gui-Quarter-Add-missing-OpenGL-includes.patch # PATCH-FIX-OPENSUSE Patch1: 0001-Avoid-catching-SIGSEGV-defer-to-system-services.patch # PATCH-FIX-UPSTREAM Patch2: 0001-Fix-build-with-NG-6.2.2201-include-BRepMesh_Incremen.patch # PATCH-FIX-UPSTREAM Patch3: 0001-Part-OCCError.h-remove-unneeded-includes.patch # PATCH-FIX-UPSTREAM Patch4: 0001-Drawing-add-missing-include.patch # PATCH-FIX-UPSTREAM Patch5: 0001-FEM-add-missing-include.patch # PATCH-FIX-UPSTREAM Patch6: 0001-Revert-unused-parameter-warning-change.patch # PATCH-FIX-UPSTREAM Patch7: 0001-FEM-femmesh-fix-AttributeError-module-numpy-has-no-a.patch # PATCH-FIX-OPENSUSE submitted upstream here: https://github.com/FreeCAD/FreeCAD/pull/9077 Patch8: 0001-Fix-build-with-gcc13.patch # Test suite fails on 32bit and I don't want to debug that anymore ExcludeArch: %ix86 %arm ppc s390 s390x BuildRequires: libboost_filesystem-devel >= 1.55 BuildRequires: libboost_graph-devel >= 1.55 BuildRequires: libboost_program_options-devel >= 1.55 BuildRequires: libboost_regex-devel >= 1.55 %if %{without boost_signals2} BuildRequires: libboost_signals-devel >= 1.55 %endif BuildRequires: libboost_serialization-devel >= 1.55 BuildRequires: libboost_system-devel >= 1.55 BuildRequires: libboost_thread-devel >= 1.55 BuildRequires: cmake BuildRequires: double-conversion-devel BuildRequires: eigen3-devel BuildRequires: fdupes BuildRequires: glew-devel BuildRequires: hdf5-devel BuildRequires: hicolor-icon-theme %if %{with smesh_external} # We use the internal smesh version with fixes atm BuildRequires: smesh-devel %endif BuildRequires: libXerces-c-devel BuildRequires: libXi-devel BuildRequires: libmed-devel BuildRequires: libspnav-devel BuildRequires: make BuildRequires: netgen-devel BuildRequires: occt-devel BuildRequires: pkg-config BuildRequires: proj-devel BuildRequires: sqlite3-devel # Qt5 & python3 BuildRequires: python3-devel >= 3.6.9 BuildRequires: python3-matplotlib BuildRequires: python3-pivy BuildRequires: python3-ply BuildRequires: python3-pybind11-devel BuildRequires: python3-pycxx-devel BuildRequires: python3-pyside2-devel BuildRequires: python3-vtk BuildRequires: python3-xml BuildRequires: cmake(coin) BuildRequires: pkgconfig(Qt5Concurrent) BuildRequires: pkgconfig(Qt5OpenGL) BuildRequires: pkgconfig(Qt5PrintSupport) BuildRequires: pkgconfig(Qt5ScriptTools) BuildRequires: pkgconfig(Qt5Svg) BuildRequires: pkgconfig(Qt5UiTools) BuildRequires: pkgconfig(Qt5WebEngineWidgets) BuildRequires: pkgconfig(Qt5X11Extras) BuildRequires: pkgconfig(Qt5XmlPatterns) Requires: python3-numpy Requires: python3-pyside2 Requires: python3-vtk # For Arch & Draft workbench Requires: python3-pivy # For FEM workbench Requires: python3-PyYAML Requires: python3-matplotlib-qt5 Requires: python3-ply Requires: python3-six BuildRequires: swig BuildRequires: update-desktop-files BuildRequires: vtk-devel BuildRequires: zlib-devel Recommends: ccx Provides: freecad %description FreeCAD is a parametric 3D modeler made primarily to design real-life objects of any size. Parametric modeling allows modifying designs by going back into the model history and changing its parameters. FreeCAD is customizable and scriptable. %package devel Summary: Development Files for %{name} Group: Development/Libraries/C and C++ Requires: %{name} = %{version} %description devel This package contains the files needed for development with FreeCAD. %prep %setup -q %autopatch -p1 # fix env-script-interpreter sed -i '1c#!%{__python3}' \ src/Mod/AddonManager/AddonManager.py \ src/Mod/Mesh/App/MeshTestsApp.py \ src/Mod/Robot/KukaExporter.py \ src/Mod/Robot/MovieTool.py \ src/Mod/Spreadsheet/importXLSX.py \ src/Mod/TechDraw/TDTest/D*Test.py \ src/Mod/Test/testmakeWireString.py # Fix "wrong-script-end-of-line-encoding" rpmlint warning sed -i 's/\r$//' src/Mod/Mesh/App/MeshTestsApp.py sed -i 's/\r$//' src/Mod/Part/MakeBottle.py sed -i 's/\r$//' src/Mod/PartDesign/Scripts/FilletArc.py sed -i 's/\r$//' src/Mod/PartDesign/Scripts/Parallelepiped.py sed -i 's/\r$//' src/Mod/PartDesign/Scripts/Spring.py sed -i 's/\r$//' src/Mod/Robot/MovieTool.py sed -i 's/\r$//' src/Mod/Robot/KukaExporter.py sed -i 's/\r$//' src/Mod/Test/unittestgui.py # Remove 3rd party libs rm src/3rdparty/Pivy -fr rm src/3rdparty/Pivy-0.5 -fr # Resources are looked up relative to the binaries location, # so all these need the same prefix, see src/App/Application.cpp %build %cmake \ -DCMAKE_INSTALL_PREFIX=%{x_prefix} \ -DCMAKE_INSTALL_LIBDIR=%{x_prefix}/lib \ -DCMAKE_INSTALL_BINDIR=%{x_prefix}/bin \ -DCMAKE_INSTALL_DATAROOTDIR=%{_datadir} \ -DCMAKE_INSTALL_DATADIR=%{_datadir}/%{name} \ -DCMAKE_INSTALL_DOCDIR=%{_docdir}/%{name} \ -DCMAKE_INSTALL_INCLUDEDIR=%{_includedir}/%{name} \ -DCMAKE_SKIP_RPATH:BOOL=OFF \ -DCMAKE_SKIP_INSTALL_RPATH:BOOL=OFF \ -DCMAKE_INSTALL_RPATH_USE_LINK_PATH=ON \ -DOCC_INCLUDE_DIR=%{_includedir}/opencascade \ -DRESOURCEDIR=%{_datadir}/%{name} \ -DPYTHON_EXECUTABLE=/usr/bin/python3 \ -DPYTHON_INCLUDE_DIR=%{python3_sysconfig_path include} \ -DSHIBOKEN_INCLUDE_DIR=/usr/include/shiboken2/ \ -DPYSIDE_INCLUDE_DIR=/usr/include/PySide2/ \ -DPYBIND11_FINDPYTHON:BOOL=ON \ -DFREECAD_USE_PYBIND11:BOOL=ON \ -DBUILD_ENABLE_CXX_STD:STRING="C++17" \ -DBUILD_QT5=ON \ -DFREECAD_USE_QT_DIALOG:BOOL=OFF \ -DFREECAD_USE_EXTERNAL_PIVY:BOOL=TRUE \ -DBUILD_OPENSCAD:BOOL=ON \ -DBUILD_FLAT_MESH:BOOL=ON \ -DFREECAD_USE_EXTERNAL_SMESH=%{?with_smesh_external:ON}%{!?with_smesh_external:OFF} \ -DBUILD_SMESH:BOOL=ON \ -DBUILD_MESH_PART:BOOL=ON \ -DBUILD_FEM:BOOL=%{?with_smesh:ON}%{!?with_smesh:OFF} \ -DBUILD_FEM_NETGEN:BOOL=ON \ -DBUILD_FEM_VTK:BOOL=ON \ -Wno-dev \ .. %cmake_build %install %cmake_install # Fix "non-executable-script" rpmlint warning # Run after install, as CMake "install(FILES...) sets rw- permissions chmod 755 %{buildroot}%{_libdir}/FreeCAD/Mod/AddonManager/AddonManager.py \ %{buildroot}%{_libdir}/FreeCAD/Mod/Robot/KukaExporter.py \ %{buildroot}%{_libdir}/FreeCAD/Mod/Robot/MovieTool.py \ %{buildroot}%{_libdir}/FreeCAD/Mod/Spreadsheet/importXLSX.py \ %{buildroot}%{_libdir}/FreeCAD/Mod/TechDraw/TDTest/D*Test.py \ %{buildroot}%{_libdir}/FreeCAD/Mod/Test/testmakeWireString.py %suse_update_desktop_file -r org.freecadweb.FreeCAD Education Engineering # Remove unneeded files find %{buildroot} -type f -name "*.la" -delete -print rm -Rf %{buildroot}%{_datadir}/pixmaps # Broken rm -Rf %{buildroot}%{_datadir}/thumbnailers # Link binaries mkdir -p %{buildroot}/usr/bin ln -s -t %{buildroot}/usr/bin %{x_prefix}/bin/FreeCAD ln -s -t %{buildroot}/usr/bin %{x_prefix}/bin/FreeCADCmd %fdupes %{buildroot}/%{_libdir} %fdupes %{buildroot}/%{_datadir} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %license LICENSE %doc README.md %{_bindir}/FreeCAD{,Cmd} %doc %{_docdir}/%{name}/ %{_libdir}/%{name} %{_datadir}/%{name}/ %{_datadir}/applications/*.desktop %{_datadir}/icons/hicolor/*/*/*.{png,svg} %{_datadir}/metainfo/*.xml %{_datadir}/mime/packages/*.xml %changelog