From 706d713786d66313bf9a2eeb0d874c575f290994 Mon Sep 17 00:00:00 2001
From: Mark Olesen <Mark.Olesen@esi-group.com>
Date: Thu, 17 Jan 2019 10:53:44 +0100
Subject: [PATCH] CONFIG: drop config support for deprecated ensight reader
 library

---
 etc/README.md          |  1 -
 etc/config.csh/ensight | 40 ----------------------------------------
 etc/config.csh/setup   |  1 -
 etc/config.sh/ensight  | 42 ------------------------------------------
 etc/config.sh/setup    |  1 -
 5 files changed, 85 deletions(-)
 delete mode 100644 etc/config.csh/ensight
 delete mode 100644 etc/config.sh/ensight

diff --git a/etc/README.md b/etc/README.md
index d638115c48f..f12e3f2d6b3 100644
--- a/etc/README.md
+++ b/etc/README.md
@@ -14,7 +14,6 @@ These source the following files in the `config.sh/` or
 * `aliases` : aliases for interactive shells
 * `unset` : sourced to clear as many OpenFOAM environment settings as possible
 * `mpi` : MPI communications library settings
-* `ensight` : application settings for EnSight
 * `paraview` : application settings for ParaView
 * `scotch` : application settings for compiling against scotch
 * `metis` : application settings for compiling against metis
diff --git a/etc/config.csh/ensight b/etc/config.csh/ensight
deleted file mode 100644
index a840cbda12e..00000000000
--- a/etc/config.csh/ensight
+++ /dev/null
@@ -1,40 +0,0 @@
-#----------------------------------*-sh-*--------------------------------------
-# =========                 |
-# \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
-#  \\    /   O peration     |
-#   \\  /    A nd           | Copyright (C) 2011-2016 OpenFOAM Foundation
-#    \\/     M anipulation  |
-#-------------------------------------------------------------------------------
-# License
-#     This file is part of OpenFOAM, licensed under GNU General Public License
-#     <http://www.gnu.org/licenses/>.
-#
-# File
-#     etc/config.csh/ensight
-#     - sourced by OpenFOAM-*/etc/cshrc
-#
-# Description
-#     Setup for ENSIGHT
-#
-#------------------------------------------------------------------------------
-
-# Fallback value
-if (! $?CEI_HOME ) then
-    setenv CEI_HOME /usr/local/ensight/CEI
-endif
-
-if ( -r $CEI_HOME ) then
-
-    # Special treatment for 32bit OpenFOAM and 64bit Ensight
-    if ($WM_ARCH-`uname -m` == linux-x86_64) setenv CEI_ARCH linux_2.6_32
-
-    # Add to path
-    setenv PATH ${CEI_HOME}/bin:${PATH}
-
-    setenv ENSIGHT9_INPUT dummy
-    setenv ENSIGHT9_READER $FOAM_LIBBIN
-else
-    unsetenv CEI_HOME
-endif
-
-#------------------------------------------------------------------------------
diff --git a/etc/config.csh/setup b/etc/config.csh/setup
index 9b06d1818ed..8d2833c8c91 100644
--- a/etc/config.csh/setup
+++ b/etc/config.csh/setup
@@ -139,7 +139,6 @@ _foamEtc -config  settings
 _foamEtc -config  mpi
 _foamEtc -config  paraview -- "$FOAM_SETTINGS"  # Pass through for evaluation
 _foamEtc -config  vtk
-_foamEtc -config  ensight
 ## _foamEtc -config  ADIOS
 ## _foamEtc -config  ADIOS2
 _foamEtc -config  CGAL
diff --git a/etc/config.sh/ensight b/etc/config.sh/ensight
deleted file mode 100644
index 933aa6c9df2..00000000000
--- a/etc/config.sh/ensight
+++ /dev/null
@@ -1,42 +0,0 @@
-#----------------------------------*-sh-*--------------------------------------
-# =========                 |
-# \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
-#  \\    /   O peration     |
-#   \\  /    A nd           | Copyright (C) 2011-2016 OpenFOAM Foundation
-#    \\/     M anipulation  |
-#------------------------------------------------------------------------------
-# License
-#     This file is part of OpenFOAM, licensed under GNU General Public License
-#     <http://www.gnu.org/licenses/>.
-#
-# File
-#     etc/config.sh/ensight
-#     - sourced by OpenFOAM-*/etc/bashrc
-#
-# Description
-#     Setup for ENSIGHT
-#
-#------------------------------------------------------------------------------
-
-# Fallback value
-[ -d "$CEI_HOME" ] || export CEI_HOME=/usr/local/ensight/CEI
-
-if [ -r $CEI_HOME ]
-then
-
-    # Special treatment for 32bit OpenFOAM and 64bit Ensight
-    [ "$WM_ARCH-$(uname -m)" = linux-x86_64 ] && export CEI_ARCH=linux_2.6_32
-
-    # Add to path if required
-    if [ "$CEI_HOME/bin/ensight" != "$(command -v ensight)" ]
-    then
-        export PATH=$CEI_HOME/bin:$PATH
-    fi
-
-    export ENSIGHT9_INPUT=dummy
-    export ENSIGHT9_READER=$FOAM_LIBBIN
-else
-    unset CEI_HOME
-fi
-
-#------------------------------------------------------------------------------
diff --git a/etc/config.sh/setup b/etc/config.sh/setup
index 67673352186..ed692ec2595 100644
--- a/etc/config.sh/setup
+++ b/etc/config.sh/setup
@@ -119,7 +119,6 @@ _foamEtc -config  settings
 _foamEtc -config  mpi
 _foamEtc -config  paraview -- "$@"  # Pass through for evaluation
 _foamEtc -config  vtk
-_foamEtc -config  ensight
 _foamEtc -config  gperftools
 ## _foamEtc -config  ADIOS
 ## _foamEtc -config  ADIOS2
-- 
GitLab