| name | rsyslog_doc_dist |
| description | Ensures doc/Makefile.am stays in sync with changes to documentation files. |
| triggers | ["doc/source/**/*.rst"] |
| condition | on create, move, or delete |
rsyslog_doc_dist
This skill ensures that all documentation files are correctly registered for distribution in the build system.
Quick Start
- Add File: If you add a
*.rst file in doc/source/, add it to EXTRA_DIST in doc/Makefile.am.
- Move/Rename: If you move or rename a file, update the corresponding path in
doc/Makefile.am.
- Remove: If you delete a file, remove its entry from
doc/Makefile.am.
Detailed Instructions
1. The EXTRA_DIST Guard
The rsyslog distribution tarball is created using make dist. For documentation to be included, every source file must be listed in the EXTRA_DIST variable within doc/Makefile.am.
2. Synchronization Rule
Whenever you perform a filesystem operation on documentation:
- Addition: Insert the new path (relative to
doc/) into the EXTRA_DIST list. Try to maintain the existing logical grouping (e.g., source/configuration/modules/).
- Renaming/Moving: Locate the old path in
doc/Makefile.am and replace it with the new one.
- Deletion: Locate and remove the entry to avoid build failures during
make dist.
3. Extended Verification (Automated)
For changes involving file additions, moves, or deletions, you MUST run the extended distribution check. This ensures that the documentation is correctly packaged in the source tarball and can be built from it.
Command:
bash .agent/skills/rsyslog_doc_dist/scripts/check-doc-dist.sh
This script will:
- Parse the project version.
- Run
make dist.
- Unpack the distribution in a temporary directory.
- Run
autoreconf -fvi && ./configure.sh (special case).
- Verify
make html in the distribution.
- Clean up temporary files.
Related Skills
rsyslog_doc: For documentation content and metadata standards.
rsyslog_build: For verifying that the build system (including Makefile.am) is still functional after changes.