Update for 'eccodes'. (#5899)
This commit is contained in:
parent
5d3a774587
commit
ce8a698b48
@ -0,0 +1,26 @@
|
|||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index bf4d78b..ea2f3e9 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -162,8 +162,6 @@ if( ENABLE_JPG )
|
||||||
|
set(CMAKE_PREFIX_PATH ${_CMAKE_PREFIX_PATH}) # Restore CMAKE_PREFIX_PATH
|
||||||
|
set(CMAKE_WARN_DEPRECATED ON) # Remove suppression
|
||||||
|
|
||||||
|
- find_package( OpenJPEG )
|
||||||
|
-
|
||||||
|
if( JASPER_FOUND )
|
||||||
|
list( APPEND ECCODES_TPLS Jasper )
|
||||||
|
set( HAVE_JPEG 1 )
|
||||||
|
@@ -172,12 +170,6 @@ if( ENABLE_JPG )
|
||||||
|
string(REGEX REPLACE "^([0-9]+)\\.[0-9]+\\.[0-9]+.*" "\\1" JASPER_VERSION_MAJOR "${JASPER_VERSION_STRING}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
- if( OPENJPEG_FOUND )
|
||||||
|
- list( APPEND ECCODES_TPLS OpenJPEG )
|
||||||
|
- set( HAVE_JPEG 1 )
|
||||||
|
- set( HAVE_LIBOPENJPEG 1 )
|
||||||
|
- endif()
|
||||||
|
-
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
@ -0,0 +1,32 @@
|
|||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index bf4d78b..3ae50ba 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -151,27 +151,8 @@ set( HAVE_LIBOPENJPEG 0 )
|
||||||
|
|
||||||
|
if( ENABLE_JPG )
|
||||||
|
|
||||||
|
- # Note: This is a deprecated feature but we need it to find Jasper at ECMWF.
|
||||||
|
- # ecbuild_add_extra_search_paths modifies CMAKE_PREFIX_PATH
|
||||||
|
- # which can affect future package discovery if not undone by the caller.
|
||||||
|
- # The current CMAKE_PREFIX_PATH is backed up as _CMAKE_PREFIX_PATH
|
||||||
|
- #
|
||||||
|
- set(CMAKE_WARN_DEPRECATED OFF) # Suppress deprecation message
|
||||||
|
- ecbuild_add_extra_search_paths( jasper )
|
||||||
|
- find_package( Jasper )
|
||||||
|
- set(CMAKE_PREFIX_PATH ${_CMAKE_PREFIX_PATH}) # Restore CMAKE_PREFIX_PATH
|
||||||
|
- set(CMAKE_WARN_DEPRECATED ON) # Remove suppression
|
||||||
|
-
|
||||||
|
find_package( OpenJPEG )
|
||||||
|
|
||||||
|
- if( JASPER_FOUND )
|
||||||
|
- list( APPEND ECCODES_TPLS Jasper )
|
||||||
|
- set( HAVE_JPEG 1 )
|
||||||
|
- set( HAVE_LIBJASPER 1 )
|
||||||
|
- # Extract Jasper's major version number to enable conditional code. See ECC-396
|
||||||
|
- string(REGEX REPLACE "^([0-9]+)\\.[0-9]+\\.[0-9]+.*" "\\1" JASPER_VERSION_MAJOR "${JASPER_VERSION_STRING}")
|
||||||
|
- endif()
|
||||||
|
-
|
||||||
|
if( OPENJPEG_FOUND )
|
||||||
|
list( APPEND ECCODES_TPLS OpenJPEG )
|
||||||
|
set( HAVE_JPEG 1 )
|
@ -34,37 +34,61 @@ class Eccodes(CMakePackage):
|
|||||||
url = "https://software.ecmwf.int/wiki/download/attachments/45757960/eccodes-2.2.0-Source.tar.gz?api=v2"
|
url = "https://software.ecmwf.int/wiki/download/attachments/45757960/eccodes-2.2.0-Source.tar.gz?api=v2"
|
||||||
list_url = "https://software.ecmwf.int/wiki/display/ECC/Releases"
|
list_url = "https://software.ecmwf.int/wiki/display/ECC/Releases"
|
||||||
|
|
||||||
|
version('2.5.0', '5a7e92c58418d855082fa573efd352aa')
|
||||||
version('2.2.0', 'b27e6f0a3eea5b92dac37372e4c45a62')
|
version('2.2.0', 'b27e6f0a3eea5b92dac37372e4c45a62')
|
||||||
|
|
||||||
variant('netcdf', default=True,
|
variant('netcdf', default=False,
|
||||||
description="Support GRIB to NetCDF conversion")
|
description='Enable GRIB to NetCDF conversion tool')
|
||||||
variant('jpeg', default=True,
|
variant('jp2k', default='openjpeg', values=('openjpeg', 'jasper', 'none'),
|
||||||
description="Support JPEG2000 encoding/decoding")
|
description='Specify JPEG2000 decoding/encoding backend')
|
||||||
variant('png', default=True,
|
variant('png', default=False,
|
||||||
description="Support PNG encoding/decoding")
|
description='Enable PNG support for decoding/encoding')
|
||||||
variant('python', default=False,
|
variant('aec', default=False,
|
||||||
description="Build the eccodes Python interface")
|
description='Enable Adaptive Entropy Coding for decoding/encoding')
|
||||||
variant('pthreads', default=False,
|
variant('pthreads', default=False,
|
||||||
description="Enable POSIX threads")
|
description='Enable POSIX threads')
|
||||||
variant('openmp', default=False,
|
variant('openmp', default=False,
|
||||||
description="Enable OpenMP threads")
|
description='Enable OpenMP threads')
|
||||||
variant('memfs', default=False,
|
variant('memfs', default=False,
|
||||||
description="Memory based access to definitions/samples")
|
description='Enable memory based access to definitions/samples')
|
||||||
|
variant('python', default=False,
|
||||||
|
description='Enable the Python interface')
|
||||||
|
variant('fortran', default=True, description='Enable the Fortran support')
|
||||||
variant('build_type', default='RelWithDebInfo',
|
variant('build_type', default='RelWithDebInfo',
|
||||||
description='The build type to build',
|
description='The build type to build',
|
||||||
values=('Debug', 'Release', 'RelWithDebInfo', 'Production'))
|
values=('Debug', 'Release', 'RelWithDebInfo', 'Production'))
|
||||||
|
|
||||||
depends_on('netcdf', when='+netcdf')
|
depends_on('netcdf', when='+netcdf')
|
||||||
depends_on('openjpeg', when='+jpeg')
|
depends_on('openjpeg', when='jp2k=openjpeg')
|
||||||
|
depends_on('jasper', when='jp2k=jasper')
|
||||||
depends_on('libpng', when='+png')
|
depends_on('libpng', when='+png')
|
||||||
depends_on('py-numpy', when='+python')
|
depends_on('libaec', when='+aec')
|
||||||
|
depends_on('python@:2', when='+python')
|
||||||
|
depends_on('py-numpy', when='+python', type=('build', 'run'))
|
||||||
extends('python', when='+python')
|
extends('python', when='+python')
|
||||||
|
|
||||||
|
conflicts('+openmp', when='+pthreads',
|
||||||
|
msg='Cannot enable both POSIX threads and OMP')
|
||||||
|
|
||||||
|
# The following enforces linking against the specified JPEG2000 backend.
|
||||||
|
patch('enable_only_openjpeg.patch', when='jp2k=openjpeg')
|
||||||
|
patch('enable_only_jasper.patch', when='jp2k=jasper')
|
||||||
|
|
||||||
def cmake_args(self):
|
def cmake_args(self):
|
||||||
variants = ['+netcdf', '+jpeg', '+png', '+python',
|
variants = ['+netcdf', '+png', '+aec', '+pthreads',
|
||||||
'+pthreads', '+openmp', '+memfs']
|
'+openmp', '+memfs', '+python', '+fortran']
|
||||||
options = ['NETCDF', 'JPG', 'PNG', 'PYTHON',
|
options = ['NETCDF', 'PNG', 'AEC', 'ECCODES_THREADS',
|
||||||
'ECCODES_THREADS', 'ECCODES_OMP_THREADS', 'MEMFS']
|
'ECCODES_OMP_THREADS', 'MEMFS', 'PYTHON', 'FORTRAN']
|
||||||
return map(lambda variant, option: "-DENABLE_%s=%s" %
|
|
||||||
(option, 'YES' if variant in self.spec else 'NO'),
|
args = map(lambda var, opt:
|
||||||
variants, options)
|
"-DENABLE_%s=%s" %
|
||||||
|
(opt, 'ON' if var in self.spec else 'OFF'),
|
||||||
|
variants,
|
||||||
|
options)
|
||||||
|
|
||||||
|
if self.spec.variants['jp2k'].value == 'none':
|
||||||
|
args.append('-DENABLE_JPG=OFF')
|
||||||
|
else:
|
||||||
|
args.append('-DENABLE_JPG=ON')
|
||||||
|
|
||||||
|
return args
|
||||||
|
Loading…
Reference in New Issue
Block a user