Skip to content
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

Support RPMTRANS_FLAG_DEPLOOPS #2057

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dnf/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,8 @@ def _closeRpmDB(self):
'test': rpm.RPMTRANS_FLAG_TEST,
'justdb': rpm.RPMTRANS_FLAG_JUSTDB,
'nocontexts': rpm.RPMTRANS_FLAG_NOCONTEXTS,
'nocrypto': rpm.RPMTRANS_FLAG_NOFILEDIGEST}
'nocrypto': rpm.RPMTRANS_FLAG_NOFILEDIGEST,
'deploops': rpm.RPMTRANS_FLAG_DEPLOOPS}
if hasattr(rpm, 'RPMTRANS_FLAG_NOCAPS'):
# Introduced in rpm-4.14
_TS_FLAGS_TO_RPM['nocaps'] = rpm.RPMTRANS_FLAG_NOCAPS
Expand Down
1 change: 1 addition & 0 deletions doc/conf_ref.rst
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,7 @@ configuration file by your distribution to override the DNF defaults.
nocontexts RPMTRANS_FLAG_NOCONTEXTS
nocaps RPMTRANS_FLAG_NOCAPS
nocrypto RPMTRANS_FLAG_NOFILEDIGEST
deploops RPMTRANS_FLAG_DEPLOOPS
============ ===========================

The ``nocrypto`` option will also set the ``_RPMVSF_NOSIGNATURES`` and
Expand Down
Loading