Update URLs

This commit is contained in:
Shahram Najm 2019-01-28 12:47:22 +00:00
parent afbcfd0d62
commit a3be721f1a
8 changed files with 17 additions and 27 deletions

View File

@ -419,7 +419,7 @@ endif()
# pkg-config
ecbuild_pkgconfig(
NAME eccodes
URL "https://software.ecmwf.int/wiki/display/ECC/"
URL "https://confluence.ecmwf.int/display/ECC/"
DESCRIPTION "The ecCodes library"
LIBRARIES eccodes
IGNORE_INCLUDE_DIRS ${PYTHON_INCLUDE_DIRS} ${NUMPY_INCLUDE_DIRS} ${NETCDF_INCLUDE_DIRS}
@ -430,7 +430,7 @@ ecbuild_pkgconfig(
if( HAVE_FORTRAN )
ecbuild_pkgconfig(
NAME eccodes_f90
URL "https://software.ecmwf.int/wiki/display/ECC/"
URL "https://confluence.ecmwf.int/display/ECC/"
LIBRARIES eccodes_f90 eccodes
DESCRIPTION "The ecCodes library for Fortran 90"
IGNORE_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/fortran ${PROJECT_BINARY_DIR}/fortran

View File

@ -1,4 +1,4 @@
The changelog is now online. Please see:
https://software.ecmwf.int/wiki/display/ECC/History+of+Changes
https://confluence.ecmwf.int/display/ECC/History+of+Changes

View File

@ -14,7 +14,7 @@ Installation using CMake
This is the recommended method of installation.
However it requires that cmake be installed on your system.
1. Download ecCodes from https://software.ecmwf.int/wiki/display/ECC/Releases
1. Download ecCodes from https://confluence.ecmwf.int/display/ECC/Releases
2. Unpack distribution:
> tar -xzf eccodes-x.y.z-Source.tar.gz
@ -52,5 +52,5 @@ In this mode the tests will take longer and you need to be connected to the inte
for the tests.
For more details, please see:
https://software.ecmwf.int/wiki/display/ECC/ecCodes+installation
https://confluence.ecmwf.int/display/ECC/ecCodes+installation

3
NEWS
View File

@ -1,2 +1 @@
See https://software.ecmwf.int/wiki/display/ECC/Latest+news
See https://confluence.ecmwf.int/display/ECC/Latest+news

View File

@ -19,12 +19,12 @@ It is designed to provide the user with a simple set of functions to access data
several formats with a key/value approach.
Documentation can be found here:
https://software.ecmwf.int/wiki/display/ECC/ecCodes+Home
https://confluence.ecmwf.int/display/ECC/ecCodes+Home
INSTALLATION
------------
1. Download ecCodes from https://software.ecmwf.int/wiki/display/ECC/Releases
1. Download ecCodes from https://confluence.ecmwf.int/display/ECC/Releases
2. Unpack distribution:
> tar -xzf eccodes-x.y.z-Source.tar.gz
@ -45,7 +45,7 @@ INSTALLATION
For more details, please see:
https://software.ecmwf.int/wiki/display/ECC/ecCodes+installation
https://confluence.ecmwf.int/display/ECC/ecCodes+installation
If you encounter any problems please send an e-mail with your problem to:

View File

@ -1,24 +1,15 @@
GRIB API Python bindings
ecCodes Python bindings
In order to enable the Python bindings in the build,
use the --enable-python configure flag.
use the -DENABLE_PYTHON=ON in the cmake step:
./configure --enable-python
cmake /path/to/src -DENABLE_PYTHON=ON
This will enable the build of the Python bindings with
NumPy support enabled. Python needs to be in the path
and, of course, the NumPy package installed.
To build the Python bindings without NumPy support, use
the --disable-numpy configure flag. This will result in
Python array objects being used for data handling.
On 'make install', the Python bindings will be installed under
'${GRIBAPI_install_dir}/lib/pythonX.X/site-packages/grib_api',
'${ecCodes_install_dir}/lib/pythonX.X/site-packages/eccodes',
where X.X is the version of python used to build the bindings.
Add this folder to your PYTHONPATH and you are ready to go.
For more information on the Python bindings, please visit our
website at:
http://www.ecmwf.int/publications/manuals/grib_api/

View File

@ -71,7 +71,7 @@ setup(name='eccodes',
author_email='Software.Support@ecmwf.int',
description="""Python interface for ecCodes""",
license='Apache License, Version 2.0',
url='https://software.ecmwf.int/wiki/display/ECC/ecCodes+Home',
download_url='https://software.ecmwf.int/wiki/display/ECC/Releases',
url='https://confluence.ecmwf.int/display/ECC/ecCodes+Home',
download_url='https://confluence.ecmwf.int/display/ECC/Releases',
ext_modules=[Extension('gribapi._gribapi_swig', **attdict)],
packages=['eccodes', 'eccodes.high_level', 'gribapi'])

View File

@ -71,7 +71,7 @@ setup(name='eccodes',
author_email='Software.Support@ecmwf.int',
description="""Python 3 interface for ecCodes""",
license='Apache License, Version 2.0',
url='https://software.ecmwf.int/wiki/display/ECC/ecCodes+Home',
download_url='https://software.ecmwf.int/wiki/display/ECC/Releases',
url='https://confluence.ecmwf.int/display/ECC/ecCodes+Home',
download_url='https://confluence.ecmwf.int/display/ECC/Releases',
ext_modules=[Extension('gribapi._gribapi_swig', **attdict)],
packages=['eccodes', 'eccodes.high_level', 'gribapi'])