[arch-commits] Commit in mayavi/repos (5 files)

Felix Yan felixonmars at gemini.archlinux.org
Fri Dec 10 05:09:44 UTC 2021


    Date: Friday, December 10, 2021 @ 05:09:44
  Author: felixonmars
Revision: 1065973

archrelease: copy trunk to community-staging-x86_64

Added:
  mayavi/repos/community-staging-x86_64/
  mayavi/repos/community-staging-x86_64/PKGBUILD
    (from rev 1065972, mayavi/trunk/PKGBUILD)
  mayavi/repos/community-staging-x86_64/disable-openvdb-and-openvr.patch
    (from rev 1065972, mayavi/trunk/disable-openvdb-and-openvr.patch)
  mayavi/repos/community-staging-x86_64/mayavi.csh
    (from rev 1065972, mayavi/trunk/mayavi.csh)
  mayavi/repos/community-staging-x86_64/mayavi.sh
    (from rev 1065972, mayavi/trunk/mayavi.sh)

----------------------------------+
 PKGBUILD                         |  104 +++++++++++++++++++++++++++++++++++++
 disable-openvdb-and-openvr.patch |   27 +++++++++
 mayavi.csh                       |    1 
 mayavi.sh                        |    1 
 4 files changed, 133 insertions(+)

Copied: mayavi/repos/community-staging-x86_64/PKGBUILD (from rev 1065972, mayavi/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2021-12-10 05:09:44 UTC (rev 1065973)
@@ -0,0 +1,104 @@
+# Maintainer: Andrzej Giniewicz <gginiu at gmail.com>
+# Contributor: Jingbei Li <i at jingbei.li>
+
+pkgname=mayavi
+pkgver=4.7.4
+pkgrel=1
+pkgdesc="A 3-dimensional visualizer of scientific data"
+arch=('x86_64')
+url="https://github.com/enthought/mayavi"
+license=('BSD')
+depends=('vtk' 'python-envisage' 'python-traitsui' 'python-configobj' 'python-pyqt5' 'pdal' 'unixodbc' 'pugixml' 'openmpi' 'ffmpeg' 'python-numpy'
+         'fmt' 'ospray' 'openvr' 'liblas' 'cgns' 'adios2' 'libharu' 'gl2ps')
+makedepends=('python-setuptools' 'python-sphinx' 'python-twisted' 'xorg-server-xvfb' 'qt5-svg' 'glew' 'proj')
+replaces=('python-mayavi')
+provides=('python-mayavi')
+options=(!emptydirs)
+
+source=("$pkgname-$pkgver.tar.gz::https://github.com/enthought/mayavi/archive/${pkgver}.tar.gz"
+        "disable-openvdb-and-openvr.patch"
+        "mayavi.sh" "mayavi.csh")
+sha256sums=('44f144a5646e81b7eb0668a8b1ac383a847e634f6f4c306b4629e32587080467'
+            'fc3eb33dde9541986a37aa91b7d80aca5754a39a0370688c1f0a5d06d3364853'
+            'abb34e78105abf15197bdd05c02ba3b080755d46aa81e4cfaeaba4994d05effe'
+            '034b36bf9d279d926c39c858bf18992e34de880725d778f8435b293259f4775d')
+
+prepare() {
+  cd "$srcdir"/mayavi-$pkgver
+
+  # skip vtk 9.1.0 classes which cause segfaults
+  patch -Np1 -i ../disable-openvdb-and-openvr.patch
+
+  # fix wrong-file-end-of-line-encoding
+  for file in *.txt examples/mayavi/data/room_vis.wrl examples/tvtk/dscene.py \
+    examples/mayavi/interactive/wx_mayavi_embed*.py ; do
+    sed "s|\r||g" $file > $file.new && \
+    touch -r $file $file.new && \
+    mv $file.new $file
+  done
+
+  # file-not-utf8
+  for file in *.txt docs/*.txt; do
+    iconv -f ISO-8859-1 -t UTF-8 -o $file.new $file && \
+    touch -r $file $file.new && \
+    mv $file.new $file
+  done
+
+  # remove exec permission
+  find examples -type f -exec chmod 0644 {} ";"
+  chmod 0644 mayavi/tests/data/cellsnd.ascii.inp
+
+  # set path so autodoc can find just built modules
+  echo "import sys" >> docs/source/mayavi/conf.py
+  echo "sys.path.append('$srcdir/mayavi-$pkgver/build/lib.linux-$CARCH-3.10/')" >> docs/source/mayavi/conf.py
+}
+
+build() {
+  cd "$srcdir"/mayavi-$pkgver
+
+  rm -rf build
+  mkdir build
+  mkdir -p build/lib.linux-$CARCH-3.10/{tvtk/plugins/scene,mayavi/preferences,mayavi/core}
+  ln -s "$srcdir"/enthought-mayavi-${_githubtag}/tvtk/tvtk_classes.zip \
+    build/lib.linux-$CARCH-3.10/tvtk/tvtk_classes.zip
+  ln -s "$srcdir"/enthought-mayavi-${_githubtag}/mayavi/preferences/preferences.ini \
+    build/lib.linux-$CARCH-3.10/mayavi/preferences/preferences.ini
+  ln -s "$srcdir"/enthought-mayavi-${_githubtag}/tvtk/plugins/scene/preferences.ini \
+    build/lib.linux-$CARCH-3.10/tvtk/plugins/scene/preferences.ini
+
+  export ETS_TOOLKIT="qt"
+  # now this is ugly, but docs do not build without X. We setup X according to:
+  # http://docs.enthought.com/mayavi/mayavi/tips.html#rendering-using-the-virtual-framebuffer
+  xvfb-run python setup.py build
+
+  rm build/lib.linux-$CARCH-3.10/tvtk/tvtk_classes.zip
+  rm build/lib.linux-$CARCH-3.10/mayavi/preferences/preferences.ini
+  rm build/lib.linux-$CARCH-3.10/tvtk/plugins/scene/preferences.ini
+}
+
+package() {
+  cd "$srcdir"/mayavi-$pkgver
+
+  python setup.py install --skip-build --root="$pkgdir"/ --optimize=1
+
+  # remove useless files
+  rm -f "${pkgdir}"/usr/lib/python3.10/site-packages/tvtk/setup.py*
+  find "${pkgdir}" -name \.buildinfo -type f -print | xargs rm -f -
+
+  # non-executable-script
+  chmod +x "${pkgdir}"/usr/lib/python3.10/site-packages/mayavi/tests/runtests.py
+
+  # install manpage
+  mkdir -p "${pkgdir}"/usr/share/man/man1
+  cp -p docs/mayavi2.man "${pkgdir}"/usr/share/man/man1/mayavi2.1
+
+  # Force Qt
+  install -d "${pkgdir}"/etc/profile.d
+  install -Dm644 "${srcdir}"/mayavi.sh "${pkgdir}"/etc/profile.d/mayavi.sh
+  install -Dm644 "${srcdir}"/mayavi.csh "${pkgdir}"/etc/profile.d/mayavi.csh
+
+  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  # Cannot find vtk
+  sed -i '/vtk/d' "$pkgdir"/usr/lib/python3.10/site-packages/mayavi-${pkgver}-py3.10.egg-info/requires.txt
+}

Copied: mayavi/repos/community-staging-x86_64/disable-openvdb-and-openvr.patch (from rev 1065972, mayavi/trunk/disable-openvdb-and-openvr.patch)
===================================================================
--- community-staging-x86_64/disable-openvdb-and-openvr.patch	                        (rev 0)
+++ community-staging-x86_64/disable-openvdb-and-openvr.patch	2021-12-10 05:09:44 UTC (rev 1065973)
@@ -0,0 +1,27 @@
+diff -upr mayavi-4.7.4.orig/tvtk/vtk_module.py mayavi-4.7.4/tvtk/vtk_module.py
+--- mayavi-4.7.4.orig/tvtk/vtk_module.py	2021-11-13 15:54:28.000000000 +0200
++++ mayavi-4.7.4/tvtk/vtk_module.py	2021-12-10 06:58:30.885406494 +0200
+@@ -33,8 +33,22 @@ if vtk_version in ['9.0.3', '9.0.2']:
+     del vtkDataEncoder, vtkWebApplication
+ 
+ if vtk_version == '9.1.0':
+-    SKIP = ['vtkOpenGLAvatar']
++    SKIP = ['vtkOpenGLAvatar',
++            'vtkOpenVDBWriter',
++            'vtkOpenVRCamera',
++            'vtkOpenVRControlsHelper',
++            'vtkOpenVRDefaultOverlay',
++            'vtkOpenVRInteractorStyle',
++            'vtkOpenVRModel',
++            'vtkOpenVROverlay',
++            'vtkOpenVRRenderWindow',
++            'vtkOpenVRRenderWindowInteractor',
++            'vtkOpenVRRenderer']
+     try:
+         del vtkOpenGLAvatar
+     except NameError:
+         pass
++    del vtkOpenVDBWriter, vtkOpenVRCamera, vtkOpenVRControlsHelper, \
++        vtkOpenVRDefaultOverlay, vtkOpenVRInteractorStyle, vtkOpenVRModel, \
++        vtkOpenVROverlay, vtkOpenVRRenderWindow, \
++        vtkOpenVRRenderWindowInteractor, vtkOpenVRRenderer

Copied: mayavi/repos/community-staging-x86_64/mayavi.csh (from rev 1065972, mayavi/trunk/mayavi.csh)
===================================================================
--- community-staging-x86_64/mayavi.csh	                        (rev 0)
+++ community-staging-x86_64/mayavi.csh	2021-12-10 05:09:44 UTC (rev 1065973)
@@ -0,0 +1 @@
+setenv ETS_TOOLKIT "qt"

Copied: mayavi/repos/community-staging-x86_64/mayavi.sh (from rev 1065972, mayavi/trunk/mayavi.sh)
===================================================================
--- community-staging-x86_64/mayavi.sh	                        (rev 0)
+++ community-staging-x86_64/mayavi.sh	2021-12-10 05:09:44 UTC (rev 1065973)
@@ -0,0 +1 @@
+export ETS_TOOLKIT="qt"



More information about the arch-commits mailing list