Compare commits
6 Commits
e356431b72
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b4ffdb6560 | ||
| 7032898a60 | |||
|
|
1ba181a084 | ||
|
|
4d7c526b0e | ||
|
|
c494e55e35 | ||
|
|
24ad0e6861 |
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
@@ -42,7 +42,7 @@ spec:
|
||||
parameters {
|
||||
string(
|
||||
name: 'VERSIONS',
|
||||
defaultValue: '8.10 9.6 10.1',
|
||||
defaultValue: '8.10 9.7 10.1',
|
||||
description: 'Rocky Linux versions to build (space-separated)'
|
||||
)
|
||||
string(
|
||||
@@ -103,10 +103,9 @@ docker run --rm \
|
||||
-v "$(pwd)/tmp:/data/tmp" \
|
||||
rocky-man:${BUILD_NUMBER} \
|
||||
--versions ${VERSIONS} \
|
||||
--verbose \
|
||||
--parallel-downloads ${PARALLEL_DOWNLOADS} \
|
||||
--parallel-conversions ${PARALLEL_CONVERSIONS} \
|
||||
--existing-versions "${EXISTING_VERSIONS}"
|
||||
--existing-versions ${EXISTING_VERSIONS}
|
||||
'''
|
||||
}
|
||||
}
|
||||
@@ -128,7 +127,7 @@ docker run --rm \
|
||||
-e B2_APPLICATION_KEY \
|
||||
-e B2_APPLICATION_KEY_ID \
|
||||
backblazeit/b2:latest \
|
||||
b2v4 sync /workspace/html/ "b2://${B2_BUCKET_NAME}/"
|
||||
b2v4 sync --compare-versions size /workspace/html/ "b2://${B2_BUCKET_NAME}/"
|
||||
'''
|
||||
}
|
||||
}
|
||||
|
||||
42
README.md
42
README.md
@@ -162,40 +162,38 @@ usage: rocky-man [-h] [--versions VERSIONS [VERSIONS ...]]
|
||||
|
||||
Generate HTML documentation for Rocky Linux man pages
|
||||
|
||||
Options:
|
||||
-h, --help Show this help message and exit
|
||||
|
||||
optional arguments:
|
||||
-h, --help show this help message and exit
|
||||
--versions VERSIONS [VERSIONS ...]
|
||||
Rocky Linux versions to process (default: 8.10 9.6 10.0)
|
||||
|
||||
--repo-types REPO_TYPES [REPO_TYPES ...]
|
||||
Repository types to process (default: BaseOS AppStream)
|
||||
|
||||
--output-dir OUTPUT_DIR
|
||||
HTML output directory (default: ./html)
|
||||
|
||||
Output directory for HTML files (default: ./html)
|
||||
--download-dir DOWNLOAD_DIR
|
||||
Package download directory (default: ./tmp/downloads)
|
||||
|
||||
Directory for downloading packages (default: ./tmp/downloads)
|
||||
--extract-dir EXTRACT_DIR
|
||||
Extraction directory (default: ./tmp/extracts)
|
||||
|
||||
Directory for extracting man pages (default: ./tmp/extracts)
|
||||
--keep-rpms Keep downloaded RPM files after processing
|
||||
|
||||
--keep-extracts Keep extracted man files after processing
|
||||
|
||||
--parallel-downloads N
|
||||
--parallel-downloads PARALLEL_DOWNLOADS
|
||||
Number of parallel downloads (default: 5)
|
||||
|
||||
--parallel-conversions N
|
||||
--parallel-conversions PARALLEL_CONVERSIONS
|
||||
Number of parallel HTML conversions (default: 10)
|
||||
|
||||
--mirror URL Rocky Linux mirror URL
|
||||
(default: http://dl.rockylinux.org/)
|
||||
|
||||
--template-dir DIR Custom template directory
|
||||
|
||||
--mirror MIRROR Rocky Linux mirror URL (default: http://dl.rockylinux.org/)
|
||||
--vault Use vault directory instead of pub (vault/rocky instead of pub/rocky)
|
||||
--existing-versions [VERSION ...]
|
||||
List of existing versions to include in root index (e.g., 8.10 9.7)
|
||||
--template-dir TEMPLATE_DIR
|
||||
Template directory (default: ./templates)
|
||||
-v, --verbose Enable verbose logging
|
||||
--skip-sections [SKIP_SECTIONS ...]
|
||||
Man sections to skip (default: 3 3p 3pm). Use empty list to skip none.
|
||||
--skip-packages [SKIP_PACKAGES ...]
|
||||
Package names to skip (default: lapack dpdk-devel gl-manpages). Use empty list to skip none.
|
||||
--skip-languages Skip non-English man pages (default: enabled)
|
||||
--keep-languages Keep all languages (disables --skip-languages)
|
||||
--allow-all-sections Include all man sections (overrides --skip-sections)
|
||||
```
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
Reference in New Issue
Block a user