File: boot_extra.def

package info (click to toggle)
eccodes 2.45.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 154,404 kB
  • sloc: cpp: 162,953; ansic: 26,308; sh: 21,742; f90: 6,854; perl: 6,361; python: 5,172; java: 2,226; javascript: 1,427; yacc: 854; fortran: 543; lex: 359; makefile: 283; xml: 183; awk: 66
file content (20 lines) | stat: -rw-r--r-- 998 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Override this file to add your own additional definitions.
# e.g., check for ecCodes library version compatibility

# meta ecmwfLibraryVersion library_version() : string_type, hidden, read_only;
# 
# concept isCompatible(unknown) {
#     'yes' = { true=is_one_of(ecmwfLibraryVersion, '2.45.0', '2.44.0' ); }
#     'no' = { ecmwfLibraryVersion = '2.43.0'; }
# } : string_type, hidden, read_only;
# 
# if (isCompatible is 'unknown') {
#     print("/dev/stderr") "WARNING: ecCodes [ecmwfLibraryVersion] compatibility could not be determined. Please make sure ECCODES_DEFINITION_PATH environment variable is set correctly.";
# }
# 
# if (isCompatible is 'no') {
#     print("/dev/stderr") "ERROR: ecCodes [ecmwfLibraryVersion] is NOT compatible with loaded definitions. Please make sure ECCODES_DEFINITION_PATH environment variable is set correctly.";
#     assert(0 && "Quitting ...");
# }
#
# Please note: print("/dev/stderr") "..." may not work on Windows systems. Please use print "..." instead.