- Add mock-specific build artifacts (chroot/, mock-*, mockroot/) - Include package build files (*.deb, *.changes, *.buildinfo) - Add development tools (.coverage, .pytest_cache, .tox) - Include system files (.DS_Store, Thumbs.db, ._*) - Add temporary and backup files (*.tmp, *.bak, *.backup) - Include local configuration overrides (config.local.yaml, .env.local) - Add test artifacts and documentation builds - Comprehensive coverage for Python build system project This ensures build artifacts, chroot environments, and development tools are properly ignored in version control.
26 lines
928 B
Markdown
26 lines
928 B
Markdown
---
|
|
layout: default
|
|
title: Plugin PackageState
|
|
---
|
|
|
|
This plugin optionally dumps additional metadata files into the result dir:
|
|
* A list of all available pkgs + repos + other data. This file is named `available_pkgs.log`. This file is not created if you run mock with `--offline` option.
|
|
* A list of all installed pkgs + repos + other data. This file is name `installed_pkgs.log`.
|
|
|
|
Format of `installed_pkgs.log` file is:
|
|
|
|
%{nevra} %{buildtime} %{size} %{pkgid} installed
|
|
|
|
## Configuration
|
|
|
|
The Package_state plugin is enabled by default.
|
|
|
|
# in version 1.2.18 and older the default was False
|
|
config_opts['plugin_conf']['package_state_enable'] = True
|
|
|
|
The following sub-options may be turned off/on:
|
|
```python
|
|
config_opts['plugin_conf']['package_state_opts'] = {}
|
|
config_opts['plugin_conf']['package_state_opts']['available_pkgs'] = False
|
|
config_opts['plugin_conf']['package_state_opts']['installed_pkgs'] = True
|
|
```
|