diff options
author | Haowen Liu <liu.haowen.andy@gmail.com> | 2021-08-31 12:54:50 -0700 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2021-09-01 09:02:00 +0200 |
commit | 9d1e1d730400f04305da1a848dd05a18c6abf6c4 (patch) | |
tree | 18f4fb7574b097f6f25545494f339b6b7ffb11c9 /builds.sr.ht | |
parent | 846e56c4a602d7ddd5a9c1baa4f83251332fe67e (diff) | |
download | sr.ht-docs-9d1e1d730400f04305da1a848dd05a18c6abf6c4.tar.gz |
compatibility: add rockylinux
Diffstat (limited to 'builds.sr.ht')
-rw-r--r-- | builds.sr.ht/compatibility.md | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/builds.sr.ht/compatibility.md b/builds.sr.ht/compatibility.md index 327b6eb..e65c479 100644 --- a/builds.sr.ht/compatibility.md +++ b/builds.sr.ht/compatibility.md @@ -904,6 +904,56 @@ The packages array is installed with `pkg_add`. Custom package repositories are not supported on OpenBSD builds. +## Rocky Linux + +Maintainer: Haowen Liu <liu.haowen.andy@gmail.com> + +<table class="table table-sm table-hover"> + <thead> + <tr> + <th>Rocky Linux 8</th> + <th colspan="3" style="font-weight: normal; text-align: center"> + <code>image: rockylinux/latest</code> <strong>or</strong> + <code>image: rockylinux/8</code> + </th> + </tr> + <tr> + <th>arch</th> + <th style="text-align: center">supported</th> + <th style="text-align: center">native</th> + <th>updated</th> + </tr> + </thead> + <tbody> + <tr><td><code>arch: aarch64</code></td><td style="text-align: center"></td><td></td><td></td></tr> + <tr><td><code>arch: armhfp</code></td><td style="text-align: center"></td><td></td><td></td></tr> + <tr class="table-primary"> + <td><code>arch: x86_64</code> (default)</td> + <td style="text-align: center; color: green">✓</td> + <td style="text-align: center; color: green">✓</td> + <td>weekly</td> + </tr> + </tbody> +</table> + +**packages** + +The packages array is installed with `dnf install`. + +**repositories** + +Given the following list of repositories in your manifest: + +```yaml +repositories: + example: https://example.org +``` + +The following commands will be used to configure it: + + dnf config-manager --add-repo https://example.org + dnf config-manager --set-enabled example + ## Ubuntu Maintainer: New maintainer wanted; [email sr.ht-discuss](https://lists.sr.ht/~sircmpwn/sr.ht-discuss) to express interest |