Commit Graph

54 Commits

Author SHA1 Message Date
Weijia Wang
a33e3d607c paraview: include missing header 2024-01-24 11:23:59 +01:00
Weijia Wang
c2e081fe18 paraview: 5.11.1 -> 5.11.2 2024-01-24 11:23:59 +01:00
David Guibert
024e4447a4 paraview: fix strlcat symbol provided by glibc 2.38
Glibc introduces strlcat in commit [1].
The logic of vtknetcdf was to only define strlcat conditionally on not
BSD systems, but starting with glibc 2.38, strlcat is also defined on
Linux.

The CMakelist checks for the symbol existence, the redefinition of the
symbol can be conditional on the boolean HAVE_STRLCAT instead of if
not BSD systems.

This commit fixes 268961.

[1] https://sourceware.org/git/?p=glibc.git;a=commit;h=454a20c8756c9c1d55419153255fc7692b3d2199
2023-11-28 12:57:31 +01:00
Sandro Jäckel
fccf04b620 treewide: replace -DCMAKE_BUILD_TYPE in cmakeFlags with cmakeBuildType 2023-09-08 14:18:26 +00:00
Alexander Kiselyov
cb60478cda
paraview: 5.11.0 -> 5.11.1 (#239529) 2023-06-27 13:11:24 +02:00
David Guibert
376194cf39 paraview: 5.10.0 -> 5.11.0 2023-02-12 12:47:48 +01:00
Alexander Kiselyov
0c63aa1630 paraview: fix Python shell
Fixes `paraview` module import error in pvpython/pvbatch (#215144) by
building with Python 3.9. Also implements `mkDerivation` recommendations
from #180841.
2023-02-12 12:46:58 +01:00
Markus S. Wamser
c9d167f174 pkgs.applications: remove unused args 2022-10-12 16:00:16 +02:00
Josef Kemetmüller
bcd7045998 treewide: Remove now-unneeded LD_LIBRARY_PATH in cmake derivations
Since the setting DCMAKE_SKIP_BUILD_RPATH was disabled, we can now run
the checkPhase of cmake derivations without having to tweak the
LD_LIBRARY_PATH anymore.
2022-07-04 03:49:01 +03:00
Alexander Kiselyov
8c8e02e0d9 paraview: 5.9.1 -> 5.10.0 2022-03-12 04:34:53 +03:00
Sandro Jäckel
daa36171c0
paraview: cleanup, format 2021-08-10 10:32:45 +02:00
Harrison Houghton
1e0f240b10 paraview: license is bsd3
See https://github.com/Kitware/ParaView/blob/master/Copyright.txt
2021-08-08 16:05:07 -04:00
Harrison Houghton
b8611ee768 paraview: install doc files by default
The "Getting Started"/"Tutorial"/"Guide" options on the splash screen
and help menu don't work otherwise.
2021-08-08 16:05:06 -04:00
Harrison Houghton
89bcf569f6 paraview: use fetchFromGitLab
The main repo is on GitLab; the GitHub repository is a mirror.
2021-08-05 22:43:47 -04:00
Harrison Houghton
ab5810a2e1 paraview: 5.8.0 -> 5.9.1
The new version supports python 3.9.

The patch to avoid the string-format warning is no longer needed.
2021-08-05 22:43:19 -04:00
Pavol Rusnak
a6ce00c50c
treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
Markus Kowalewski
6dba41fbcb
mpi: use mpi attribute consistently as the default MPI implementations
Use the attribute mpi to provide a system wide default MPI
implementation. The default is openmpi (as before).
This now allows for overriding the MPI implentation by using
the overlay mechanism. Build all packages with mpich instead
of the default openmpi can now be achived like this:
self: super:
 {
   mpi = super.mpich;
 }

All derivations that have been using "mpi ? null" to provide optional
building with MPI have been change in the following way to allow for
optional builds with MPI:
{ ...
, mpi
, useMpi ? false
}
2021-01-23 12:15:13 +01:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Aaron Ash
25865306f0 paraview: Fix dataset filtering
Paraview requires python and numpy to be available at runtime not just
build time.  Filtering a csv dataset uses numpy and throws an error
without python and numpy being available in the propagatedBuildInputs.
2020-07-03 10:44:29 +10:00
Jonathan Jeppener-Haltenhoff
7d424a400d paraview: 5.6.3 -> 5.8.0 2020-06-10 18:59:56 +02:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Frederik Rietdijk
419bc0a4cd Revert "Revert "Merge master into staging-next""
In 87a19e9048 I merged staging-next into master using the GitHub gui as intended.
In ac241fb7a5 I merged master into staging-next for the next staging cycle, however, I accidentally pushed it to master.
Thinking this may cause trouble, I reverted it in 0be87c7979. This was however wrong, as it "removed" master.

This reverts commit 0be87c7979.
2020-02-05 19:41:25 +01:00
Frederik Rietdijk
0be87c7979 Revert "Merge master into staging-next"
I merged master into staging-next but accidentally pushed it to master.
This should get us back to 87a19e9048.

This reverts commit ac241fb7a5, reversing
changes made to 76a439239e.
2020-02-05 19:18:35 +01:00
wucke13
b020b0153d paraview: add wrapQtAppsHook
Also reformatted meta and arguments
2020-02-04 11:14:20 +01:00
David Guibert
8754b61147
Merge pull request #78602 from jobojeha/feature/paraview-pythonpath-prefix
paraview: prefix PYTHONPATH
2020-01-28 17:25:37 +01:00
jobojeha
f4e87eb2da paraview: prefix PYTHONPATH
--prefix gives the possibility to add additional python modules to path
2020-01-27 13:08:18 +01:00
Anders Kaseorg
3cd8ce3bce treewide: Fix unsafe concatenation of $LD_LIBRARY_PATH
Naive concatenation of $LD_LIBRARY_PATH can result in an empty
colon-delimited segment; this tells glibc to load libraries from the
current directory, which is definitely wrong, and may be a security
vulnerability if the current directory is untrusted.  (See #67234, for
example.)  Fix this throughout the tree.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2020-01-15 09:47:03 +01:00
adisbladis
c9d8624ccd
treewide: Get rid of libGLU_combined 2019-11-18 20:10:43 +00:00
Daniel Schaefer
4390b5ef7c paraview: 5.6.0 -> 5.6.3
* Use qt wrapper, otherwise it wouldn't find plugins and fail to start
2019-11-06 13:24:35 +01:00
volth
46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
ft
8839a613d7 paraview: 5.5.2 -> 5.6.0 2019-02-19 01:48:58 -08:00
Lluís Batlle i Rossell
66d7126255 Take me (viric) out of most maintenance
Since years I'm not maintaining anything of the list below other
than some updates when I needed them for some reason. Other people
is doing that maintenance on my behalf so I better take me out but
for very few packages. Finally!
2018-07-22 21:50:19 +02:00
Anthony Cowley
6690ec57f8 paraview: 5.4.1 -> 5.5.2
This update should also fix the build the hydra: one part of the
change is to build paraview with Qt-5.9, as this is the configuration
that paraview upstream supports.
2018-07-18 20:05:15 -04:00
Stefan Frijters
dff672ec7c paraview: include numpy in python environment
The Python filter functionality in Paraview requires numpy, which is currently not included.
Changes are based on the discussion in issue #37118.
2018-03-28 11:52:21 +02:00
Alexander V. Nikolaev
0acec7e984 treewide: transition mesa to libGLU_combined 2018-02-24 17:06:49 +02:00
Joerg Thalheim
fcd16d3338 paraview: cmake belongs to nativeBuildInputs 2017-12-01 12:49:52 +00:00
Bastian Köcher
cef755a843 paraview: 5.4.0 -> 5.4.1 2017-12-01 13:20:15 +01:00
timor
274333e222 ParaView: 4.0.1 -> 5.4.0 2017-09-10 18:02:38 +02:00
Silvan Mosberger
f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00
Vladimír Čunát
33153a2166 paraview, vtk: fix build after mesa update 2015-03-06 12:09:01 +01:00
Mateusz Kowalczyk
007f80c1d0 Turn more licenses into lib.licenses style
Should eval cleanly, as far as -A tarball tells me.

Relevant: issue #2999, issue #739
2014-11-06 00:48:16 +00:00
Lluís Batlle i Rossell
174503945f Updating paraview to 4.0.1. 2013-10-09 09:02:21 +02:00
David Guibert
2162794b68 updating paraview to 3.98.1 2013-05-12 13:49:05 +02:00
Lluís Batlle i Rossell
bed87f75ca Updating paraview.
svn path=/nixpkgs/trunk/; revision=33086
2012-03-14 21:50:17 +00:00
Yury G. Kudryashov
743c7e3539 Let hydra build paraview with qt-4.7 and qt-4.8
svn path=/nixpkgs/trunk/; revision=32452
2012-02-21 12:57:23 +00:00
Lluís Batlle i Rossell
4ad673b3f4 Updating paraview.
svn path=/nixpkgs/trunk/; revision=32319
2012-02-16 11:07:07 +00:00
David Guibert
364a74843a update paraview to 3.10.1
<patch description>

Signed-off-by: David Guibert <david.guibert@gmail.com>

svn path=/nixpkgs/trunk/; revision=28618
2011-08-16 18:17:26 +00:00
Lluís Batlle i Rossell
8d1e116069 Updating paraview
svn path=/nixpkgs/trunk/; revision=24651
2010-11-10 18:13:04 +00:00
Lluís Batlle i Rossell
d7e44fd3df Updating paraview
svn path=/nixpkgs/trunk/; revision=22052
2010-05-29 12:23:42 +00:00
Lluís Batlle i Rossell
916e0f3840 Updating paraview.
svn path=/nixpkgs/trunk/; revision=19478
2010-01-16 11:05:17 +00:00