-
Notifications
You must be signed in to change notification settings - Fork 149
add documentation on deprecated easyconfigs/toolchains #468
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
dc3d31f
add documentation on deprecated easyconfigs/toolchains
boegel 12d4271
bump docs version to 20181114.01
boegel bee5ca2
add link to page on deprecated easyconfigs on landing page
boegel 09ccdf7
disable syntax highlighting for warnings/errors in documentation for …
boegel d29a08e
another attempt to disable highlighting of warnings/errors
boegel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| .. _deprecated_easyconfigs: | ||
|
|
||
| Deprecated easyconfigs | ||
| ====================== | ||
|
|
||
| Since EasyBuild v3.8.0, individual easyconfig files or particular (versions of) toolchains can be marked as deprecated. | ||
|
|
||
| .. contents:: | ||
| :depth: 3 | ||
| :backlinks: none | ||
|
|
||
|
|
||
| .. _deprecated_easyconfigs_symptoms: | ||
|
|
||
| Symptoms | ||
| -------- | ||
|
|
||
| Using an easyconfig file or toolchain that was marked as deprecated results in a warning message like: | ||
|
|
||
| :: | ||
|
|
||
| WARNING: Deprecated functionality, will no longer work in v4.0: easyconfig file '/home/example/test.eb' is marked as deprecated: | ||
| This is an example message explaining why the easyconfig file was deprecated. | ||
| (see also http://easybuild.readthedocs.org/en/latest/Deprecated-easyconfigs.html) | ||
|
|
||
| Or, in case you are trying to use an easyconfig file or toolchain that was marked deprecated in a previous major version | ||
| of EasyBuild: | ||
|
|
||
| :: | ||
|
|
||
| ERROR: Failed to process easyconfig /home/example/test.eb: DEPRECATED (since v4.0) functionality used: easyconfig file '/home/example/test.eb' is marked as deprecated: | ||
| This is an example message explaining why the easyconfig file was deprecated. | ||
| (see also http://easybuild.readthedocs.org/en/latest/Deprecated-easyconfigs.html) | ||
|
|
||
|
|
||
| .. _deprecated_easyconfigs_why: | ||
|
|
||
| Reasons for deprecation | ||
| ----------------------- | ||
|
|
||
| There are several possible reasons why a particular easyconfig file or toolchain was deprecated, some of which include: | ||
|
|
||
| * old/obsolete versions of software or toolchain components | ||
| * toolchains that are superseded by other toolchains | ||
| * known installation problems that are hard to resolve (or not worth the effort to resolve) | ||
|
|
||
|
|
||
| .. _deprecated_easyconfigs_implications: | ||
|
|
||
| Implications | ||
| ------------ | ||
|
|
||
| Easyconfig files that are deprecated or which use a deprecated toolchain are *not actively maintained*, | ||
| and are *no longer included in the EasyBuild regression test* (which means they may be broken by recent changes | ||
| to the EasyBuild framework or relevant easyblocks). | ||
|
|
||
| In a future major version of EasyBuild, these easyconfig files will be archived (see also :ref:`archived_easyconfigs`). | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These blocks are being syntax highlighted (for Python I think). Not a sphinx expert but should be easy to switch off.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You would expect this to be easy to fix, turns out it's not...
With
.. code:: none, the block is not displayed at all, with.. code:: textI'm still getting highlighting.I'll keep poking at it, thanks for pointing this out, it indeed looks a bit silly this way...