6f3914 dnf-4.2.17 base

Merged and Committed by Packit 3 years ago
631 files changed. 246769 lines added. 0 lines removed.
.gitignore
file added
+17
.packit.yaml
file added
+13
AUTHORS
file added
+96
CMakeLists.txt
file added
+38
COPYING
file added
+339
PACKAGE-LICENSING
file added
+14
README.rst
file added
+107
bin/CMakeLists.txt
file added
+2
bin/dnf-automatic.in
file added
+32
bin/dnf.in
file added
+58
dnf.spec
file added
+2496
dnf/CMakeLists.txt
file added
+12
dnf/__init__.py
file added
+37
dnf/automatic/CMakeLists.txt
file added
+2
dnf/automatic/__init__.py
file added
+19
dnf/automatic/emitter.py
file added
+167
dnf/automatic/main.py
file added
+286
dnf/base.py
file added
+2537
dnf/callback.py
file added
+125
dnf/cli/CMakeLists.txt
file added
+6
dnf/cli/__init__.py
file added
+31
dnf/cli/aliases.py
file added
+204
dnf/cli/cli.py
file added
+1162
dnf/cli/commands/CMakeLists.txt
file added
+2
dnf/cli/commands/__init__.py
file added
+1029
dnf/cli/commands/alias.py
file added
+187
dnf/cli/commands/autoremove.py
file added
+76
dnf/cli/commands/check.py
file added
+147
dnf/cli/commands/clean.py
file added
+123
dnf/cli/commands/deplist.py
file added
+36
dnf/cli/commands/distrosync.py
file added
+48
dnf/cli/commands/downgrade.py
file added
+58
dnf/cli/commands/group.py
file added
+419
dnf/cli/commands/install.py
file added
+185
dnf/cli/commands/makecache.py
file added
+50
dnf/cli/commands/mark.py
file added
+97
dnf/cli/commands/module.py
file added
+374
dnf/cli/commands/reinstall.py
file added
+101
dnf/cli/commands/remove.py
file added
+156
dnf/cli/commands/repolist.py
file added
+291
dnf/cli/commands/repoquery.py
file added
+688
dnf/cli/commands/search.py
file added
+160
dnf/cli/commands/shell.py
file added
+292
dnf/cli/commands/swap.py
file added
+62
dnf/cli/commands/updateinfo.py
file added
+400
dnf/cli/commands/upgrade.py
file added
+130
dnf/cli/commands/upgrademinimal.py
file added
+41
dnf/cli/completion_helper.py.in
file added
+203
dnf/cli/demand.py
file added
+65
dnf/cli/format.py
file added
+104
dnf/cli/main.py
file added
+198
dnf/cli/option_parser.py
file added
+426
dnf/cli/output.py
file added
+2312
dnf/cli/progress.py
file added
+202
dnf/cli/term.py
file added
+389
dnf/cli/utils.py
file added
+129
dnf/comps.py
file added
+717
dnf/conf/CMakeLists.txt
file added
+2
dnf/conf/__init__.py
file added
+46
dnf/conf/config.py
file added
+505
dnf/conf/read.py
file added
+110
dnf/conf/substitutions.py
file added
+64
dnf/const.py.in
file added
+58
dnf/crypto.py
file added
+199
dnf/db/CMakeLists.txt
file added
+2
dnf/db/__init__.py
file added
+17
dnf/db/group.py
file added
+378
dnf/db/history.py
file added
+548
dnf/dnssec.py
file added
+308
dnf/drpm.py
file added
+180
dnf/exceptions.py
file added
+189
dnf/goal.py
file added
+24
dnf/history.py
file added
+25
dnf/i18n.py
file added
+354
dnf/lock.py
file added
+148
dnf/logging.py
file added
+245
dnf/match_counter.py
file added
+121
dnf/module/CMakeLists.txt
file added
+2
dnf/module/__init__.py
file added
+31
dnf/module/exceptions.py
file added
+88
dnf/module/module_base.py
file added
+686
dnf/package.py
file added
+298
dnf/persistor.py
file added
+133
dnf/plugin.py
file added
+251
dnf/pycomp.py
file added
+113
dnf/query.py
file added
+46
dnf/repo.py
file added
+658
dnf/repodict.py
file added
+143
dnf/rpm/CMakeLists.txt
file added
+2
dnf/rpm/__init__.py
file added
+130
dnf/rpm/connection.py
file added
+34
dnf/rpm/error.py
file added
+22
dnf/rpm/miscutils.py
file added
+65
dnf/rpm/transaction.py
file added
+126
dnf/sack.py
file added
+76
dnf/selector.py
file added
+24
dnf/subject.py
file added
+25
dnf/transaction.py
file added
+124
dnf/util.py
file added
+506
dnf/yum/CMakeLists.txt
file added
+2
dnf/yum/__init__.py
file added
+19
dnf/yum/misc.py
file added
+457
dnf/yum/rpmtrans.py
file added
+420
doc/CMakeLists.txt
file added
+36
doc/__init__.py
file added
+19
doc/api.rst
file added
+79
doc/api_base.rst
file added
+249
doc/api_callback.rst
file added
+102
doc/api_cli.rst
file added
+143
doc/api_common.rst
file added
+34
doc/api_comps.rst
file added
+132
doc/api_conf.rst
file added
+90
doc/api_exceptions.rst
file added
+52
doc/api_module.rst
file added
+236
doc/api_package.rst
file added
+184
doc/api_plugins.rst
file added
+95
doc/api_queries.rst
file added
+219
doc/api_repos.rst
file added
+159
doc/api_rpm.rst
file added
+32
doc/api_sack.rst
file added
+34
doc/api_selector.rst
file added
+32
doc/api_transaction.rst
file added
+37
doc/api_vs_yum.rst
file added
+51
doc/automatic.rst
file added
+174
doc/cli_vs_yum.rst
file added
+446
doc/command_ref.rst
file added
+1882
doc/conf.py
file added
+285
doc/conf_ref.rst
file added
+864
doc/dnf-1_vs_dnf-2.rst
file added
+56
doc/examples/install_extension.py
file added
+76
doc/examples/install_plugin.py
file added
+88
doc/examples/list_extras_extension.py
file added
+43
doc/examples/list_obsoletes_plugin.py
file added
+81
doc/index.rst
file added
+54
doc/modularity.rst
file added
+113
doc/release_notes.rst
file added
+2293
doc/rhbug.py
file added
+82
doc/summaries_cache
file added
+3006
doc/use_cases.rst
file added
+167
doc/user_faq.rst
file added
+148
etc/CMakeLists.txt
file added
+6
etc/bash_completion.d/CMakeLists.txt
file added
+9
etc/bash_completion.d/dnf
file added
+387
etc/collect_dnf.conf
file added
+24
etc/dnf/CMakeLists.txt
file added
+3
etc/dnf/aliases.d/CMakeLists.txt
file added
+1
etc/dnf/aliases.d/zypper.conf
file added
+7
etc/dnf/automatic.conf
file added
+81
etc/dnf/dnf-strict.conf
file added
+6
etc/dnf/dnf.conf
file added
+6
etc/dnf/protected.d/CMakeLists.txt
file added
+1
etc/dnf/protected.d/dnf.conf
file added
+1
etc/dnf/protected.d/yum.conf
file added
+1
etc/logrotate.d/CMakeLists.txt
file added
+1
etc/logrotate.d/dnf
file added
+15
etc/systemd/CMakeLists.txt
file added
+14
etc/systemd/dnf-automatic-download.service
file added
+13
etc/systemd/dnf-automatic-download.timer
file added
+13
etc/systemd/dnf-automatic-install.service
file added
+13
etc/systemd/dnf-automatic-install.timer
file added
+13
etc/systemd/dnf-automatic-notifyonly.service
file added
+13
etc/systemd/dnf-automatic-notifyonly.timer
file added
+13
etc/systemd/dnf-automatic.service
file added
+13
etc/systemd/dnf-automatic.timer
file added
+13
etc/systemd/dnf-makecache.service
file added
+16
etc/systemd/dnf-makecache.timer
file added
+14
etc/tmpfiles.d/CMakeLists.txt
file added
+1
etc/tmpfiles.d/dnf.conf
file added
+5
po/.gitignore
file added
+1
po/CMakeLists.txt
file added
+22
po/ar.po
file added
+3611
po/bg.po
file added
+3657
po/bn_IN.po
file added
+3616
po/ca.po
file added
+3762
po/cs.po
file added
+3766
po/da.po
file added
+3815
po/de.po
file added
+3822
po/dnf.pot
file added
+3505
po/el.po
file added
+3617
po/en_GB.po
file added
+3681
po/eo.po
file added
+3676
po/es.po
file added
+3908
po/eu.po
file added
+3654
po/fa.po
file added
+3611
po/fi.po
file added
+3647
po/fil.po
file added
+3630
po/fr.po
file added
+3898
po/fur.po
file added
+3758
po/gd.po
file added
+3617
po/gu.po
file added
+3617
po/he.po
file added
+3620
po/hi.po
file added
+2108
po/hr.po
file added
+3611
po/hu.po
file added
+3851
po/id.po
file added
+3630
po/it.po
file added
+3807
po/ja.po
file added
+3709
po/ka.po
file added
+3616
po/kk.po
file added
+3615
po/ko.po
file added
+3648
po/lt.po
file added
+3630
po/ml.po
file added
+3613
po/mr.po
file added
+3612
po/ms.po
file added
+3616
po/nb.po
file added
+3625
po/nl.po
file added
+3831
po/or.po
file added
+3611
po/pa.po
file added
+3659
po/pl.po
file added
+3859
po/pt.po
file added
+3715
po/pt_BR.po
file added
+3785
po/ru.po
file added
+3823
po/sk.po
file added
+3628
po/sq.po
file added
+3614
po/sr.po
file added
+3662
po/sr@latin.po
file added
+2125
po/sv.po
file added
+3815
po/th.po
file added
+3617
po/tr.po
file added
+3676
po/uk.po
file added
+3830
po/ur.po
file added
+2108
po/zanata.xml
file added
+7
po/zh_CN.po
file added
+3709
po/zh_TW.po
file added
+3687
rel-eng/README
file added
+7
rel-eng/packages/.readme
file added
+3
rel-eng/packages/dnf
file added
+1
rel-eng/releasers.conf
file added
+3
rel-eng/templates/version
file added
+1
rel-eng/tito.props
file added
+9
scripts/dnf_pylint
file added
+43
scripts/pylint_false_positives
file added
+22
scripts/sanitize_po_files.py
file added
+48
scripts/update-copyright-years.sh
file added
+16
scripts/update_releasenotes.py
file added
+1636
sideci.yml
file added
+3
tests/.gitignore
file added
+2
tests/CMakeLists.txt
file added
+1
tests/README
file added
+14
tests/__init__.py
file added
+23
tests/automatic/__init__.py
file added
+18
tests/automatic/test_emitter.py
file added
+53
tests/automatic/test_main.py
file added
+51
tests/cli/__init__.py
file added
+18
tests/cli/commands/__init__.py
file added
+18
tests/cli/commands/test_autoremove.py
file added
+54
tests/cli/commands/test_clean.py
file added
+99
tests/cli/commands/test_group.py
file added
+114
tests/cli/commands/test_makecache.py
file added
+80
tests/cli/commands/test_remove.py
file added
+60
tests/cli/commands/test_repolist.py
file added
+35
tests/cli/commands/test_search.py
file added
+86
tests/cli/commands/test_updateinfo.py
file added
+300
tests/cli/test_aliases.py
file added
+87
tests/cli/test_demand.py
file added
+51
tests/cli/test_option_parser.py
file added
+145
tests/cli/test_output.py
file added
+269
tests/cli/test_term.py
file added
+96
tests/conf/__init__.py
file added
+18
tests/conf/test_list_option.py
file added
+355
tests/conf/test_parser.py
file added
+63
tests/conf/test_read.py
file added
+47
tests/conf/test_substitutions.py
file added
+54
tests/etc/aliases.d/aliases.conf
file added
+17
tests/etc/automatic.conf
file added
+7
tests/etc/empty_option.conf
file added
+2
tests/etc/installroot.conf
file added
+2
tests/etc/repos.conf
file added
+9
tests/keys/key.pub
file added
+30
tests/mock.py
file added
+2365
tests/modules/defaults/httpd.yaml
file added
+7
tests/modules/dnf-test
file added
+18
tests/modules/etc/dnf/dnf.conf.in
file added
+8
tests/modules/etc/dnf/modules.d/base-runtime.module
file added
+6
tests/modules/etc/dnf/modules.d/httpd.module
file added
+6
tests/modules/etc/dnf/modules.defaults.d/base-runtime.yaml
file added
+7
tests/modules/etc/dnf/modules.defaults.d/httpd.yaml
file added
+7
tests/modules/etc/dnf/repos.d/test.repo.in
file added
+6
tests/modules/modules/_all/x86_64/base-runtime-f26-1.x86_64.yaml
file added
+40
tests/modules/modules/_all/x86_64/base-runtime-f26-2.x86_64.yaml
file added
+40
tests/modules/modules/_all/x86_64/base-runtime-rhel73-1.x86_64.yaml
file added
+40
tests/modules/modules/_all/x86_64/basesystem-10.0-7.noarch.rpm
file added
+0
tests/modules/modules/_all/x86_64/basesystem-11-3.noarch.rpm
file added
+0
tests/modules/modules/_all/x86_64/bash-4.2.46-21.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/bash-4.4.12-2.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/bash-doc-4.2.46-21.noarch.rpm
file added
+0
tests/modules/modules/_all/x86_64/bash-doc-4.4.12-2.noarch.rpm
file added
+0
tests/modules/modules/_all/x86_64/dummy-nscd-2.17-157.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/dummy-nscd-2.25-4.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/dummy-nscd-2.25.90-2.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/filesystem-3.2-21.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/filesystem-3.2-40.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/glibc-2.17-157.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/glibc-2.25-4.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/glibc-2.25.90-2.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/glibc-common-2.17-157.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/glibc-common-2.25-4.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/glibc-common-2.25.90-2.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/glibc-debuginfo-common-2.17-157.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/glibc-debuginfo-common-2.25-4.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/glibc-debuginfo-common-2.25.90-2.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/grub2-2.02-0.40.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/httpd-2.2-1.x86_64.yaml
file added
+27
tests/modules/modules/_all/x86_64/httpd-2.2.10-1.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/httpd-2.2.15-59.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/httpd-2.4-1.x86_64.yaml
file added
+28
tests/modules/modules/_all/x86_64/httpd-2.4-2.x86_64.yaml
file added
+28
tests/modules/modules/_all/x86_64/httpd-2.4.25-7.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/httpd-2.4.25-8.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/httpd-doc-2.2.10-1.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/httpd-doc-2.2.15-59.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/httpd-doc-2.4.25-7.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/httpd-doc-2.4.25-8.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/httpd-provides-name-3.0-1.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/httpd-provides-name-doc-3.0-1.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/httpd-provides-name-version-release-3.0-1.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/httpd-provides-name-version-release-doc-3.0-1.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/httpd.yaml
file added
+7
tests/modules/modules/_all/x86_64/kernel-3.10.0-514.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/kernel-4.11.0-1.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/kernel-doc-3.10.0-514.noarch.rpm
file added
+0
tests/modules/modules/_all/x86_64/kernel-doc-4.11.0-1.noarch.rpm
file added
+0
tests/modules/modules/_all/x86_64/kernel-headers-3.10.0-514.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/kernel-headers-4.11.0-1.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/libnghttp2-1.21.1-1.1.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/libnghttp2-1.21.1-1.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/m4-1.4.18-1.x86_64.yaml
file added
+22
tests/modules/modules/_all/x86_64/m4-1.4.18-6.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/repodata/23f9fa47b12caedc5f13f66df52695fcaea77c4c66dc28edd80b86852f8e42cb-modules.yaml.gz
file added
+0
tests/modules/modules/_all/x86_64/repodata/5555625d8791c4cbee96ab32c23a8cd18955f2b6bb0f4adbad57e4bc62644dbc-primary.xml.gz
file added
+0
tests/modules/modules/_all/x86_64/repodata/898b238daf0b66d228beb623538b8fdaa30c5971d576952b93ca70f296038333-other.xml.gz
file added
+0
tests/modules/modules/_all/x86_64/repodata/8ceb82d8e12ad9605e7625f5a2e9798b12e52f72fe1cd6b3ed22e520e2ecd03c-filelists.xml.gz
file added
+0
tests/modules/modules/_all/x86_64/repodata/9a8fba72f7f66138d27f243aa649e18b99eaeb6fbd4c57e1ea1c8e02a9bdd562-filelists.sqlite.bz2
file added
+0
tests/modules/modules/_all/x86_64/repodata/d2a57244a5774a7f02821aefcb4bf27ca2c1adf47dde411934f8cf9d3580effb-other.sqlite.bz2
file added
+0
tests/modules/modules/_all/x86_64/repodata/f835f27c133334bea4bd28b4e9e6f629fb455c53d9c8b2b9fedef609f5221763-primary.sqlite.bz2
file added
+0
tests/modules/modules/_all/x86_64/repodata/repomd.xml
file added
+63
tests/modules/modules/_all/x86_64/systemd-219-30.x86_64.rpm
file added
+0
tests/modules/modules/_all/x86_64/systemd-233-3.x86_64.rpm
file added
+0
tests/modules/modules/_non-modular/src/grub2-2.02-0.40.src.rpm
file added
+0
tests/modules/modules/_non-modular/src/httpd-2.2.10-1.src.rpm
file added
+0
tests/modules/modules/_non-modular/src/httpd-provides-name-3.0-1.src.rpm
file added
+0
tests/modules/modules/_non-modular/src/httpd-provides-name-version-release-3.0-1.src.rpm
file added
+0
tests/modules/modules/_non-modular/src/libnghttp2-1.21.1-1.1.src.rpm
file added
+0
tests/modules/modules/_non-modular/x86_64/grub2-2.02-0.40.x86_64.rpm
file added
+0
tests/modules/modules/_non-modular/x86_64/httpd-2.2.10-1.x86_64.rpm
file added
+0
tests/modules/modules/_non-modular/x86_64/httpd-doc-2.2.10-1.x86_64.rpm
file added
+0
tests/modules/modules/_non-modular/x86_64/httpd-provides-name-3.0-1.x86_64.rpm
file added
+0
tests/modules/modules/_non-modular/x86_64/httpd-provides-name-doc-3.0-1.x86_64.rpm
file added
+0
tests/modules/modules/_non-modular/x86_64/httpd-provides-name-version-release-3.0-1.x86_64.rpm
file added
+0
tests/modules/modules/_non-modular/x86_64/httpd-provides-name-version-release-doc-3.0-1.x86_64.rpm
file added
+0
tests/modules/modules/_non-modular/x86_64/libnghttp2-1.21.1-1.1.x86_64.rpm
file added
+0
tests/modules/modules/_non-modular/x86_64/repodata/2603f883d5dada8e8747c737fce75cdf733ce2c059027a49b55e9717027a47b4-other.sqlite.bz2
file added
+0
tests/modules/modules/_non-modular/x86_64/repodata/31f1fe072d277d235c198c4481c647824c8669a85324a72d4dfbbad319410287-other.xml.gz
file added
+0
tests/modules/modules/_non-modular/x86_64/repodata/35d26170d41861b68ac7fef74e0d5f8cc977886579de19a8c6496bfa94fb0825-filelists.sqlite.bz2
file added
+0
tests/modules/modules/_non-modular/x86_64/repodata/aa9c1c3bff655d8e191b9f5de26218d95449b68acbe9157bf0b51104300a0ca6-filelists.xml.gz
file added
+0
tests/modules/modules/_non-modular/x86_64/repodata/cb2ccbdd3075defb28cf934c734a8366a2781d41d0381e379f8a86f0dc35f0df-primary.xml.gz
file added
+0
tests/modules/modules/_non-modular/x86_64/repodata/f02bcd188e1ac34156f700c82051fe774c37db6ad74b5dd97f773e9a041c0589-primary.sqlite.bz2
file added
+0
tests/modules/modules/_non-modular/x86_64/repodata/repomd.xml
file added
+55
tests/modules/modules/base-runtime-f26-1/noarch/basesystem-11-3.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/noarch/bash-doc-4.4.12-2.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/noarch/kernel-doc-4.11.0-1.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/src/base-runtime-f26-1.src.yaml
file added
+37
tests/modules/modules/base-runtime-f26-1/src/basesystem-11-3.src.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/src/bash-4.4.12-2.src.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/src/filesystem-3.2-40.src.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/src/glibc-2.25-4.src.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/src/kernel-4.11.0-1.src.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/src/systemd-233-3.src.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/base-runtime-f26-1.x86_64.yaml
file added
+40
tests/modules/modules/base-runtime-f26-1/x86_64/basesystem-11-3.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/bash-4.4.12-2.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/bash-doc-4.4.12-2.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/dummy-nscd-2.25-4.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/filesystem-3.2-40.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/glibc-2.25-4.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/glibc-common-2.25-4.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/glibc-debuginfo-common-2.25-4.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/kernel-4.11.0-1.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/kernel-doc-4.11.0-1.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/kernel-headers-4.11.0-1.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/repodata/11a3f90a83c0b78bb49ace0c6661aa3321a2e1d511db74a7d0fd67684fbddb7a-filelists.sqlite.bz2
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/repodata/3b8cf4e690c967243c0973ad0a803f6b462ca1c4c851ea16b00ccc9d06fb5cf0-primary.sqlite.bz2
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/repodata/6bbb4e495a8140867dfdd13b3909f2fe7b90840d1e733cbf7f7de41780d8dc84-modules.yaml.gz
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/repodata/7283b7feca2768a5c14ae5b6d391fdf7ee1c19244df3d323ee04269a8ec86836-other.sqlite.bz2
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/repodata/8f94815ba6a68fc6730bb7b38acbf9d8afd10bf27d06d150116da16c9d4cbdfe-primary.xml.gz
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/repodata/9e125f58c56b6c4a31cc1c8e04a0a8cc2391d53b605d784eaaff65c77cc63aa3-other.xml.gz
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/repodata/dd173b81d1858c7a68d5e71a891fd600f8f69260fb143d3044543429cde73132-filelists.xml.gz
file added
+0
tests/modules/modules/base-runtime-f26-1/x86_64/repodata/repomd.xml
file added
+63
tests/modules/modules/base-runtime-f26-1/x86_64/systemd-233-3.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/noarch/basesystem-11-3.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/noarch/bash-doc-4.4.12-2.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/noarch/kernel-doc-4.11.0-1.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/src/base-runtime-f26-2.src.yaml
file added
+37
tests/modules/modules/base-runtime-f26-2/src/basesystem-11-3.src.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/src/bash-4.4.12-2.src.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/src/filesystem-3.2-40.src.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/src/glibc-2.25.90-2.src.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/src/kernel-4.11.0-1.src.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/src/systemd-233-3.src.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/base-runtime-f26-2.x86_64.yaml
file added
+40
tests/modules/modules/base-runtime-f26-2/x86_64/basesystem-11-3.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/bash-4.4.12-2.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/bash-doc-4.4.12-2.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/dummy-nscd-2.25.90-2.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/filesystem-3.2-40.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/glibc-2.25.90-2.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/glibc-common-2.25.90-2.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/glibc-debuginfo-common-2.25.90-2.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/kernel-4.11.0-1.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/kernel-doc-4.11.0-1.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/kernel-headers-4.11.0-1.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/repodata/1bd2a68b47fd4d3201ddd84eb623533fc46a76171b67b46c239b3bea19577fa3-modules.yaml.gz
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/repodata/27e98871e1153ce3f0f851877f76a019c1f9cd411c89d968b3f2c69c7853c6e6-primary.sqlite.bz2
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/repodata/52405d853f91aa1488086e609b369af3333d4f6bbcae697e6b13cb759f46e6ef-other.xml.gz
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/repodata/716f098f0c18dd7e81706a1391a890d23eea6d5856dfb43517fada0f49b66a1f-filelists.sqlite.bz2
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/repodata/85e91fb36a090cf9a34c2cf97d29dcc86f69feb247e8ee4bfb1b96e9e3ff6cba-filelists.xml.gz
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/repodata/9d89694305e49e3e9badecdf50f660da0487e96f4bb725044893012cbe5969fe-other.sqlite.bz2
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/repodata/ac29250d8c838a6cbfe74f6861cc61e7167a631aa268fa36cd6eea70e9d34a3f-primary.xml.gz
file added
+0
tests/modules/modules/base-runtime-f26-2/x86_64/repodata/repomd.xml
file added
+63
tests/modules/modules/base-runtime-f26-2/x86_64/systemd-233-3.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/noarch/basesystem-10.0-7.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/noarch/bash-doc-4.2.46-21.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/noarch/kernel-doc-3.10.0-514.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/src/base-runtime-rhel73-1.src.yaml
file added
+37
tests/modules/modules/base-runtime-rhel73-1/src/basesystem-10.0-7.src.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/src/bash-4.2.46-21.src.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/src/filesystem-3.2-21.src.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/src/glibc-2.17-157.src.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/src/kernel-3.10.0-514.src.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/src/systemd-219-30.src.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/base-runtime-rhel73-1.x86_64.yaml
file added
+40
tests/modules/modules/base-runtime-rhel73-1/x86_64/basesystem-10.0-7.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/bash-4.2.46-21.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/bash-doc-4.2.46-21.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/dummy-nscd-2.17-157.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/filesystem-3.2-21.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/glibc-2.17-157.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/glibc-common-2.17-157.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/glibc-debuginfo-common-2.17-157.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/kernel-3.10.0-514.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/kernel-doc-3.10.0-514.noarch.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/kernel-headers-3.10.0-514.x86_64.rpm
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/429feeff2c590966f6f80061c12e36976ef3479e8f4cd0f89dfa6b7cf6f70fd4-other.xml.gz
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/4aa6f4fadf74ab06f4c7f436653f68026d18245acfca597763f62d77d956d65c-modules.yaml.gz
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/8949023d45d446c6e8e94eb2e6a3ecb71c19a427560e229ce35d9e5be2271020-primary.sqlite.bz2
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/b3410bbc216a4d9cf4285ae2e253c5ba42b9fa245885b7e062daa46e7d455b00-primary.xml.gz
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/dcf87cccae6c8c1d8e71c424cffa0e3cddf830bb9da2b54dccc4e880936f78cf-filelists.sqlite.bz2
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/f1d6bc382e1a541b0a09173e7212583fbb003ae86f752e0d9bbe1c58b2fb7126-filelists.xml.gz
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/ffcf889fe97ef5230905a77746526127ca4d3b44a7401f25834cc6b2a4c5ce4f-other.sqlite.bz2
file added
+0
tests/modules/modules/base-runtime-rhel73-1/x86_64/repodata/repomd.xml
file added
+63
tests/modules/modules/base-runtime-rhel73-1/x86_64/systemd-219-30.x86_64.rpm
file added
+0
tests/modules/modules/httpd-2.2-1/src/httpd-2.2-1.src.yaml
file added
+26
tests/modules/modules/httpd-2.2-1/src/httpd-2.2.15-59.src.rpm
file added
+0
tests/modules/modules/httpd-2.2-1/x86_64/httpd-2.2-1.x86_64.yaml
file added
+27
tests/modules/modules/httpd-2.2-1/x86_64/httpd-2.2.15-59.x86_64.rpm
file added
+0
tests/modules/modules/httpd-2.2-1/x86_64/httpd-doc-2.2.15-59.x86_64.rpm
file added
+0
tests/modules/modules/httpd-2.2-1/x86_64/repodata/0c0bf4fb847743d975173c7a7e2c3b7218a78561f911a4e9eba6ca89ce7abb90-other.xml.gz
file added
+0
tests/modules/modules/httpd-2.2-1/x86_64/repodata/2defc3f519e757e3d43fd968d6d56d61e05f331e44b67d7506d5f788a479e928-other.sqlite.bz2
file added
+0
tests/modules/modules/httpd-2.2-1/x86_64/repodata/7124302a27a3d61e9b01e0a4aaa2822f884b20a40d22f2d239843fe5dcdaa126-filelists.xml.gz
file added
+0
tests/modules/modules/httpd-2.2-1/x86_64/repodata/c198166f01d73a203675e1d752bd07f9b3a6adc6fb3e08ce86ee37078add3a2a-primary.sqlite.bz2
file added
+0
tests/modules/modules/httpd-2.2-1/x86_64/repodata/cc8fd6955efaa133c509583c2832c010ed27f4403834193a29f01ab2baca6e41-filelists.sqlite.bz2
file added
+0
tests/modules/modules/httpd-2.2-1/x86_64/repodata/dde337bbe50a138c8412c32f902fc02bf7398620398c39ea844f83ffdc37f086-modules.yaml.gz
file added
+0
tests/modules/modules/httpd-2.2-1/x86_64/repodata/f07b7224dfbd52a07c67673bdb56110cdad3ea13ce852ca97ba12f8f3bbcf0e6-primary.xml.gz
file added
+0
tests/modules/modules/httpd-2.2-1/x86_64/repodata/repomd.xml
file added
+63
tests/modules/modules/httpd-2.4-1/src/httpd-2.4-1.src.yaml
file added
+27
tests/modules/modules/httpd-2.4-1/src/httpd-2.4.25-7.src.rpm
file added
+0
tests/modules/modules/httpd-2.4-1/src/libnghttp2-1.21.1-1.src.rpm
file added
+0
tests/modules/modules/httpd-2.4-1/x86_64/httpd-2.4-1.x86_64.yaml
file added
+28
tests/modules/modules/httpd-2.4-1/x86_64/httpd-2.4.25-7.x86_64.rpm
file added
+0
tests/modules/modules/httpd-2.4-1/x86_64/httpd-doc-2.4.25-7.x86_64.rpm
file added
+0
tests/modules/modules/httpd-2.4-1/x86_64/httpd.yaml
file added
+7
tests/modules/modules/httpd-2.4-1/x86_64/libnghttp2-1.21.1-1.x86_64.rpm
file added
+0
tests/modules/modules/httpd-2.4-1/x86_64/repodata/08237a11340676ff1a2feb23110eba3187687f9ffb3da4a548833e6a0a83ec2f-filelists.sqlite.bz2
file added
+0
tests/modules/modules/httpd-2.4-1/x86_64/repodata/0a29ebe7056790ce78c7e5706a09c142228cd6648c5c4f8ffe4de5a9f3dd5476-primary.sqlite.bz2
file added
+0
tests/modules/modules/httpd-2.4-1/x86_64/repodata/5bac069f64963a6ddff6ec7895e098c8d278ec91f10c6145c14475c253c79178-other.sqlite.bz2
file added
+0
tests/modules/modules/httpd-2.4-1/x86_64/repodata/7846aade69ea57ab69af7af70ec20c8950d352f0c8ab83af4f6fd00da1e41366-primary.xml.gz
file added
+0
tests/modules/modules/httpd-2.4-1/x86_64/repodata/93764d2fef4b0d45523e0699968378fe1c10540f19f3105e769ca5b234a19270-other.xml.gz
file added
+0
tests/modules/modules/httpd-2.4-1/x86_64/repodata/bbb9cc479bb50dbf88fad748f6123af3292feae10c4fcfec6994c6ae8a9d9cbf-filelists.xml.gz
file added
+0
tests/modules/modules/httpd-2.4-1/x86_64/repodata/dbb9642a3d9540d328a7bbd389f448af49ea9353cafc65f84fb60c309635212a-modules.yaml.gz
file added
+0
tests/modules/modules/httpd-2.4-1/x86_64/repodata/repomd.xml
file added
+63
tests/modules/modules/httpd-2.4-2/src/httpd-2.4-2.src.yaml
file added
+27
tests/modules/modules/httpd-2.4-2/src/httpd-2.4.25-8.src.rpm
file added
+0
tests/modules/modules/httpd-2.4-2/src/libnghttp2-1.21.1-1.src.rpm
file added
+0
tests/modules/modules/httpd-2.4-2/x86_64/httpd-2.4-2.x86_64.yaml
file added
+28
tests/modules/modules/httpd-2.4-2/x86_64/httpd-2.4.25-8.x86_64.rpm
file added
+0
tests/modules/modules/httpd-2.4-2/x86_64/httpd-doc-2.4.25-8.x86_64.rpm
file added
+0
tests/modules/modules/httpd-2.4-2/x86_64/libnghttp2-1.21.1-1.x86_64.rpm
file added
+0
tests/modules/modules/httpd-2.4-2/x86_64/repodata/332224e24fa24192be78221e39f7de1cc35b8850c798a612d5d74a3838975c7f-filelists.xml.gz
file added
+0
tests/modules/modules/httpd-2.4-2/x86_64/repodata/3dbcb48722838f62949fce0c4758e61f82b2097c84c3dae8716cf2f5a9e242c8-other.xml.gz
file added
+0
tests/modules/modules/httpd-2.4-2/x86_64/repodata/63a396aad4180ee5eddb2d05c6d526ccb16ccbafd62fa8485fb015fe2a0b3fd0-filelists.sqlite.bz2
file added
+0
tests/modules/modules/httpd-2.4-2/x86_64/repodata/8aee217ea9c28e6c91f47e04d1b9bdfb67097f446d3f3bf2e4db4cc3b4649671-primary.sqlite.bz2
file added
+0
tests/modules/modules/httpd-2.4-2/x86_64/repodata/a07cd4f4bd86150b5a70db8dae6b6c7e4e5231d2d4e49e64d53cf26301d0f8ff-modules.yaml.gz
file added
+0
tests/modules/modules/httpd-2.4-2/x86_64/repodata/a58443841c66e06323f00087968ab31f85c23395e96de860fc5484d02742c0ad-primary.xml.gz
file added
+0
tests/modules/modules/httpd-2.4-2/x86_64/repodata/ea0299725e09c27f7b83ce30f604c59ea6cc46de78360fa21b279b9e44b1ecea-other.sqlite.bz2
file added
+0
tests/modules/modules/httpd-2.4-2/x86_64/repodata/repomd.xml
file added
+63
tests/modules/modules/m4-1.4.18-1/src/m4-1.4.18-1.src.yaml
file added
+22
tests/modules/modules/m4-1.4.18-1/src/m4-1.4.18-6.src.rpm
file added
+0
tests/modules/modules/m4-1.4.18-1/x86_64/m4-1.4.18-1.x86_64.yaml
file added
+22
tests/modules/modules/m4-1.4.18-1/x86_64/m4-1.4.18-6.x86_64.rpm
file added
+0
tests/modules/modules/m4-1.4.18-1/x86_64/repodata/0fcbc16a9715f66ff2f608e304781e17bd50658283cfa8afadb4a73e5767c795-primary.sqlite.bz2
file added
+0
tests/modules/modules/m4-1.4.18-1/x86_64/repodata/2280fcccea2c0970f28ac8dd2270c714afb1b84912215bf76131fca6d854628d-filelists.xml.gz
file added
+0
tests/modules/modules/m4-1.4.18-1/x86_64/repodata/5ce420e3b6b9b9e6ff1e5ee978267bd8d1cd06e5f0b63ee2bf0653fa00934cf2-other.sqlite.bz2
file added
+0
tests/modules/modules/m4-1.4.18-1/x86_64/repodata/998229be9227cc8fbcbb2338fb234b133090b39bf99560d4d64621815dc02e97-modules.yaml.gz
file added
+0
tests/modules/modules/m4-1.4.18-1/x86_64/repodata/d3346a66e21ba5e2923583544eb9d5595e365545d6717f1d81f85f034617fe97-filelists.sqlite.bz2
file added
+0
tests/modules/modules/m4-1.4.18-1/x86_64/repodata/da818cc09599112a1f60dba9d04568137edc5a270059fdd6ff686fa41186e2cb-other.xml.gz
file added
+0
tests/modules/modules/m4-1.4.18-1/x86_64/repodata/e86da9af20e865d46fc43ce4b64957b35999c2be12815e6744b9451bccf05be1-primary.xml.gz
file added
+0
tests/modules/modules/m4-1.4.18-1/x86_64/repodata/repomd.xml
file added
+63
tests/modules/specs/_create_modulemd.py
file added
+90
tests/modules/specs/_createrepo_c_modularity_hack.py
file added
+64
tests/modules/specs/_non-modular/grub2.spec
file added
+33
tests/modules/specs/_non-modular/httpd-provides-name-version-release.spec
file added
+50
tests/modules/specs/_non-modular/httpd-provides-name.spec
file added
+50
tests/modules/specs/_non-modular/httpd.spec
file added
+48
tests/modules/specs/_non-modular/libnghttp2.spec
file added
+39
tests/modules/specs/base-runtime-f26-1/basesystem.spec
file added
+35
tests/modules/specs/base-runtime-f26-1/bash.spec
file added
+56
tests/modules/specs/base-runtime-f26-1/filesystem.spec
file added
+32
tests/modules/specs/base-runtime-f26-1/glibc.spec
file added
+77
tests/modules/specs/base-runtime-f26-1/kernel.spec
file added
+46
tests/modules/specs/base-runtime-f26-1/profiles.json
file added
+8
tests/modules/specs/base-runtime-f26-1/systemd.spec
file added
+31
tests/modules/specs/base-runtime-f26-2/basesystem.spec
file added
+1
tests/modules/specs/base-runtime-f26-2/bash.spec
file added
+1
tests/modules/specs/base-runtime-f26-2/filesystem.spec
file added
+1
tests/modules/specs/base-runtime-f26-2/glibc.spec
file added
+77
tests/modules/specs/base-runtime-f26-2/kernel.spec
file added
+1
tests/modules/specs/base-runtime-f26-2/profiles.json
file added
+1
tests/modules/specs/base-runtime-f26-2/systemd.spec
file added
+1
tests/modules/specs/base-runtime-rhel73-1/basesystem.spec
file added
+35
tests/modules/specs/base-runtime-rhel73-1/bash.spec
file added
+56
tests/modules/specs/base-runtime-rhel73-1/filesystem.spec
file added
+32
tests/modules/specs/base-runtime-rhel73-1/glibc.spec
file added
+77
tests/modules/specs/base-runtime-rhel73-1/kernel.spec
file added
+46
tests/modules/specs/base-runtime-rhel73-1/profiles.json
file added
+1
tests/modules/specs/base-runtime-rhel73-1/systemd.spec
file added
+31
tests/modules/specs/build.sh
file added
+98
tests/modules/specs/httpd-2.2-1/httpd.spec
file added
+48
tests/modules/specs/httpd-2.2-1/profiles.json
file added
+8
tests/modules/specs/httpd-2.4-1/httpd.spec
file added
+49
tests/modules/specs/httpd-2.4-1/libnghttp2.spec
file added
+39
tests/modules/specs/httpd-2.4-1/profiles.json
file added
+1
tests/modules/specs/httpd-2.4-2/httpd.spec
file added
+49
tests/modules/specs/httpd-2.4-2/libnghttp2.spec
file added
+1
tests/modules/specs/httpd-2.4-2/profiles.json
file added
+1
tests/modules/specs/m4-1.4.18-1/m4.spec
file added
+32
tests/modules/specs/m4-1.4.18-1/profiles.json
file added
+5
tests/plugins/disabled-plugin.py
file added
+28
tests/plugins/disabled.conf
file added
+3
tests/plugins/lucky.conf
file added
+3
tests/plugins/lucky.py
file added
+33
tests/repos/@System.repo
file added
+16
tests/repos/broken_deps.repo
file added
+6
tests/repos/broken_group.repo
file added
+4
tests/repos/distro.repo
file added
+8
tests/repos/drpm/drpms/tour-5-1.noarch.drpm
file added
+0
tests/repos/drpm/recreate
file added
+8
tests/repos/drpm/repodata/00e5847bcfaa79556ddfd52e2dd49caf5b56f62621c4994bac6e36e54c880ad4-filelists.xml.gz
file added
+0
tests/repos/drpm/repodata/32b62a8f543fc3f9b2a224bab06b847274192db22eeaec374185a40709a9d398-primary.xml.gz
file added
+0
tests/repos/drpm/repodata/501f13c9f94997a8088dea3c09a7c38f569bbfec71399fc37d820ef2989820ab-prestodelta.xml.gz
file added
+0
tests/repos/drpm/repodata/a1c55e45bc0d7de52a968828c10f41d0c92983886c4c0a21b26c5251d9509483-other.xml.gz
file added
+0
tests/repos/drpm/repodata/repomd.xml
file added
+36
tests/repos/drpm/tour-4-4.noarch.rpm
file added
+1
tests/repos/drpm/tour-5-0.noarch.rpm
file added
+1
tests/repos/drpm/tour-5-1.noarch.rpm
file added
+1
tests/repos/main.repo
file added
+23
tests/repos/main_comps.xml
file added
+82
tests/repos/multilib.repo
file added
+6
tests/repos/old_versions.repo
file added
+6
tests/repos/rpm/mirrorlist
file added
+5
tests/repos/rpm/recreate
file added
+8
tests/repos/rpm/repodata/01471ffc16a1c17750d69143a53b8b3693fba2a31bd3f03ead6176adc9cb9c64-updateinfo.xml.gz
file added
+0
tests/repos/rpm/repodata/324614ce8ad0918336251f79cc5b59adc56efb3fe5d4009f419f792fa8fe2649-other.xml.gz
file added
+0
tests/repos/rpm/repodata/8194e855b947b3d394ccfa59ddc0f1bc00d74ed34d43f570b4208293510719ac-primary.xml.gz
file added
+0
tests/repos/rpm/repodata/ae207ec9e54d7656b27feca26ebd99b4e894f7bba8785b673e7bdce8e8652581-filelists.xml.gz
file added
+0
tests/repos/rpm/repodata/repomd.xml
file added
+36
tests/repos/rpm/tour-4-4.noarch.rpm
file added
+0
tests/repos/rpm/tour-5-0.noarch.rpm
file added
+0
tests/repos/rpm/tour-5-1.noarch.rpm
file added
+0
tests/repos/rpm/tour.spec
file added
+28
tests/repos/rpm/updateinfo.xml
file added
+52
tests/repos/search.repo
file added
+4
tests/repos/third_party.repo
file added
+5
tests/repos/updates.repo
file added
+9
tests/support.py
file added
+732
tests/test_api.py
file added
+38
tests/test_arch.py
file added
+40
tests/test_base.py
file added
+309
tests/test_check.py
file added
+64
tests/test_cli.py
file added
+252
tests/test_cli_format.py
file added
+50
tests/test_cli_progress.py
file added
+148
tests/test_commands.py
file added
+887
tests/test_comps.py
file added
+340
tests/test_config.py
file added
+147
tests/test_crypto.py
file added
+81
tests/test_distsync.py
file added
+65
tests/test_dnssec.py
file added
+94
tests/test_downgrade.py
file added
+100
tests/test_downgrade_to.py
file added
+60
tests/test_exceptions.py
file added
+39
tests/test_goal.py
file added
+58
tests/test_groups.py
file added
+326
tests/test_history.py
file added
+505
tests/test_history_undo.py
file added
+302
tests/test_i18n.py
file added
+150
tests/test_install.py
file added
+497
tests/test_libcomps.py
file added
+77
tests/test_list.py
file added
+107
tests/test_lock.py
file added
+134
tests/test_logging.py
file added
+178
tests/test_main.py
file added
+46
tests/test_match_counter.py
file added
+136
tests/test_misc.py
file added
+36
tests/test_modules.py
file added
+332
tests/test_package.py
file added
+120
tests/test_persistor.py
file added
+50
tests/test_plugin.py
file added
+108
tests/test_provides.py
file added
+41
tests/test_queries.py
file added
+131
tests/test_reinstall.py
file added
+164
tests/test_remove.py
file added
+97
tests/test_repodict.py
file added
+62
tests/test_repoquery.py
file added
+149
tests/test_rpmconnection.py
file added
+33
tests/test_sack.py
file added
+90
tests/test_sanity.py
file added
+40
tests/test_subject.py
file added
+62
tests/test_transaction.py
file added
+257
tests/test_upgrade_to.py
file added
+55
tests/test_util.py
file added
+225
tox.ini
file added
+16
    dnf-4.2.17 base
    
        
file added
+17
file added
+13
file added
+96
file added
+38
file added
+339
file added
+14
file added
+107
file added
+2
file added
+32
file added
+58
file added
+2496
file added
+12
file added
+37
file added
+286
file added
+2537
file added
+125
file added
+31
file added
+204
file added
+1162
file added
+65
file added
+104
file added
+198
file added
+2312
file added
+202
file added
+389
file added
+129
file added
+717
file added
+46
file added
+505
file added
+110
file added
+58
file added
+199
file added
+17
file added
+378
file added
+548
file added
+308
file added
+180
file added
+189
file added
+24
file added
+25
file added
+354
file added
+148
file added
+245
file added
+121
file added
+298
file added
+133
file added
+251
file added
+113
file added
+46
file added
+658
file added
+143
file added
+130
file added
+22
file added
+65
file added
+126
file added
+76
file added
+24
file added
+25
file added
+124
file added
+506
file added
+19
file added
+457
file added
+420
file added
+36
file added
+19
file added
+79
file added
+249
file added
+102
file added
+143
file added
+34
file added
+132
file added
+90
file added
+236
file added
+184
file added
+95
file added
+219
file added
+159
file added
+32
file added
+34
file added
+32
file added
+51
file added
+174
file added
+446
file added
+1882
file added
+285
file added
+864
file added
+54
file added
+113
file added
+2293
file added
+82
file added
+3006
file added
+167
file added
+148
file added
+6
file added
+24
file added
+6
file added
+15
file added
+1
file added
+22
file added
+3611
file added
+3657
file added
+3616
file added
+3762
file added
+3766
file added
+3815
file added
+3822
file added
+3505
file added
+3617
file added
+3681
file added
+3676
file added
+3908
file added
+3654
file added
+3611
file added
+3647
file added
+3630
file added
+3898
file added
+3758
file added
+3617
file added
+3617
file added
+3620
file added
+2108
file added
+3611
file added
+3851
file added
+3630
file added
+3807
file added
+3709
file added
+3616
file added
+3615
file added
+3648
file added
+3630
file added
+3613
file added
+3612
file added
+3616
file added
+3625
file added
+3831
file added
+3611
file added
+3659
file added
+3859
file added
+3715
file added
+3785
file added
+3823
file added
+3628
file added
+3614
file added
+3662
file added
+2125
file added
+3815
file added
+3617
file added
+3676
file added
+3830
file added
+2108
file added
+7
file added
+3709
file added
+3687
file added
+7
file added
+9
file added
+43
file added
+3
file added
+2
file added
+14
file added
+23
file added
+30
file added
+2365
empty file added
empty file added
empty file added
empty file added
file added
+732
file added
+38
file added
+40
file added
+309
file added
+64
file added
+252
file added
+887
file added
+340
file added
+147
file added
+81
file added
+94
file added
+58
file added
+326
file added
+505
file added
+150
file added
+497
file added
+107
file added
+134
file added
+178
file added
+46
file added
+36
file added
+332
file added
+120
file added
+108
file added
+131
file added
+97
file added
+90
file added
+40
file added
+225
file added
+16