summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* sci-libs/vtk: drop 8.2.0-r2Bernd Waibel2021-06-151-382/+0
| | | | | | | Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Bernd Waibel <waebbl-gentoo@posteo.net> Closes: https://github.com/gentoo/gentoo/pull/21252 Signed-off-by: Sam James <sam@gentoo.org>
* sci-libs/vtk: update dependency on dev-python/sipBernd Waibel2021-06-151-0/+381
| | | | | | | | | Use slotted dev-python/sip package Remove obsolete commented cmake variable Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Bernd Waibel <waebbl-gentoo@posteo.net> Signed-off-by: Sam James <sam@gentoo.org>
* sci-libs/vtk: drop 8.2.0-r1Bernd Waibel2021-06-152-353/+0
| | | | | | Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Bernd Waibel <waebbl-gentoo@posteo.net> Signed-off-by: Sam James <sam@gentoo.org>
* sci-libs/vtk: drop 8.2.0Bernd Waibel2021-06-151-346/+0
| | | | | | Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Bernd Waibel <waebbl-gentoo@posteo.net> Signed-off-by: Sam James <sam@gentoo.org>
* sci-libs/vtk: improve all-modules USE flagBernd Waibel2021-06-102-0/+439
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - add missing flags to REQUIRED_USE - add new mysql USE flag - needed by all-modules, adds new dependency on dev-db/mysql-connector-c. Dev-db/mariadb-connector-c isn't supported by this version. Fix an issue with using of deprecated my_bool when using mysql-connector-c. - remove xdmf2 USE flag, block sci-libs/xdmf2 with all-modules: sci-libs/xdmf2 doesn't ship any cmake configuration files, which leads to configuration errors when trying to build against external xdmf2 - block sci-libs/xdmf2: when built against internal xdmf2, there are header file collisions with the header files installed by sci-libs/xdmf2 - add dependency on sci-libs/kissfft, bug #754684) and drop bundled - fix an issue with xdmf3 library being installed in both library locations, lib and lib64 - fix QA issues with RPATH - byte compile python files - disable searching for zfp (no package in tree) - addresses some QA issues with defined but unused cmake variables: fixing all of them would need a thorough testing of each single USE flag and checking where these belong to, in this over-complex build system (bug #660582) Closes: https://bugs.gentoo.org/793839 Closes: https://bugs.gentoo.org/754684 Closes: https://bugs.gentoo.org/646846 Bug: https://bugs.gentoo.org/660582 Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Bernd Waibel <waebbl-gentoo@posteo.net> Signed-off-by: Sam James <sam@gentoo.org>
* sci-libs/vtk: add python-3.9 supportBernd Waibel2021-06-101-3/+3
| | | | | | Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Bernd Waibel <waebbl-gentoo@posteo.net> Signed-off-by: Sam James <sam@gentoo.org>
* sci-libs/vtk: delete README from bundled vtkm for nowSam James2021-06-021-0/+5
| | | | | | | | | | | Avoids collision with paraview. We'll ideally try to get paraview building with system VTK again but VTK takes a while to build so anything to prevent collisions for users now is important while we investigate that possibility. Bug: https://bugs.gentoo.org/253881 Bug: https://bugs.gentoo.org/793221 Signed-off-by: Sam James <sam@gentoo.org>
* sci-libs/vtk: add various GCC 11 fixesSam James2021-05-312-0/+85
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sci-libs/vtk: bump to 9.0.1Bernd Waibel2021-05-314-1/+579
| | | | | | | Closes: https://bugs.gentoo.org/723744 Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Bernd Waibel <waebbl-gentoo@posteo.net> Signed-off-by: Sam James <sam@gentoo.org>
* sci-libs/vtk: 8.2.0: update deprecated var for setting Python site-dirAlexei Colin2021-03-252-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: On some platforms (ppc64le), Python modules are installed into $EPREFIX/usr/lib64/pythonX.Y/site-packages instead of $EPREFIX/usr/lib/pythonX.Y/site-packages Reason: The ebuild sets VTK_INSTALL_PYTHON_MODULE_DIR, but it has been deprecated and thus has no effect. Thus, the install directory used is the default install directory, and for some reason it's /usr/lib64 instead of /usr/lib. The only reference to the deprecated var in v8.2.0 is to print the deprecation warning: ./CMake/vtkDirectories.cmake:29:if(DEFINED VTK_INSTALL_PYTHON_MODULE_DIR) ./CMake/vtkDirectories.cmake-30- message(WARNING ./CMake/vtkDirectories.cmake:31: "VTK_INSTALL_PYTHON_MODULE_DIR is no longer supported. " ./CMake/vtkDirectories.cmake-32- "Set `VTK_PYTHON_SITE_PACKAGES_SUFFIX` instead, although not needed in most cases.") ./CMake/vtkDirectories.cmake-33-endif() Note that in versions >8.2.0, this warning has been removed, too. The fix: VTK_INSTALL_PYTHON_MODULES_DIR is still honored, including in >8.2.0, so use it instead. Note that VTK_PYTHON_SITE_PACKAGES_SUFFIX does not help because it is appended after the lib directory in the path. Perhaps a deeper fix might be to figure out why the default lib dir is set to lib64 instead of lib. I didn't investigate this further. The ebuild already intends to override the default, and this commit just fixes that override. I don't know if the default dir is still broken in >8.2.0, i.e. whether it is still necessary for the >8.2.0 ebuilds to override the default installation directory. There have been related changes, though, see at least this commit that's not in 8.2.0 but is in master: commit 4c42ff417c209087bf0058a9eb2614928943156b Author: Ben Boeckel <ben.boeckel@kitware.com> Date: Thu Oct 18 13:17:11 2018 -0400 vtkPython: expose VTK_PYTHONPATH to consumers of VTK Signed-off-by: Alexei Colin <ac@alexeicolin.com> Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* sci-libs/vtk: added ~arm64Roy Bamford2021-02-221-2/+2
| | | | | | Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Roy Bamford <neddyseagoon@gentoo.org> Signed-off-by: Sam James <sam@gentoo.org>
* */*: Remove obsolete values from PYTHON_COMPATMichał Górny2021-01-312-2/+2
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* sci-libs/vtk: dev-libs/pegtl as dependencyAlessandro Barbieri2020-12-271-0/+1
| | | | | | | | | | needed by USE="all-modules" Closes: https://bugs.gentoo.org/754687 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/18228 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: Revert "dev-libs/pegtl as dependency"Andreas Sturmlechner2020-12-271-1/+0
| | | | | | | | | | This reverts commit 694ea56635c8bf70407885cca15095fa6694d0fe. IUSE=all-modules can be considered broken anyway, so there is time for ~arm keywording dev-libs/pegtl. Bug: https://bugs.gentoo.org/754687 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: dev-libs/pegtl as dependencyAlessandro Barbieri2020-12-271-0/+1
| | | | | | | | | | needed by USE="all-modules" Closes: https://bugs.gentoo.org/754687 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/18228 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: further >=dev-libs/pugixml-1.11 fixesSam James2020-12-152-8/+11
| | | | | | | | | | | | | | | * Drop the internal copy of pugixml just in case. * Adapt vtk to the new "proper" CMake config files from pugixml upstream. Note that Aisha Tammy's patch worked for her with CMake 3.19.1 but not for me on 3.17.4 (stable), so this seems to be needed to be safe. Bug: https://bugs.gentoo.org/758611 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Sam James <sam@gentoo.org>
* sci-libs/vtk: fix finding pugixmlAisha Tammy2020-12-152-0/+360
| | | | | | | | Closes: https://bugs.gentoo.org/758611 Package-Manager: Portage-3.0.11, Repoman-3.0.2 Signed-off-by: Aisha Tammy <gentoo@aisha.cc> Closes: https://github.com/gentoo/gentoo/pull/18640 Signed-off-by: Sam James <sam@gentoo.org>
* sci-libs/vtk: fix build with >=media-libs/freetype-2.10.3Sam James2020-11-082-0/+19
| | | | | | Closes: https://bugs.gentoo.org/751088 Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Sam James <sam@gentoo.org>
* sci-libs/vtk: arm keyworded (bug #649054)Sam James2020-07-161-1/+1
| | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.23 Signed-off-by: Sam James <sam@gentoo.org>
* sci-libs/vtk: python3_8Andreas Sturmlechner2020-06-062-1/+177
| | | | | Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: More IUSE sortingAndreas Sturmlechner2020-06-061-1/+1
| | | | | Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: Fix build with -fno-commonAndreas Sturmlechner2020-06-062-0/+41
| | | | | | | Thanks-to: Tiernan Hubble <tiernanhubble+gentoo@gmail.com> Closes: https://bugs.gentoo.org/721048 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: Drop 8.1.0-r7Andreas Sturmlechner2020-06-062-344/+0
| | | | | | | 8.2.0 is now very slightly less broken than this. Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: Switch to cmake.eclassAndreas Sturmlechner2020-06-061-4/+4
| | | | | Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: *Only* run cmake-utils_src_prepare in src_prepareAndreas Sturmlechner2020-06-061-3/+1
| | | | | | | Because default was invoked as well, patches were applied twice... Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: Fix CMake detection of GCC 10Andreas Sturmlechner2020-06-062-0/+17
| | | | | | | Thanks-to: Tiernan Hubble <tiernanhubble+gentoo@gmail.com> Closes: https://bugs.gentoo.org/723374 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: Fix build with Qt 5.15Andreas Sturmlechner2020-06-062-0/+38
| | | | | | Closes: https://bugs.gentoo.org/726960 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: Fix EAPI-7 bump and break up python_gen_cond_dep scopeAndreas Sturmlechner2020-06-061-30/+33
| | | | | | | Sorting, BDEPEND, quotes and indendation Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: Add missing dependenciesAndreas K. Hüttel2020-06-061-0/+4
| | | | | | | | | Closes: https://bugs.gentoo.org/723460 Closes: https://bugs.gentoo.org/727078 Closes: https://bugs.gentoo.org/727080 Closes: https://bugs.gentoo.org/723000 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
* sci-libs/vtk: Add missing dependency on dev-libs/pugixmlAndreas K. Hüttel2020-06-061-0/+1
| | | | | | Closes: https://bugs.gentoo.org/722770 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
* sci-libs/vtk: fix 8.2.0 ebuildMatthias Maier2020-05-121-5/+4
| | | | | | | | | | | | | - fix bundled libproj configuration. Thanks to Tiernan Hubble for pointing this out - use system mpi4py Closes: https://bugs.gentoo.org/720372 Closes: https://bugs.gentoo.org/721412 Closes: https://bugs.gentoo.org/721802 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Matthias Maier <tamiko@gentoo.org>
* sci-libs/vtk: add python compatMatthias Maier2020-05-122-2/+2
| | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Matthias Maier <tamiko@gentoo.org>
* sci-libs/vtk: fix QA warningsMatthias Maier2020-05-012-4/+4
| | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Matthias Maier <tamiko@gentoo.org>
* sci-libs/vtk: version bump to 8.2.0Matthias Maier2020-05-012-0/+340
| | | | | | Closes: https://bugs.gentoo.org/684008 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Matthias Maier <tamiko@gentoo.org>
* sci-libs/vtk: remove bogus dependencyMatthias Maier2020-05-011-2/+1
| | | | | | Closes: https://bugs.gentoo.org/666058 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Matthias Maier <tamiko@gentoo.org>
* sci-libs/vtk: fix compilation with openmpi-4Matthias Maier2020-05-012-0/+20
| | | | | | Closes: https://bugs.gentoo.org/683382 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Matthias Maier <tamiko@gentoo.org>
* sci-libs/vtk: Replace virtual/ffmpegDavid Seifert2020-04-261-1/+1
| | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: David Seifert <soap@gentoo.org>
* sci-libs/vtk: Fix wrong installation path for libQVTKWidgetPlugin.soRafael Palomar2020-04-051-1/+1
| | | | | | | | | | This fixes the wrong installation path of libQVTKWidgetPlugin.so. From /usr/usr/... --> /usr/... Closes: https://bugs.gentoo.org/646422 Signed-off-by: Rafael Palomar Ávalos <rafael.palomar@rr-research.no> Closes: https://github.com/gentoo/gentoo/pull/15218 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: Fix installation path for CMake filesRafael Palomar2020-04-051-0/+1
| | | | | | | | | | | | | On amd64, installation will drop files in /usr/lib64 except for CMake files which will be installed on /usr/lib. This fixes the installation path for the CMake files (/usr/lib64). Revision bump vtk-8.1.0-r4 --> vtk-8.1.0-r5 Signed-off-by: Rafael Palomar Ávalos <rafael.palomar@rr-research.no> Closes: https://github.com/gentoo/gentoo/pull/15213 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: Hard-disable Qt5WebKitAndreas Sturmlechner2020-02-261-1/+1
| | | | | | Closes: https://bugs.gentoo.org/692866 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: Switch to PYTHON_MULTI_USEDEP APIMichał Górny2020-02-091-27/+31
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* sci-libs/vtk: Remove py2Michał Górny2020-02-041-1/+1
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* */*: Clean PYTHON_COMPAT of obsolete implsMichał Górny2020-01-051-2/+2
| | | | | Closes: https://github.com/gentoo/gentoo/pull/14246 Signed-off-by: Michał Górny <mgorny@gentoo.org>
* sci-libs/vtk: Drop 6.1.0-r4Andreas Sturmlechner2019-11-2812-739/+0
| | | | | Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: removed xkaapi dependency and kaapi useflagAlessandro-Barbieri2019-10-251-6/+3
| | | | | | | | Closes: https://bugs.gentoo.org/693046 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/12940 Signed-off-by: Michał Górny <mgorny@gentoo.org>
* sci-libs/vtk: Fix USE flag description typoAlessandro Barbieri2019-09-141-2/+2
| | | | | | | Package-Manager: Portage-2.3.66, Repoman-2.3.11 Closes: https://github.com/gentoo/gentoo/pull/12837 Signed-off-by: Alessandro Barbieri <lssdrbarbieri@gmail.com> Signed-off-by: Richard Yao <ryao@gentoo.org>
* sci-libs/vtk: Cleanup obsolete versionsAndreas Sturmlechner2019-08-306-1372/+0
| | | | | Package-Manager: Portage-2.3.73, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* sci-libs/vtk: Relies also in netcdf:0=Pacho Ramos2018-10-271-0/+333
| | | | | Signed-off-by: Pacho Ramos <pacho@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
* sci-libs/vtk: Drop non-existing media-video/nvidia-settingsMikle Kolyada2018-10-135-10/+10
| | | | | Signed-off-by: Mikle Kolyada <zlogene@gentoo.org> Package-Manager: Portage-2.3.49, Repoman-2.3.11
* sci-libs/vtk: add python3 supportAmy Liffey2018-09-091-0/+332
| | | | | | Closes: https://bugs.gentoo.org/658698 Suggested-by: Charles G. Waldman <cgw@alum.mit.edu> Package-Manager: Portage-2.3.40, Repoman-2.3.9