Skip to content

Commit 2f967ae

Browse files
committed
Refactored constant names and roles.
- Constants are now split into dev, bin, and lib sets. - Names are slightly simplified.
1 parent 5b191c8 commit 2f967ae

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

easybuild/framework/easyconfig/constants.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,12 @@
5252
'SYS_PYTHON_VERSION': (platform.python_version(), "System Python version (platform.python_version())"),
5353
'SYSTEM': ({'name': 'system', 'version': 'system'}, "System toolchain"),
5454

55-
'OSPACKAGES_IBVERBS': (('libibverbs-dev', 'libibverbs-devel', 'rdma-core-devel'),
56-
"OS packages providing ibverbs support"),
57-
'OSPACKAGES_OPENSSL': (('openssl-devel', 'libssl-dev', 'libopenssl-devel'),
58-
"OS packages providing openSSL support"),
55+
'OS_PKG_IBVERBS_DEV': (('libibverbs-dev', 'libibverbs-devel', 'rdma-core-devel'),
56+
"OS packages providing ibverbs/infiniband development support"),
57+
'OS_PKG_OPENSSL_BIN': (('openssl'),
58+
"OS packages providing the openSSL binary"),
59+
'OS_PKG_OPENSSL_LIB': (('libssl', 'libopenssl'),
60+
"OS packages providing openSSL libraries"),
61+
'OS_PKG_OPENSSL_DEV': (('openssl-devel', 'libssl-dev', 'libopenssl-devel'),
62+
"OS packages providing openSSL developement support"),
5963
}

0 commit comments

Comments
 (0)