Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/freecad/, media-gfx/freecad/files/
Date: Thu, 03 Feb 2022 02:19:38
Message-Id: 1643854694.a57d11c8caaa82831507a2074d19ec87cb62dbcb.sam@gentoo
1 commit: a57d11c8caaa82831507a2074d19ec87cb62dbcb
2 Author: Bernd Waibel <waebbl-gentoo <AT> posteo <DOT> net>
3 AuthorDate: Mon Jan 31 05:32:36 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 3 02:18:14 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a57d11c8
7
8 media-gfx/freecad: backport vulnerability patches
9
10 Bug: https://bugs.gentoo.org/832209
11 Package-Manager: Portage-3.0.30, Repoman-3.0.3
12 Signed-off-by: Bernd Waibel <waebbl-gentoo <AT> posteo.net>
13 Closes: https://github.com/gentoo/gentoo/pull/24043
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 ...-0004809-Security-vulnerability-in-DWG-im.patch | 59 ++++
17 ...-Use-run-instead-of-Popen-to-avoid-need-f.patch | 25 ++
18 media-gfx/freecad/freecad-0.19.2-r6.ebuild | 326 +++++++++++++++++++++
19 3 files changed, 410 insertions(+)
20
21 diff --git a/media-gfx/freecad/files/freecad-0.19.2-0001-Backport-of-0004809-Security-vulnerability-in-DWG-im.patch b/media-gfx/freecad/files/freecad-0.19.2-0001-Backport-of-0004809-Security-vulnerability-in-DWG-im.patch
22 new file mode 100644
23 index 000000000000..2df44ff66ac8
24 --- /dev/null
25 +++ b/media-gfx/freecad/files/freecad-0.19.2-0001-Backport-of-0004809-Security-vulnerability-in-DWG-im.patch
26 @@ -0,0 +1,59 @@
27 +From 4006e62860c73f0943e71c7da478256a7337941d Mon Sep 17 00:00:00 2001
28 +From: Bernd Waibel <waebbl-gentoo@××××××.net>
29 +Date: Mon, 31 Jan 2022 08:12:35 +0100
30 +Subject: [PATCH 1/2] Backport of 0004809: Security vulnerability in DWG import
31 + when using ODA file converter
32 +
33 +Original patch commit id 1742d7ff82af1653253c4a4183c262c9af3b26d6 by
34 +wmayer <wmayer@×××××××××××××××××.net>.
35 +
36 +Signed-off-by: Bernd Waibel <waebbl-gentoo@××××××.net>
37 +--- a/src/Mod/Draft/importDWG.py
38 ++++ b/src/Mod/Draft/importDWG.py
39 +@@ -44,8 +44,6 @@ https://knowledge.autodesk.com/support/autocad/downloads/
40 + # * *
41 + # ***************************************************************************
42 +
43 +-# TODO: use subprocess.popen() instead of subprocess.call()
44 +-
45 + import six
46 + import FreeCAD
47 + from FreeCAD import Console as FCC
48 +@@ -217,15 +215,10 @@ def convertToDxf(dwgfilename):
49 + indir = os.path.dirname(dwgfilename)
50 + outdir = tempfile.mkdtemp()
51 + basename = os.path.basename(dwgfilename)
52 +- cmdline = ('"%s" "%s" "%s" "ACAD2000" "DXF" "0" "1" "%s"'
53 +- % (teigha, indir, outdir, basename))
54 +- FCC.PrintMessage(translate("ImportDWG", "Converting: ")
55 +- + cmdline + "\n")
56 +- if six.PY2:
57 +- if isinstance(cmdline, six.text_type):
58 +- encoding = sys.getfilesystemencoding()
59 +- cmdline = cmdline.encode(encoding)
60 +- subprocess.call(cmdline, shell=True) # os.system(cmdline)
61 ++ cmdline = [teigha, indir, outdir, "ACAD2000", "DXF", "0", "1", basename]
62 ++ FCC.PrintMessage(translate("draft", "Converting:") + " " + str(cmdline) + "\n")
63 ++ proc = subprocess.Popen(cmdline)
64 ++ proc.communicate()
65 + result = outdir + os.sep + os.path.splitext(basename)[0] + ".dxf"
66 + if os.path.exists(result):
67 + FCC.PrintMessage(translate("ImportDWG",
68 +@@ -270,10 +263,9 @@ def convertToDwg(dxffilename, dwgfilename):
69 + indir = os.path.dirname(dxffilename)
70 + outdir = os.path.dirname(dwgfilename)
71 + basename = os.path.basename(dxffilename)
72 +- cmdline = ('"%s" "%s" "%s" "ACAD2000" "DWG" "0" "1" "%s"'
73 +- % (teigha, indir, outdir, basename))
74 +- FCC.PrintMessage(translate("ImportDWG", "Converting: ")
75 +- + cmdline + "\n")
76 +- subprocess.call(cmdline, shell=True) # os.system(cmdline)
77 ++ cmdline = [teigha, indir, outdir, "ACAD2000", "DWG", "0", "1", basename]
78 ++ FCC.PrintMessage(translate("draft", "Converting:") + " " + str(cmdline) + "\n")
79 ++ proc = subprocess.Popen(cmdline)
80 ++ proc.communicate()
81 + return dwgfilename
82 + return None
83 +--
84 +2.35.0
85 +
86
87 diff --git a/media-gfx/freecad/files/freecad-0.19.2-0002-Backport-of-Use-run-instead-of-Popen-to-avoid-need-f.patch b/media-gfx/freecad/files/freecad-0.19.2-0002-Backport-of-Use-run-instead-of-Popen-to-avoid-need-f.patch
88 new file mode 100644
89 index 000000000000..9b043bd34563
90 --- /dev/null
91 +++ b/media-gfx/freecad/files/freecad-0.19.2-0002-Backport-of-Use-run-instead-of-Popen-to-avoid-need-f.patch
92 @@ -0,0 +1,25 @@
93 +From 937d8ca9bf4c50f8a7dc0fbcf9e6ac23b0fbe033 Mon Sep 17 00:00:00 2001
94 +From: Bernd Waibel <waebbl-gentoo@××××××.net>
95 +Date: Mon, 31 Jan 2022 08:17:24 +0100
96 +Subject: [PATCH 2/2] Backport of Use run() instead of Popen() to avoid need
97 + for communicate
98 +
99 +Original patch commit id a65dbc6f8296562a12407a36f4931a80bbb628b7 by
100 +sliptonic <shopinthewoods@×××××.com>
101 +
102 +Signed-off-by: Bernd Waibel <waebbl-gentoo@××××××.net>
103 +--- a/src/Mod/Path/PathScripts/PathSanity.py
104 ++++ b/src/Mod/Path/PathScripts/PathSanity.py
105 +@@ -412,8 +412,7 @@ class CommandPathSanity:
106 + FreeCAD.Console.PrintMessage('asciidoc file written to {}\n'.format(reportraw))
107 +
108 + try:
109 +- result = os.system('asciidoctor {} -o {}'.format(reportraw,
110 +- reporthtml))
111 ++ result = subprocess.run(["asciidoctor", reportraw, "-o", reporthtml])
112 + if str(result) == "32512":
113 + msg = "asciidoctor not found. html cannot be generated."
114 + QtGui.QMessageBox.information(None, "Path Sanity", msg)
115 +--
116 +2.35.0
117 +
118
119 diff --git a/media-gfx/freecad/freecad-0.19.2-r6.ebuild b/media-gfx/freecad/freecad-0.19.2-r6.ebuild
120 new file mode 100644
121 index 000000000000..931a6260baa1
122 --- /dev/null
123 +++ b/media-gfx/freecad/freecad-0.19.2-r6.ebuild
124 @@ -0,0 +1,326 @@
125 +# Copyright 1999-2022 Gentoo Authors
126 +# Distributed under the terms of the GNU General Public License v2
127 +
128 +EAPI=8
129 +
130 +PYTHON_COMPAT=( python3_{8,9} )
131 +
132 +inherit check-reqs cmake optfeature python-single-r1 xdg
133 +
134 +DESCRIPTION="QT based Computer Aided Design application"
135 +HOMEPAGE="https://www.freecadweb.org/ https://github.com/FreeCAD/FreeCAD"
136 +
137 +MY_PN=FreeCAD
138 +
139 +if [[ ${PV} = *9999 ]]; then
140 + inherit git-r3
141 + EGIT_REPO_URI="https://github.com/${MY_PN}/${MY_PN}.git"
142 + S="${WORKDIR}/freecad-${PV}"
143 +else
144 + MY_PV=$(ver_cut 1-2)
145 + MY_PV=$(ver_rs 1 '_' ${MY_PV})
146 + SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
147 + https://raw.githubusercontent.com/waebbl/waebbl-gentoo/master/patches/${P}-0005-Make-smesh-compile-with-vtk9.patch.xz"
148 + KEYWORDS="~amd64"
149 + S="${WORKDIR}/FreeCAD-${PV}"
150 +fi
151 +
152 +# code is licensed LGPL-2
153 +# examples are licensed CC-BY-SA (without note of specific version)
154 +LICENSE="LGPL-2 CC-BY-SA-4.0"
155 +SLOT="0"
156 +IUSE="debug headless pcl test"
157 +RESTRICT="!test? ( test )"
158 +
159 +FREECAD_EXPERIMENTAL_MODULES="cloud plot ship"
160 +FREECAD_STABLE_MODULES="addonmgr fem idf image inspection material
161 + openscad part-design path points raytracing robot show surface
162 + techdraw tux"
163 +
164 +for module in ${FREECAD_STABLE_MODULES}; do
165 + IUSE="${IUSE} +${module}"
166 +done
167 +for module in ${FREECAD_EXPERIMENTAL_MODULES}; do
168 + IUSE="${IUSE} ${module}"
169 +done
170 +unset module
171 +
172 +RDEPEND="
173 + ${PYTHON_DEPS}
174 + dev-libs/OpenNI2[opengl(+)]
175 + dev-libs/libspnav[X]
176 + dev-libs/xerces-c[icu]
177 + dev-qt/designer:5
178 + dev-qt/qtconcurrent:5
179 + dev-qt/qtcore:5
180 + dev-qt/qtgui:5
181 + dev-qt/qtnetwork:5
182 + dev-qt/qtopengl:5
183 + dev-qt/qtprintsupport:5
184 + dev-qt/qtsvg:5
185 + dev-qt/qtwebengine:5[widgets]
186 + dev-qt/qtwidgets:5
187 + dev-qt/qtx11extras:5
188 + dev-qt/qtxml:5
189 + >=media-libs/coin-4.0.0
190 + media-libs/freetype
191 + media-libs/qhull:=
192 + sci-libs/flann[openmp]
193 + sci-libs/hdf5:=[fortran,zlib]
194 + >=sci-libs/med-4.0.0-r1[python,${PYTHON_SINGLE_USEDEP}]
195 + <sci-libs/opencascade-7.6.0:=[vtk(+)]
196 + sci-libs/orocos_kdl:=
197 + sys-libs/zlib
198 + virtual/glu
199 + virtual/libusb:1
200 + virtual/opengl
201 + cloud? (
202 + dev-libs/openssl:=
203 + net-misc/curl
204 + )
205 + fem? ( sci-libs/vtk:=[boost(+),python,qt5,rendering,${PYTHON_SINGLE_USEDEP}] )
206 + openscad? ( media-gfx/openscad )
207 + pcl? ( >=sci-libs/pcl-1.8.1:=[opengl,openni2(+),qt5(+),vtk(+)] )
208 + $(python_gen_cond_dep '
209 + dev-libs/boost:=[python,threads(+),${PYTHON_USEDEP}]
210 + dev-python/matplotlib[${PYTHON_USEDEP}]
211 + dev-python/numpy[${PYTHON_USEDEP}]
212 + >=dev-python/pivy-0.6.5[${PYTHON_USEDEP}]
213 + dev-python/pybind11[${PYTHON_USEDEP}]
214 + dev-python/pyside2[gui,svg,${PYTHON_USEDEP}]
215 + dev-python/shiboken2[${PYTHON_USEDEP}]
216 + addonmgr? ( dev-python/GitPython[${PYTHON_USEDEP}] )
217 + fem? ( dev-python/ply[${PYTHON_USEDEP}] )
218 + ')
219 +"
220 +DEPEND="
221 + ${RDEPEND}
222 + >=dev-cpp/eigen-3.3.1:3
223 +"
224 +BDEPEND="dev-lang/swig"
225 +
226 +# To get required dependencies:
227 +# 'grep REQUIRES_MODS cMake/FreeCAD_Helpers/CheckInterModuleDependencies.cmake'
228 +# We set the following requirements by default:
229 +# arch, draft, drawing, import, mesh, part, qt5, sketcher, spreadsheet, start, web.
230 +#
231 +# Additionally, we auto-enable mesh_part, flat_mesh and smesh
232 +# Fem actually needs smesh, but as long as we don't have a smesh package, we enable
233 +# smesh through the mesh USE flag. Note however, the fem<-smesh dependency isn't
234 +# reflected by the REQUIRES_MODS macro, but at
235 +# cMake/FreeCAD_Helpers/InitializeFreeCADBuildOptions.cmake:187.
236 +#
237 +# The increase in auto-enabled workbenches is due to their need in parts of the
238 +# test suite when compiled with a minimal set of USE flags.
239 +REQUIRED_USE="
240 + ${PYTHON_REQUIRED_USE}
241 + inspection? ( points )
242 + path? ( robot )
243 + ship? ( image plot )
244 +"
245 +
246 +PATCHES=(
247 + "${FILESDIR}"/${PN}-0.19_pre20201231-0003-Gentoo-specific-don-t-check-vcs.patch
248 + "${FILESDIR}"/${PN}-0.19.1-0001-Gentoo-specific-Remove-ccache-usage.patch
249 + "${FILESDIR}"/${P}-0001-fix-failing-test-workbench-testcase.patch
250 + "${FILESDIR}"/${P}-0002-fix-femtest-failure-with-yaml-load.patch
251 + "${FILESDIR}"/${P}-0003-fix-test-when-built-without-GUI.patch
252 + "${WORKDIR}"/${P}-0005-Make-smesh-compile-with-vtk9.patch
253 + "${FILESDIR}"/${P}-0006-add-boost-serialization-to-find_package.patch
254 + "${FILESDIR}"/${P}-0007-fix-build-failure-with-opencascade-7.5.2.patch
255 + "${FILESDIR}"/${P}-0001-Backport-of-0004809-Security-vulnerability-in-DWG-im.patch
256 + "${FILESDIR}"/${P}-0002-Backport-of-Use-run-instead-of-Popen-to-avoid-need-f.patch
257 +)
258 +
259 +DOCS=( CODE_OF_CONDUCT.md ChangeLog.txt README.md )
260 +
261 +CHECKREQS_DISK_BUILD="2G"
262 +
263 +pkg_setup() {
264 + check-reqs_pkg_setup
265 + python-single-r1_pkg_setup
266 + [[ -z ${CASROOT} ]] && die "\${CASROOT} not set, plesae run eselect opencascade"
267 +}
268 +
269 +src_prepare() {
270 + # the upstream provided file doesn't find the coin doc tag file,
271 + # but cmake ships a working one, so we use this.
272 + rm "${S}/cMake/FindCoin3D.cmake" || die
273 +
274 + # Fix desktop file
275 + sed -e 's/Exec=FreeCAD/Exec=freecad/' -i src/XDGData/org.freecadweb.FreeCAD.desktop || die
276 +
277 + cmake_src_prepare
278 +}
279 +
280 +src_configure() {
281 + local mycmakeargs=(
282 + -DBUILD_ADDONMGR=$(usex addonmgr)
283 + -DBUILD_ARCH=ON
284 + -DBUILD_ASSEMBLY=OFF # deprecated
285 + -DBUILD_CLOUD=$(usex cloud)
286 + -DBUILD_COMPLETE=OFF # deprecated
287 + -DBUILD_DRAFT=ON
288 + -DBUILD_DRAWING=ON
289 + -DBUILD_ENABLE_CXX_STD:STRING="C++17" # needed for >=boost-1.77.0
290 + -DBUILD_FEM=$(usex fem)
291 + -DBUILD_FEM_NETGEN=OFF
292 + -DBUILD_FLAT_MESH=ON
293 + -DBUILD_FORCE_DIRECTORY=ON # force building in a dedicated directory
294 + -DBUILD_FREETYPE=ON # automagic dep
295 + -DBUILD_GUI=$(usex !headless)
296 + -DBUILD_IDF=$(usex idf)
297 + -DBUILD_IMAGE=$(usex image)
298 + -DBUILD_IMPORT=ON # import module for various file formats
299 + -DBUILD_INSPECTION=$(usex inspection)
300 + -DBUILD_JTREADER=OFF # code has been removed upstream, but option is still there
301 + -DBUILD_MATERIAL=$(usex material)
302 + -DBUILD_MESH=ON
303 + -DBUILD_MESH_PART=ON
304 + -DBUILD_OPENSCAD=$(usex openscad)
305 + -DBUILD_PART=ON
306 + -DBUILD_PART_DESIGN=$(usex part-design)
307 + -DBUILD_PATH=$(usex path)
308 + -DBUILD_PLOT=$(usex plot) # conflicts with possible external workbench
309 + -DBUILD_POINTS=$(usex points)
310 + -DBUILD_QT5=ON # OFF means to use Qt4
311 + -DBUILD_RAYTRACING=$(usex raytracing)
312 + -DBUILD_REVERSEENGINEERING=OFF # currently only an empty sandbox
313 + -DBUILD_ROBOT=$(usex robot)
314 + -DBUILD_SHIP=$(usex ship) # conflicts with possible external workbench
315 + -DBUILD_SHOW=$(usex show)
316 + -DBUILD_SKETCHER=ON # needed by draft workspace
317 + -DBUILD_SMESH=ON
318 + -DBUILD_SPREADSHEET=ON
319 + -DBUILD_START=ON
320 + -DBUILD_SURFACE=$(usex surface)
321 + -DBUILD_TECHDRAW=$(usex techdraw)
322 + -DBUILD_TEST=ON # always build test workbench for run-time testing
323 + -DBUILD_TUX=$(usex tux)
324 + -DBUILD_VR=OFF
325 + -DBUILD_WEB=ON # needed by start workspace
326 + -DBUILD_WITH_CONDA=OFF
327 +
328 + -DCMAKE_INSTALL_DATADIR=/usr/share/${PN}/data
329 + -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
330 + -DCMAKE_INSTALL_INCLUDEDIR=/usr/include/${PN}
331 + -DCMAKE_INSTALL_PREFIX=/usr/$(get_libdir)/${PN}
332 +
333 + -DFREECAD_BUILD_DEBIAN=OFF
334 +
335 + -DFREECAD_USE_EXTERNAL_KDL=ON
336 + -DFREECAD_USE_EXTERNAL_SMESH=OFF # no package in Gentoo
337 + -DFREECAD_USE_EXTERNAL_ZIPIOS=OFF # doesn't work yet, also no package in Gentoo tree
338 + -DFREECAD_USE_FREETYPE=ON
339 + -DFREECAD_USE_OCC_VARIANT:STRING="Official Version"
340 + -DFREECAD_USE_PCL=$(usex pcl)
341 + -DFREECAD_USE_PYBIND11=ON
342 + -DFREECAD_USE_QT_FILEDIALOG=ON
343 + -DFREECAD_USE_QTWEBMODULE:STRING="Qt WebEngine"
344 +
345 + # install python modules to site-packages' dir. True only for the main package,
346 + # sub-packages will still be installed inside /usr/lib64/freecad
347 + -DINSTALL_TO_SITEPACKAGES=ON
348 +
349 + # Use the version of shiboken2 that matches the selected python version
350 + -DPYTHON_CONFIG_SUFFIX="-${EPYTHON}"
351 + -DPython3_EXECUTABLE=${PYTHON}
352 + )
353 +
354 + if use debug; then
355 + mycmakeargs+=(
356 + -DBUILD_SANDBOX=ON
357 + -DBUILD_TEMPLATE=ON
358 + )
359 + else
360 + mycmakeargs+=(
361 + -DBUILD_SANDBOX=OFF
362 + -DBUILD_TEMPLATE=OFF
363 + )
364 + fi
365 +
366 + cmake_src_configure
367 +}
368 +
369 +# We use the FreeCADCmd binary instead of the FreeCAD binary here
370 +# for two reasons:
371 +# 1. It works out of the box with USE=headless as well, not needing a guard
372 +# 2. We don't need virtualx.eclass and it's dependencies
373 +# The exported environment variables are needed, so freecad does know
374 +# where to save it's temporary files, and where to look and write it's
375 +# configuration. Without those, there are sandbox violation, when it
376 +# tries to create /var/lib/portage/home/.FreeCAD directory.
377 +src_test() {
378 + pushd "${BUILD_DIR}" > /dev/null || die
379 + export FREECAD_USER_HOME="${HOME}"
380 + export FREECAD_USER_DATA="${T}"
381 + export FREECAD_USER_TEMP="${T}"
382 + nonfatal ./bin/FreeCADCmd --run-test 0
383 + popd > /dev/null || die
384 +}
385 +
386 +src_install() {
387 + cmake_src_install
388 +
389 + dobin src/Tools/freecad-thumbnailer
390 +
391 + if ! use headless; then
392 + dosym -r /usr/$(get_libdir)/${PN}/bin/FreeCAD /usr/bin/freecad
393 + mv "${ED}"/usr/$(get_libdir)/freecad/share/* "${ED}"/usr/share || die "failed to move shared ressources"
394 + fi
395 + dosym -r /usr/$(get_libdir)/${PN}/bin/FreeCADCmd /usr/bin/freecadcmd
396 +
397 + python_optimize "${ED}"/usr/share/${PN}/data/Mod/Start/StartPage "${ED}"/usr/$(get_libdir)/${PN}{/Ext,/Mod}/
398 + # compile main package in python site-packages as well
399 + python_optimize
400 +
401 + doenvd "${FILESDIR}/99${PN}"
402 +}
403 +
404 +pkg_postinst() {
405 + xdg_pkg_postinst
406 +
407 + if use plot; then
408 + einfo "Note: You are enabling the 'plot' USE flag."
409 + einfo "This conflicts with the plot workbench that can be loaded"
410 + einfo "via the addon manager! You can only install one of those."
411 + fi
412 +
413 + if use ship; then
414 + einfo "Note: You are enabling the 'ship' USE flag."
415 + einfo "This conflicts with the ship workbench that can be loaded"
416 + einfo "via the addon manager! You can only install one of those."
417 + fi
418 +
419 + einfo "You can load a lot of additional workbenches using the integrated"
420 + einfo "AddonManager."
421 +
422 + # ToDo: check opencv, pysolar (::science), elmerfem (::science)
423 + # ifc++, ifcopenshell, netgen, z88 (no pkgs), calculix-ccx (::waebbl)
424 + einfo "There are a lot of additional tools, for which FreeCAD has builtin"
425 + einfo "support. Some of them are available in Gentoo. Take a look at"
426 + einfo "https://wiki.freecadweb.org/Installing#External_software_supported_by_FreeCAD"
427 + optfeature_header "Computational utilities"
428 + optfeature "BLAS library" sci-libs/openblas
429 + optfeature "Statistical computation with Python" dev-python/pandas
430 + optfeature "Use scientific computation with Python" dev-python/scipy
431 + optfeature "Use symbolic math with Python" dev-python/sympy
432 + optfeature_header "Imaging, Plotting and Rendering utilities"
433 + optfeature "Dependency graphs" media-gfx/graphviz
434 + optfeature "PBR Rendering" media-gfx/povray
435 + optfeature_header "Import / Export"
436 + optfeature "Interact with git repositories" dev-python/GitPython
437 + optfeature "Work with COLLADA documents" dev-python/pycollada
438 + optfeature "YAML importer and emitter" dev-python/pyyaml
439 + optfeature "Importing and exporting 2D AutoCAD DWG files" media-gfx/libredwg
440 + optfeature "Importing and exporting geospatial data formats" sci-libs/gdal
441 + optfeature "Working with projection data" sci-libs/proj
442 + optfeature_header "Meshing and FEM"
443 + optfeature "FEM mesh generator" sci-libs/gmsh
444 + optfeature "Triangulating meshes" sci-libs/gts
445 + optfeature "Visualization" sci-visualization/paraview
446 +}
447 +
448 +pkg_postrm() {
449 + xdg_pkg_postrm
450 +}