[arch-commits] Commit in paraview/repos/community-x86_64 (4 files)

2019-08-31 Thread Bruno Pagani via arch-commits
Date: Saturday, August 31, 2019 @ 18:35:24
  Author: archange
Revision: 505751

archrelease: copy trunk to community-x86_64

Added:
  paraview/repos/community-x86_64/PKGBUILD
(from rev 505750, paraview/trunk/PKGBUILD)
  paraview/repos/community-x86_64/proj6.patch
(from rev 505750, paraview/trunk/proj6.patch)
Deleted:
  paraview/repos/community-x86_64/PKGBUILD
  paraview/repos/community-x86_64/proj6.patch

-+
 PKGBUILD|  214 
 proj6.patch |  220 +-
 2 files changed, 217 insertions(+), 217 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-31 18:35:03 UTC (rev 505750)
+++ PKGBUILD2019-08-31 18:35:24 UTC (rev 505751)
@@ -1,107 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Oliver Goethel 
-# Contributor: eolianoe eolianoe 
-# Contributor: George Eleftheriou 
-# Contributor: Mathias Anselmann 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Michele Mocciola 
-# Contributor: Simon Zilliken 
-# Contributor: chuckdaniels
-
-_pkg=paraview
-_mpi=openmpi
-pkgname=${_pkg}
-#-${_mpi}
-pkgver=5.6.1
-pkgrel=2
-pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
-arch=(x86_64)
-url="https://www.paraview.org";
-license=(BSD custom)
-depends=(boost-libs qt5-tools qt5-x11extras intel-tbb openmpi
- ffmpeg ospray python-matplotlib python-numpy
- cgns protobuf python-pygments
- double-conversion expat freetype2 gdal glew hdf5 
- libjpeg jsoncpp libxml2 lz4 xz python-mpi4py netcdf
- libogg libpng pdal proj pugixml libtheora libtiff zlib)
-#gl2ps
-#netcdf-cxx libharu
-#sqlite apparently not used in this VTK configuration
-makedepends=(cmake boost mesa gcc-fortran ninja qt5-tools qt5-xmlpatterns 
eigen pegtl)
-source=("${url}/files/v${pkgver:0:3}/ParaView-v${pkgver}.tar.xz"
-proj6.patch)
-sha256sums=('50ef01f54db6358b402e50d1460ef47c04d675bf26f250c6937737169f1e6612'
-'2271cf8b57a4251d04a5e6f48b05939f60131b5b9a7947c21f013af2cbe55e28')
-
-prepare() {
-mkdir -p build
-cd ParaView-v${pkgver}/VTK
-patch -p1 -i ../../proj6.patch
-}
-
-build() {
-cd build
-
-# Flags to enable system libs in VTK building, as in VTK package
-# GL2PS has non-upstreamed patches?
-# KISSFFT is not packaged
-# UTF8 (utfcpp) is not packaged (but present in AUR)
-# VERDICT is not packaged
-# ZFP is not packaged
-# NETCDFCPP blocked by https://github.com/Unidata/netcdf-cxx4/issues/43
-# LIBHARU blocked by https://github.com/libharu/libharu/pull/157
-# SQLITE apparently not used in this VTK configuration
-local VTK_USE_SYSTEM_LIB=""
-for lib in DOUBLECONVERSION EIGEN EXPAT FREETYPE GLEW HDF5 JPEG JSONCPP 
LIBPROJ LIBXML2 LZ4 LZMA MPI4PY NETCDF OGG PEGTL PNG PUGIXML THEORA TIFF ZLIB
-do
-VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
-done
-# Specific system libs for ParaView version
-for lib in CGNS PROTOBUF PYGMENTS
-do
-VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
-done
-
-cmake ../ParaView-v${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOSPRAY_INSTALL_DIR=/usr \
--DPARAVIEW_ENABLE_FFMPEG=ON \
--DPARAVIEW_ENABLE_GDAL=ON \
--DPARAVIEW_ENABLE_MATPLOTLIB=ON \
--DPARAVIEW_ENABLE_PDAL=ON \
--DPARAVIEW_ENABLE_PYTHON=ON \
--DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON \
--DPARAVIEW_USE_MPI=ON \
--DPARAVIEW_USE_VISITBRIDGE=ON \
--DPARAVIEW_USE_OSPRAY=ON \
--DVISIT_BUILD_READER_CGNS=ON \
--DVTK_PYTHON_FULL_THREADSAFE=ON \
--DVTK_PYTHON_VERSION=3 \
--DVTK_SMP_IMPLEMENTATION_TYPE=TBB \
--DVTKm_ENABLE_MPI=ON \
--DVTKm_ENABLE_RENDERING=ON \
--DVTKm_USE_DOUBLE_PRECISION=ON \
--DModule_vtkGeovisCore=ON \
--DModule_vtkGeovisGDAL=ON \
--DModule_vtkIOGDAL=ON \
--DModule_vtkIOPDAL=ON \
-${VTK_USE_SYSTEM_LIB} \
--GNinja
-
-ninja ${MAKEFLAGS}
-}
-
-package() {
-cd build
-
-DESTDIR="${pkgdir}" ninja install
-
-# Install license
-install -Dm644 "${srcdir}"/ParaView-v${pkgver}/License_v1.2.txt 
"${pkgdir}"/usr/share/licenses/paraview/LICENSE
-
-# Remove IceT man pages to avoid conflicts
-rm -- "${pkgdir}"/usr/share/man/man3/icet*.3
-rmdir "${pkgdir}"/usr/share/man/{man3/,}
-}

Copied: paraview/repos/community-x86_64/PKGBUILD (from rev 505750, 
paraview/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-31 18:35:24 UTC (rev 505751)
@@ -0,0 +1,107 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Oliver Goethel 
+# Contributor: eolianoe e

[arch-commits] Commit in paraview/repos/community-x86_64 (4 files)

2018-10-22 Thread Bruno Pagani via arch-commits
Date: Monday, October 22, 2018 @ 22:56:55
  Author: archange
Revision: 398570

archrelease: copy trunk to community-x86_64

Added:
  paraview/repos/community-x86_64/PKGBUILD
(from rev 398569, paraview/trunk/PKGBUILD)
  paraview/repos/community-x86_64/fix-qt5.11-headers.patch
(from rev 398569, paraview/trunk/fix-qt5.11-headers.patch)
Deleted:
  paraview/repos/community-x86_64/PKGBUILD
  paraview/repos/community-x86_64/fix-qt5.11-headers.patch

--+
 PKGBUILD |  228 +-
 fix-qt5.11-headers.patch |  240 ++---
 2 files changed, 232 insertions(+), 236 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-22 22:56:29 UTC (rev 398569)
+++ PKGBUILD2018-10-22 22:56:55 UTC (rev 398570)
@@ -1,116 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Oliver Goethel 
-# Contributor: eolianoe eolianoe 
-# Contributor: George Eleftheriou 
-# Contributor: Mathias Anselmann 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Michele Mocciola 
-# Contributor: Simon Zilliken 
-# Contributor: chuckdaniels
-
-_pkg=paraview
-_mpi=openmpi
-pkgname=${_pkg}
-#-${_mpi}
-pkgver=5.5.2
-pkgrel=4
-pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
-arch=('x86_64')
-url="https://www.paraview.org";
-license=('BSD' 'custom')
-depends=('qt5-tools' 'qt5-x11extras' 'ospray' 'ffmpeg' 'openmpi'
- 'cgns' 'python-pygments' 'protobuf' 'pugixml'
- 'python-matplotlib' 'python-numpy' 'python-mpi4py'
- 'boost-libs' 'glew' 'expat' 'freetype2'
- 'libjpeg' 'jsoncpp' 'libxml2' 'libpng'
- 'libtiff' 'zlib' 'hdf5' 'lz4' 'netcdf')
-#netcdf-cxx gl2ps libharu
-#python-txaio python-hyperlink
-#proj apparently not used in this VTK configuration
-makedepends=('cmake' 'boost' 'mesa' 'gcc-fortran' 'ninja' 'qt5-tools' 
'qt5-xmlpatterns' 'eigen')
-source=("${url}/files/v${pkgver:0:3}/ParaView-v${pkgver}.tar.xz"
-'fix-qt5.11-headers.patch'
-'https://gitlab.kitware.com/vtk/vtk/merge_requests/4490.patch'
-
'https://gitlab.kitware.com/paraview/paraview/merge_requests/2613.patch'
-
paraview-fix-doc-build.patch::"https://gitlab.kitware.com/paraview/paraview/commit/f9c7e4b0.diff";)
-sha256sums=('4b9d186bac59e412ae09cae49c3ec3ec59803c25f63e89f92efe07b05dc1b896'
-'638e3148d855e1de2ca7711f9dd1eb6ec5410e3c412d949abf2a34ef2086f0c7'
-'ebad129ed0229f96bc17ff0a43715407b0fdf8cc2658a7b5ebd7e76809ae1392'
-'49d643a0220f0f901e571f9f82f5dd48d85fe42a79830b971ab586abf334194f'
-'2e52c2564e5e147b8c1321367147495ba3c43436eecda1b3d26acde8d04a230d')
-
-prepare() {
-mkdir -p build
-cd ParaView-v${pkgver}/
-patch -p1 -i ../fix-qt5.11-headers.patch
-# https://gitlab.kitware.com/paraview/paraview/issues/18323
-patch -p1 -i ../2613.patch
-# fix build https://gitlab.kitware.com/paraview/paraview/issues/18330
-patch -p1 -i ../paraview-fix-doc-build.patch
-cd VTK
-# https://gitlab.kitware.com/vtk/vtk/issues/17350
-patch -p1 -i ../../4490.patch
-}
-
-build() {
-cd build
-
-# Flags to enable system libs in VTK building, as in VTK package
-# NETCDFCPP status?
-# GL2PS fails.
-# libharu blocked by https://github.com/libharu/libharu/pull/157
-# LIBPROJ4 apparently not used in this VTK configuration
-local VTK_USE_SYSTEM_LIB=""
-for lib in EXPAT FREETYPE JPEG PNG TIFF ZLIB LIBXML2 MPI4PY JSONCPP GLEW 
HDF5 LZ4 NETCDF EIGEN
-do
-VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
-done
-# Specific system libs for ParaView version
-for lib in CGNS PUGIXML PROTOBUF PYGMENTS
-do
-VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
-done
-
-cmake ../ParaView-v${pkgver} \
--DBUILD_DOCUMENTATION=OFF \
--DBUILD_EXAMPLES=ON \
--DBUILD_SHARED_LIBS=ON \
--DBUILD_TESTING=OFF \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_C_COMPILER=mpicc \
--DCMAKE_CXX_COMPILER=mpicxx \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOSPRAY_INSTALL_DIR=/usr \
--DPARAVIEW_ENABLE_FFMPEG=ON \
--DPARAVIEW_ENABLE_MATPLOTLIB=ON \
--DPARAVIEW_ENABLE_PYTHON=ON \
--DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON \
--DPARAVIEW_QT_VERSION=5 \
--DPARAVIEW_USE_MPI=ON \
--DPARAVIEW_USE_VISITBRIDGE=ON \
--DPARAVIEW_USE_OSPRAY=ON \
--DVISIT_BUILD_READER_CGNS=ON \
--DVTK_PYTHON_FULL_THREADSAFE=ON \
--DVTK_PYTHON_VERSION=3 \
--DVTK_QT_VERSION=5 \
--DVTK_RENDERING_BACKEND=OpenGL2 \
--DVTK_SMP_IMPLEMENTATION_TYPE=OpenMP \
-${VTK_USE_SYSTEM_LIB} \
--GNinja
-
-ninja ${MAKEFLAGS}
-}
-
-package() {
-cd build
-
-DESTDIR="${pkgdir}" ninja install
-

[arch-commits] Commit in paraview/repos/community-x86_64 (4 files)

2018-06-20 Thread Bruno Pagani via arch-commits
Date: Wednesday, June 20, 2018 @ 19:31:44
  Author: archange
Revision: 344217

archrelease: copy trunk to community-x86_64

Added:
  paraview/repos/community-x86_64/PKGBUILD
(from rev 344216, paraview/trunk/PKGBUILD)
  paraview/repos/community-x86_64/fix-qt5.11-headers.patch
(from rev 344216, paraview/trunk/fix-qt5.11-headers.patch)
Deleted:
  paraview/repos/community-x86_64/PKGBUILD
  paraview/repos/community-x86_64/fix-qt5.11-headers.patch

--+
 PKGBUILD |  208 +++
 fix-qt5.11-headers.patch |  240 ++---
 2 files changed, 224 insertions(+), 224 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-20 19:31:32 UTC (rev 344216)
+++ PKGBUILD2018-06-20 19:31:44 UTC (rev 344217)
@@ -1,104 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Oliver Goethel 
-# Contributor: eolianoe eolianoe 
-# Contributor: George Eleftheriou 
-# Contributor: Mathias Anselmann 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Michele Mocciola 
-# Contributor: Simon Zilliken 
-# Contributor: chuckdaniels
-
-_pkg=paraview
-_mpi=openmpi
-pkgname=${_pkg}
-#-${_mpi}
-pkgver=5.5.1
-pkgrel=2
-pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
-arch=('x86_64')
-url="https://www.paraview.org";
-license=('custom')
-depends=('qt5-tools' 'qt5-x11extras' 'ospray' 'ffmpeg' 'openmpi'
- 'cgns' 'python-pygments' 'protobuf' 'pugixml'
- 'python-matplotlib' 'python-numpy' 'python-mpi4py'
- 'boost-libs' 'glew' 'expat' 'freetype2'
- 'libjpeg' 'jsoncpp' 'libxml2' 'libpng'
- 'libtiff' 'zlib' 'hdf5-openmpi' 'lz4' 'netcdf')
-#netcdf-cxx gl2ps libharu
-#python-txaio python-hyperlink
-#proj apparently not used in this VTK configuration
-makedepends=('cmake' 'boost' 'mesa' 'gcc-fortran' 'ninja' 'qt5-tools' 
'qt5-xmlpatterns')
-source=("${url}/files/v${pkgver:0:3}/ParaView-v${pkgver}.tar.xz"
-'fix-qt5.11-headers.patch')
-sha256sums=('559f5a0d6947b19c42aed56018ff96158886c90d58b0204b8b6e5bc0288dd65f'
-'638e3148d855e1de2ca7711f9dd1eb6ec5410e3c412d949abf2a34ef2086f0c7')
-
-prepare() {
-mkdir -p build
-cd ParaView-v${pkgver}/
-patch -p1 -i ../fix-qt5.11-headers.patch
-}
-
-build() {
-cd build
-
-# Flags to enable system libs in VTK building, as in VTK package
-# NETCDFCPP status?
-# GL2PS fails.
-# libharu blocked by https://github.com/libharu/libharu/pull/157
-# TXAIO HYPERLINK in a future VTK version
-# LIBPROJ4 apparently not used in this VTK configuration
-local VTK_USE_SYSTEM_LIB=""
-for lib in EXPAT FREETYPE JPEG PNG TIFF ZLIB LIBXML2 MPI4PY JSONCPP GLEW 
HDF5 LZ4 NETCDF
-do
-VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
-done
-# Specific system libs for ParaView version
-for lib in CGNS PUGIXML PROTOBUF PYGMENTS 
-do
-VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
-done
-
-cmake ../ParaView-v${pkgver} \
--DBUILD_DOCUMENTATION=OFF \
--DBUILD_EXAMPLES=ON \
--DBUILD_SHARED_LIBS=ON \
--DBUILD_TESTING=OFF \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_C_COMPILER=mpicc \
--DCMAKE_CXX_COMPILER=mpicxx \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOSPRAY_INSTALL_DIR=/usr \
--DPARAVIEW_ENABLE_FFMPEG=ON \
--DPARAVIEW_ENABLE_MATPLOTLIB=ON \
--DPARAVIEW_ENABLE_PYTHON=ON \
--DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON \
--DPARAVIEW_QT_VERSION=5 \
--DPARAVIEW_USE_MPI=ON \
--DPARAVIEW_USE_VISITBRIDGE=ON \
--DPARAVIEW_USE_OSPRAY=ON \
--DVISIT_BUILD_READER_CGNS=ON \
--DVTK_PYTHON_FULL_THREADSAFE=ON \
--DVTK_PYTHON_VERSION=3 \
--DVTK_QT_VERSION=5 \
--DVTK_RENDERING_BACKEND=OpenGL2 \
--DVTK_SMP_IMPLEMENTATION_TYPE=OpenMP \
-${VTK_USE_SYSTEM_LIB} \
--GNinja
-
-ninja ${MAKEFLAGS}
-}
-
-package() {
-cd build
-
-DESTDIR="${pkgdir}" ninja install
-
-# Install license
-install -Dm644 "${srcdir}"/ParaView-v${pkgver}/License_v1.2.txt 
"${pkgdir}"/usr/share/licenses/paraview/LICENSE
-
-# Remove IceT man pages to avoid conflicts
-rm -- "${pkgdir}"/usr/share/man/man3/icet*.3
-rmdir "${pkgdir}"/usr/share/man/{man3/,}
-}

Copied: paraview/repos/community-x86_64/PKGBUILD (from rev 344216, 
paraview/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-20 19:31:44 UTC (rev 344217)
@@ -0,0 +1,104 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Oliver Goethel 
+# Contributor: eolianoe eolianoe 
+# Contributor: George Eleftheriou 
+# Contributor: Mathias Anselmann 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Thom

[arch-commits] Commit in paraview/repos/community-x86_64 (4 files)

2018-06-06 Thread Bruno Pagani via arch-commits
Date: Wednesday, June 6, 2018 @ 10:55:31
  Author: archange
Revision: 341146

archrelease: copy trunk to community-x86_64

Added:
  paraview/repos/community-x86_64/PKGBUILD
(from rev 341145, paraview/trunk/PKGBUILD)
  paraview/repos/community-x86_64/fix-qt5.11-headers.patch
(from rev 341145, paraview/trunk/fix-qt5.11-headers.patch)
Deleted:
  paraview/repos/community-x86_64/PKGBUILD
  paraview/repos/community-x86_64/fix-qt5.11-headers.patch

--+
 PKGBUILD |  208 +++
 fix-qt5.11-headers.patch |  240 ++---
 2 files changed, 224 insertions(+), 224 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-06 10:55:23 UTC (rev 341145)
+++ PKGBUILD2018-06-06 10:55:31 UTC (rev 341146)
@@ -1,104 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Oliver Goethel 
-# Contributor: eolianoe eolianoe 
-# Contributor: George Eleftheriou 
-# Contributor: Mathias Anselmann 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Michele Mocciola 
-# Contributor: Simon Zilliken 
-# Contributor: chuckdaniels
-
-_pkg=paraview
-_mpi=openmpi
-pkgname=${_pkg}
-#-${_mpi}
-pkgver=5.5.1
-pkgrel=1
-pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
-arch=('x86_64')
-url="https://www.paraview.org";
-license=('custom')
-depends=('qt5-tools' 'qt5-x11extras' 'ospray' 'ffmpeg' 'openmpi'
- 'cgns' 'python-pygments' 'protobuf' 'pugixml'
- 'python-matplotlib' 'python-numpy' 'python-mpi4py'
- 'boost-libs' 'glew' 'expat' 'freetype2'
- 'libjpeg' 'jsoncpp' 'libxml2' 'libpng'
- 'libtiff' 'zlib' 'hdf5-openmpi' 'lz4' 'netcdf')
-#netcdf-cxx gl2ps libharu
-#python-txaio python-hyperlink
-#proj apparently not used in this VTK configuration
-makedepends=('cmake' 'boost' 'mesa' 'gcc-fortran' 'ninja' 'qt5-tools' 
'qt5-xmlpatterns')
-source=("${url}/files/v${pkgver:0:3}/ParaView-v${pkgver}.tar.xz"
-'fix-qt5.11-headers.patch')
-sha256sums=('559f5a0d6947b19c42aed56018ff96158886c90d58b0204b8b6e5bc0288dd65f'
-'dcc44e0d7a92f2d8fe3e7a8956b62b0a3add4d67272070ee99d7a732e0999caa')
-
-prepare() {
-mkdir -p build
-cd ParaView-v${pkgver}/
-patch -p1 -i ../fix-qt5.11-headers.patch
-}
-
-build() {
-cd build
-
-# Flags to enable system libs in VTK building, as in VTK package
-# NETCDFCPP status?
-# GL2PS fails.
-# libharu blocked by https://github.com/libharu/libharu/pull/157
-# TXAIO HYPERLINK in a future VTK version
-# LIBPROJ4 apparently not used in this VTK configuration
-local VTK_USE_SYSTEM_LIB=""
-for lib in EXPAT FREETYPE JPEG PNG TIFF ZLIB LIBXML2 MPI4PY JSONCPP GLEW 
HDF5 LZ4 NETCDF
-do
-VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
-done
-# Specific system libs for ParaView version
-for lib in CGNS PUGIXML PROTOBUF PYGMENTS 
-do
-VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
-done
-
-cmake ../ParaView-v${pkgver} \
--DBUILD_DOCUMENTATION=OFF \
--DBUILD_EXAMPLES=ON \
--DBUILD_SHARED_LIBS=ON \
--DBUILD_TESTING=OFF \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_C_COMPILER=mpicc \
--DCMAKE_CXX_COMPILER=mpicxx \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOSPRAY_INSTALL_DIR=/usr \
--DPARAVIEW_ENABLE_FFMPEG=ON \
--DPARAVIEW_ENABLE_MATPLOTLIB=ON \
--DPARAVIEW_ENABLE_PYTHON=ON \
--DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON \
--DPARAVIEW_QT_VERSION=5 \
--DPARAVIEW_USE_MPI=ON \
--DPARAVIEW_USE_VISITBRIDGE=ON \
--DPARAVIEW_USE_OSPRAY=ON \
--DVISIT_BUILD_READER_CGNS=ON \
--DVTK_PYTHON_FULL_THREADSAFE=ON \
--DVTK_PYTHON_VERSION=3 \
--DVTK_QT_VERSION=5 \
--DVTK_RENDERING_BACKEND=OpenGL2 \
--DVTK_SMP_IMPLEMENTATION_TYPE=OpenMP \
-${VTK_USE_SYSTEM_LIB} \
--GNinja
-
-ninja ${MAKEFLAGS}
-}
-
-package() {
-cd build
-
-DESTDIR="${pkgdir}" ninja install
-
-# Install license
-install -Dm644 "${srcdir}"/ParaView-v${pkgver}/License_v1.2.txt 
"${pkgdir}"/usr/share/licenses/paraview/LICENSE
-
-# Remove IceT man pages to avoid conflicts
-rm -- "${pkgdir}"/usr/share/man/man3/icet*.3
-rmdir "${pkgdir}"/usr/share/man/{man3/,}
-}

Copied: paraview/repos/community-x86_64/PKGBUILD (from rev 341145, 
paraview/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-06 10:55:31 UTC (rev 341146)
@@ -0,0 +1,104 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Oliver Goethel 
+# Contributor: eolianoe eolianoe 
+# Contributor: George Eleftheriou 
+# Contributor: Mathias Anselmann 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Thoma

[arch-commits] Commit in paraview/repos/community-x86_64 (4 files)

2018-04-09 Thread Bruno Pagani via arch-commits
Date: Monday, April 9, 2018 @ 17:47:24
  Author: archange
Revision: 315452

archrelease: copy trunk to community-x86_64

Added:
  paraview/repos/community-x86_64/PKGBUILD
(from rev 315451, paraview/trunk/PKGBUILD)
Deleted:
  paraview/repos/community-x86_64/PKGBUILD
  paraview/repos/community-x86_64/jsoncpp-1.8.4.patch
  paraview/repos/community-x86_64/visit_fix_gcc7.patch

--+
 PKGBUILD |  209 +++--
 jsoncpp-1.8.4.patch  |   16 ---
 visit_fix_gcc7.patch |   43 --
 3 files changed, 100 insertions(+), 168 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-09 17:46:48 UTC (rev 315451)
+++ PKGBUILD2018-04-09 17:47:24 UTC (rev 315452)
@@ -1,109 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Oliver Goethel 
-# Contributor: eolianoe eolianoe 
-# Contributor: George Eleftheriou 
-# Contributor: Mathias Anselmann 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Michele Mocciola 
-# Contributor: Simon Zilliken 
-# Contributor: chuckdaniels
-
-_pkg=paraview
-_mpi=openmpi
-pkgname=${_pkg}
-#-${_mpi}
-pkgver=5.4.1
-pkgrel=2
-pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
-arch=('x86_64')
-url="https://www.paraview.org";
-license=('custom')
-depends=('qt5-tools' 'qt5-x11extras' 'ospray' 'ffmpeg' 'openmpi'
- 'cgns' 'python-pygments' 'protobuf' 'pugixml'
- 'python-matplotlib' 'python-numpy' 'python-mpi4py'
- 'python-six' 'python-constantly' 'python-twisted'
- 'python-autobahn' 'python-zope-interface' 'python-incremental'
- 'boost-libs' 'glew' 'expat' 'freetype2'
- 'libjpeg' 'jsoncpp' 'libxml2' 'libtheora' 'libpng'
- 'libtiff' 'zlib' 'hdf5-openmpi' 'lz4' 'netcdf')
-#netcdf-cxx gl2ps libharu
-#python-txaio python-hyperlink
-#proj apparently not used in this VTK configuration
-makedepends=('cmake' 'boost' 'mesa' 'gcc-fortran' 'ninja' 'qt5-tools' 
'qt5-xmlpatterns')
-source=("${url}/files/v${pkgver:0:3}/ParaView-v${pkgver}.tar.gz"
-'visit_fix_gcc7.patch'
-'jsoncpp-1.8.4.patch')
-sha256sums=('390d0f5dc66bf432e202a39b1f34193af4bf8aad2355338fa5e2778ea07a80e4'
-'d1daa5da6ec25c5a6bfcabb3cf0bf02ab97ec87a332886a2f42695072fe8568d'
-'ed9a99d5d0fb54f7506e819f6d54bd1b6cd7dd0e91647d9d06591ae300f9ef05')
-
-prepare() {
-mkdir -p build
-cd ParaView-v${pkgver}
-patch Utilities/VisItBridge/databases/readers/Vs/VsStaggeredField.C 
"${srcdir}"/visit_fix_gcc7.patch
-patch -p1 -i "${srcdir}"/jsoncpp-1.8.4.patch
-}
-
-build() {
-cd build
-
-# Flags to enable system libs in VTK building, as in VTK package
-# NETCDF NETCDFCPP status?
-# LIBPROJ4 UNUSED?
-# GL2PS fails.
-# libharu blocked by https://github.com/libharu/libharu/pull/157
-# TXAIO HYPERLINK in a future VTK version
-# LIBPROJ4 apparently not used in this VTK configuration
-local VTK_USE_SYSTEM_LIB=""
-for lib in EXPAT FREETYPE JPEG PNG TIFF ZLIB LIBXML2 OGGTHEORA TWISTED 
ZOPE SIX AUTOBAHN MPI4PY JSONCPP GLEW HDF5 CONSTANTLY INCREMENTAL LZ4 NETCDF
-do
-VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
-done
-# Specific system libs for ParaView version
-for lib in CGNS PUGIXML PROTOBUF PYGMENTS 
-do
-VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
-done
-
-cmake ../ParaView-v${pkgver} \
--DBUILD_DOCUMENTATION=OFF \
--DBUILD_EXAMPLES=ON \
--DBUILD_SHARED_LIBS=ON \
--DBUILD_TESTING=OFF \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_C_COMPILER=mpicc \
--DCMAKE_CXX_COMPILER=mpicxx \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOSPRAY_INSTALL_DIR=/usr \
--DPARAVIEW_ENABLE_FFMPEG=ON \
--DPARAVIEW_ENABLE_MATPLOTLIB=ON \
--DPARAVIEW_ENABLE_PYTHON=ON \
--DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON \
--DPARAVIEW_QT_VERSION=5 \
--DPARAVIEW_USE_MPI=ON \
--DPARAVIEW_USE_VISITBRIDGE=ON \
--DPARAVIEW_USE_OSPRAY=ON \
--DVISIT_BUILD_READER_CGNS=ON \
--DVTK_PYTHON_FULL_THREADSAFE=ON \
--DVTK_PYTHON_VERSION=3 \
--DVTK_QT_VERSION=5 \
--DVTK_RENDERING_BACKEND=OpenGL2 \
--DVTK_SMP_IMPLEMENTATION_TYPE=OpenMP \
-${VTK_USE_SYSTEM_LIB} \
--GNinja
-
-ninja ${MAKEFLAGS}
-}
-
-package() {
-cd build
-
-DESTDIR="${pkgdir}" ninja install
-
-# Install license
-install -Dm644 "${srcdir}"/ParaView-v${pkgver}/License_v1.2.txt 
"${pkgdir}"/usr/share/licenses/paraview/LICENSE
-
-# Remove IceT man pages to avoid conflicts
-rm -- "${pkgdir}"/usr/share/man/man3/icet*.3
-}

Copied: paraview/repos/community-x86_64/PKGBUILD (from rev 315451, 
paraview/trunk/PKGBUILD)
===
--- PKGBUILD