├── .clang-format ├── .copr └── Makefile ├── .git-commit-template ├── .github ├── CODEOWNERS └── workflows │ └── ci.yml ├── .gitignore ├── .packit.yaml ├── .pre-commit-config.yaml ├── .tito ├── packages │ └── .readme └── tito.props ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── README.md ├── VERSION.cmake ├── bindings ├── perl │ └── CMakeLists.txt ├── python │ ├── CMakeLists.txt │ └── __init__.py └── swig │ ├── catch_error.i │ ├── common_types.i │ ├── conf.i │ ├── error.i │ ├── module.i │ ├── repo.i │ ├── smartcols.i │ ├── std_vector_ext.i │ ├── transaction.i │ └── utils.i ├── cmake ├── modules-cmake-2 │ └── UseSWIG.cmake └── modules │ ├── FindGLIB.cmake │ ├── FindGtkDoc.cmake │ ├── FindPythonInstDir.cmake │ └── GtkDocScanGObjWrapper.cmake ├── data └── tests │ ├── advisories │ ├── modules.yaml │ ├── recreate │ ├── repodata │ │ ├── filelists.xml.gz │ │ ├── modules.yaml.gz │ │ ├── other.xml.gz │ │ ├── primary.xml.gz │ │ ├── repomd.xml │ │ └── updateinfo.xml.gz │ ├── test-perl-DBI-1-2.module_el8+6587+9879afr5.x86_64.rpm │ ├── test-perl-DBI-1-2.module_el8+6745+9879ate3.x86_64.rpm │ └── updateinfo.xml │ ├── cache-test │ └── yum.repos.d │ │ └── fedora.repo │ ├── gpg-asc │ ├── repodata │ │ ├── primary.sqlite.bz2 │ │ ├── repomd.xml │ │ ├── repomd.xml.asc │ │ └── sign.sh │ └── yum.repos.d │ │ └── gpg-repo-asc.repo │ ├── gpg-no-asc │ ├── repodata │ │ ├── primary.sqlite.bz2 │ │ └── repomd.xml │ └── yum.repos.d │ │ └── gpg-repo-no-asc.repo │ ├── gpg-no-pubkey │ └── gpg-repo-no-pubkey.repo │ ├── gpg-wrong-asc │ ├── repodata │ │ ├── primary.sqlite.bz2 │ │ ├── repomd.xml │ │ └── repomd.xml.asc │ └── yum.repos.d │ │ └── gpg-repo-wrong-asc.repo │ ├── gpgkey │ ├── .gitignore │ ├── pubring.gpg │ ├── secring.gpg │ └── signing_key.pub │ ├── hawkey │ ├── @System-broken.repo │ ├── @System-k.repo │ ├── @System.repo │ ├── change.repo │ ├── forcebest.repo │ ├── greedy.repo │ ├── installonly.repo │ ├── main.repo │ ├── ppc.repo │ ├── updates.repo │ ├── vendor.repo │ ├── yum │ │ ├── drpms │ │ │ └── tour-4-5_4-6.noarch.drpm │ │ ├── mystery-devel-19.67-1.noarch.rpm │ │ ├── mystery.spec │ │ ├── recreate │ │ ├── repodata │ │ │ ├── 4d4b903662ace0b08bda1d53f89c333614b7f658172bc9f0c87b0eef276ff5a1-filelists.xml.gz │ │ │ ├── 51fb8278682bdb0ea0956720b098dadf637efc01566acb48203c54c90ba86dda-other.xml.gz │ │ │ ├── 52d800b3426c540bb88a80d01fb6c8d227ae14edca7446fa0f348a286223fb8b-prestodelta.xml.gz │ │ │ ├── f1ab2aa6c0e5881b9365f83a951e6696812ebfaaf56fee310c3f080c8849a1b4-primary.xml.gz │ │ │ ├── repomd.xml │ │ │ └── updateinfo.xml.gz │ │ ├── tour-4-6.noarch.rpm │ │ ├── tour.spec │ │ └── updateinfo.xml.gz │ └── yum_oldrpms │ │ └── tour-4-5.noarch.rpm │ ├── modules │ ├── defaults │ │ └── httpd.yaml │ ├── etc │ │ └── dnf │ │ │ ├── dnf.conf │ │ │ ├── dnf.conf.in │ │ │ ├── modules.d │ │ │ ├── base-runtime.module │ │ │ └── httpd.module │ │ │ ├── modules.defaults.d │ │ │ ├── base-runtime.yaml │ │ │ └── httpd.yaml │ │ │ └── repos.d │ │ │ ├── boltron.repo │ │ │ ├── copr.repo │ │ │ ├── fedora-modular-updates.repo │ │ │ ├── fedora-modular.repo │ │ │ ├── fedora.repo │ │ │ ├── test.repo │ │ │ └── test.repo.in │ ├── modules │ │ ├── _all │ │ │ ├── i686 │ │ │ │ ├── base-runtime-f26-1.i686.yaml │ │ │ │ ├── base-runtime-f26-2.i686.yaml │ │ │ │ ├── base-runtime-rhel73-1.i686.yaml │ │ │ │ ├── basesystem-10.0-7.noarch.rpm │ │ │ │ ├── basesystem-11-3.noarch.rpm │ │ │ │ ├── bash-4.2.46-21.i686.rpm │ │ │ │ ├── bash-4.4.12-2.i686.rpm │ │ │ │ ├── bash-doc-4.2.46-21.noarch.rpm │ │ │ │ ├── bash-doc-4.4.12-2.noarch.rpm │ │ │ │ ├── dummy-nscd-2.17-157.i686.rpm │ │ │ │ ├── dummy-nscd-2.25-4.i686.rpm │ │ │ │ ├── dummy-nscd-2.25.90-2.i686.rpm │ │ │ │ ├── filesystem-3.2-21.i686.rpm │ │ │ │ ├── filesystem-3.2-40.i686.rpm │ │ │ │ ├── glibc-2.17-157.i686.rpm │ │ │ │ ├── glibc-2.25-4.i686.rpm │ │ │ │ ├── glibc-2.25.90-2.i686.rpm │ │ │ │ ├── glibc-common-2.17-157.i686.rpm │ │ │ │ ├── glibc-common-2.25-4.i686.rpm │ │ │ │ ├── glibc-common-2.25.90-2.i686.rpm │ │ │ │ ├── glibc-debuginfo-common-2.17-157.i686.rpm │ │ │ │ ├── glibc-debuginfo-common-2.25-4.i686.rpm │ │ │ │ ├── glibc-debuginfo-common-2.25.90-2.i686.rpm │ │ │ │ ├── grub2-2.02-0.40.i686.rpm │ │ │ │ ├── httpd-2.2-1.i686.yaml │ │ │ │ ├── httpd-2.2.10-1.i686.rpm │ │ │ │ ├── httpd-2.2.15-59.i686.rpm │ │ │ │ ├── httpd-2.4-1.i686.yaml │ │ │ │ ├── httpd-2.4-2.i686.yaml │ │ │ │ ├── httpd-2.4.25-7.i686.rpm │ │ │ │ ├── httpd-2.4.25-8.i686.rpm │ │ │ │ ├── httpd-doc-2.2.10-1.i686.rpm │ │ │ │ ├── httpd-doc-2.2.15-59.i686.rpm │ │ │ │ ├── httpd-doc-2.4.25-7.i686.rpm │ │ │ │ ├── httpd-doc-2.4.25-8.i686.rpm │ │ │ │ ├── httpd-provides-name-3.0-1.i686.rpm │ │ │ │ ├── httpd-provides-name-doc-3.0-1.i686.rpm │ │ │ │ ├── httpd-provides-name-version-release-3.0-1.i686.rpm │ │ │ │ ├── httpd-provides-name-version-release-doc-3.0-1.i686.rpm │ │ │ │ ├── httpd.yaml │ │ │ │ ├── kernel-3.10.0-514.i686.rpm │ │ │ │ ├── kernel-4.11.0-1.i686.rpm │ │ │ │ ├── kernel-doc-3.10.0-514.noarch.rpm │ │ │ │ ├── kernel-doc-4.11.0-1.noarch.rpm │ │ │ │ ├── kernel-headers-3.10.0-514.i686.rpm │ │ │ │ ├── kernel-headers-4.11.0-1.i686.rpm │ │ │ │ ├── libnghttp2-1.21.1-1.1.i686.rpm │ │ │ │ ├── libnghttp2-1.21.1-1.i686.rpm │ │ │ │ ├── repodata │ │ │ │ │ ├── 006316d6be24801d3eab16966f9054e2676de83dca78f52871d1a15e2b72e79e-other.xml.gz │ │ │ │ │ ├── 27c16fcce1e460811fc9c9edc21d54f52aa75dd49365d66d010ac3fb506803f2-primary.xml.gz │ │ │ │ │ ├── 2b48025c07f5cfd5170fe7326855d09d65914fc7c14d74998b6226a72451d903-filelists.xml.gz │ │ │ │ │ ├── 323709d382b9a9b290d714dab4dab7153aafa895681583c393db1540d0466ed3-filelists.sqlite.bz2 │ │ │ │ │ ├── 6cefdf84131c57f1e0a7e40c3fb025df22e4938e6b690e6c9835f3d89fa67638-other.sqlite.bz2 │ │ │ │ │ ├── 6da5c34843c0889b8a035ff92062f197da16a59518c65362e34888f94511f847-primary.sqlite.bz2 │ │ │ │ │ ├── d50c329d3c3b4f34044ae534725bc06c9ee9f459f27586aacc8f4e8f3331bff1-modules.yaml.gz │ │ │ │ │ └── repomd.xml │ │ │ │ ├── systemd-219-30.i686.rpm │ │ │ │ └── systemd-233-3.i686.rpm │ │ │ ├── s390x │ │ │ │ ├── base-runtime-f26-1.s390x.yaml │ │ │ │ ├── base-runtime-f26-2.s390x.yaml │ │ │ │ ├── base-runtime-rhel73-1.s390x.yaml │ │ │ │ ├── basesystem-10.0-7.noarch.rpm │ │ │ │ ├── basesystem-11-3.noarch.rpm │ │ │ │ ├── bash-4.2.46-21.s390x.rpm │ │ │ │ ├── bash-4.4.12-2.s390x.rpm │ │ │ │ ├── bash-doc-4.2.46-21.noarch.rpm │ │ │ │ ├── bash-doc-4.4.12-2.noarch.rpm │ │ │ │ ├── dummy-nscd-2.17-157.s390x.rpm │ │ │ │ ├── dummy-nscd-2.25-4.s390x.rpm │ │ │ │ ├── dummy-nscd-2.25.90-2.s390x.rpm │ │ │ │ ├── filesystem-3.2-21.s390x.rpm │ │ │ │ ├── filesystem-3.2-40.s390x.rpm │ │ │ │ ├── glibc-2.17-157.s390x.rpm │ │ │ │ ├── glibc-2.25-4.s390x.rpm │ │ │ │ ├── glibc-2.25.90-2.s390x.rpm │ │ │ │ ├── glibc-common-2.17-157.s390x.rpm │ │ │ │ ├── glibc-common-2.25-4.s390x.rpm │ │ │ │ ├── glibc-common-2.25.90-2.s390x.rpm │ │ │ │ ├── glibc-debuginfo-common-2.17-157.s390x.rpm │ │ │ │ ├── glibc-debuginfo-common-2.25-4.s390x.rpm │ │ │ │ ├── glibc-debuginfo-common-2.25.90-2.s390x.rpm │ │ │ │ ├── grub2-2.02-0.40.s390x.rpm │ │ │ │ ├── httpd-2.2-1.s390x.yaml │ │ │ │ ├── httpd-2.2.10-1.s390x.rpm │ │ │ │ ├── httpd-2.2.15-59.s390x.rpm │ │ │ │ ├── httpd-2.4-1.s390x.yaml │ │ │ │ ├── httpd-2.4-2.s390x.yaml │ │ │ │ ├── httpd-2.4.25-7.s390x.rpm │ │ │ │ ├── httpd-2.4.25-8.s390x.rpm │ │ │ │ ├── httpd-doc-2.2.10-1.s390x.rpm │ │ │ │ ├── httpd-doc-2.2.15-59.s390x.rpm │ │ │ │ ├── httpd-doc-2.4.25-7.s390x.rpm │ │ │ │ ├── httpd-doc-2.4.25-8.s390x.rpm │ │ │ │ ├── httpd-provides-name-3.0-1.s390x.rpm │ │ │ │ ├── httpd-provides-name-doc-3.0-1.s390x.rpm │ │ │ │ ├── httpd-provides-name-version-release-3.0-1.s390x.rpm │ │ │ │ ├── httpd-provides-name-version-release-doc-3.0-1.s390x.rpm │ │ │ │ ├── httpd.yaml │ │ │ │ ├── kernel-3.10.0-514.s390x.rpm │ │ │ │ ├── kernel-4.11.0-1.s390x.rpm │ │ │ │ ├── kernel-doc-3.10.0-514.noarch.rpm │ │ │ │ ├── kernel-doc-4.11.0-1.noarch.rpm │ │ │ │ ├── kernel-headers-3.10.0-514.s390x.rpm │ │ │ │ ├── kernel-headers-4.11.0-1.s390x.rpm │ │ │ │ ├── libnghttp2-1.21.1-1.1.s390x.rpm │ │ │ │ ├── libnghttp2-1.21.1-1.s390x.rpm │ │ │ │ ├── repodata │ │ │ │ │ ├── 425cec0f040291008c346d22f9baea2594b5991d9b0f507d6349a6c905b7b82e-modules.yaml.gz │ │ │ │ │ ├── 4a4495b4a9ca8d88506fe8e69d8f78f8ce15fff85185aee7b655e497bc62e04a-primary.xml.gz │ │ │ │ │ ├── 9a2de3d81cefc7d5f464f0a6b7494db74f0c65a6b8c62e6c7b084a30532181d4-other.sqlite.bz2 │ │ │ │ │ ├── d5e48682cd192e754842cb9db90de2a097514f535ea228d9e1dbf9b9b6e24d9d-filelists.xml.gz │ │ │ │ │ ├── e604471cac154e78c098d14de5ba51cf9ad6c10c4187006eeb67b2b2c50a4440-other.xml.gz │ │ │ │ │ ├── e86f1444bd807c0d5572e8459a87760babc6f399207f81627a6100a7efd769bc-primary.sqlite.bz2 │ │ │ │ │ ├── f725aa4c6cc441b905246cbc159bc62e090ce655c65892df6988e4468d155162-filelists.sqlite.bz2 │ │ │ │ │ └── repomd.xml │ │ │ │ ├── systemd-219-30.s390x.rpm │ │ │ │ └── systemd-233-3.s390x.rpm │ │ │ └── x86_64 │ │ │ │ ├── base-runtime-f26-1.x86_64.yaml │ │ │ │ ├── base-runtime-f26-2.x86_64.yaml │ │ │ │ ├── base-runtime-rhel73-1.x86_64.yaml │ │ │ │ ├── basesystem-10.0-7.noarch.rpm │ │ │ │ ├── basesystem-11-3.noarch.rpm │ │ │ │ ├── bash-4.2.46-21.x86_64.rpm │ │ │ │ ├── bash-4.4.12-2.x86_64.rpm │ │ │ │ ├── bash-doc-4.2.46-21.noarch.rpm │ │ │ │ ├── bash-doc-4.4.12-2.noarch.rpm │ │ │ │ ├── dummy-nscd-2.17-157.x86_64.rpm │ │ │ │ ├── dummy-nscd-2.25-4.x86_64.rpm │ │ │ │ ├── dummy-nscd-2.25.90-2.x86_64.rpm │ │ │ │ ├── filesystem-3.2-21.x86_64.rpm │ │ │ │ ├── filesystem-3.2-40.x86_64.rpm │ │ │ │ ├── glibc-2.17-157.x86_64.rpm │ │ │ │ ├── glibc-2.25-4.x86_64.rpm │ │ │ │ ├── glibc-2.25.90-2.x86_64.rpm │ │ │ │ ├── glibc-common-2.17-157.x86_64.rpm │ │ │ │ ├── glibc-common-2.25-4.x86_64.rpm │ │ │ │ ├── glibc-common-2.25.90-2.x86_64.rpm │ │ │ │ ├── glibc-debuginfo-common-2.17-157.x86_64.rpm │ │ │ │ ├── glibc-debuginfo-common-2.25-4.x86_64.rpm │ │ │ │ ├── glibc-debuginfo-common-2.25.90-2.x86_64.rpm │ │ │ │ ├── grub2-2.02-0.40.x86_64.rpm │ │ │ │ ├── httpd-2.2-1.x86_64.yaml │ │ │ │ ├── httpd-2.2.10-1.x86_64.rpm │ │ │ │ ├── httpd-2.2.15-59.x86_64.rpm │ │ │ │ ├── httpd-2.4-1.x86_64.yaml │ │ │ │ ├── httpd-2.4-2.x86_64.yaml │ │ │ │ ├── httpd-2.4.25-7.x86_64.rpm │ │ │ │ ├── httpd-2.4.25-8.x86_64.rpm │ │ │ │ ├── httpd-doc-2.2.10-1.x86_64.rpm │ │ │ │ ├── httpd-doc-2.2.15-59.x86_64.rpm │ │ │ │ ├── httpd-doc-2.4.25-7.x86_64.rpm │ │ │ │ ├── httpd-doc-2.4.25-8.x86_64.rpm │ │ │ │ ├── httpd-provides-name-3.0-1.x86_64.rpm │ │ │ │ ├── httpd-provides-name-doc-3.0-1.x86_64.rpm │ │ │ │ ├── httpd-provides-name-version-release-3.0-1.x86_64.rpm │ │ │ │ ├── httpd-provides-name-version-release-doc-3.0-1.x86_64.rpm │ │ │ │ ├── httpd.yaml │ │ │ │ ├── kernel-3.10.0-514.x86_64.rpm │ │ │ │ ├── kernel-4.11.0-1.x86_64.rpm │ │ │ │ ├── kernel-doc-3.10.0-514.noarch.rpm │ │ │ │ ├── kernel-doc-4.11.0-1.noarch.rpm │ │ │ │ ├── kernel-headers-3.10.0-514.x86_64.rpm │ │ │ │ ├── kernel-headers-4.11.0-1.x86_64.rpm │ │ │ │ ├── libnghttp2-1.21.1-1.1.x86_64.rpm │ │ │ │ ├── libnghttp2-1.21.1-1.x86_64.rpm │ │ │ │ ├── repodata │ │ │ │ ├── 02517771d46f54572e172605d193e70f158fc88db676cd7d02158736a8f8c7f8-modules.yaml.gz │ │ │ │ ├── 02dd29c9b3c78f6d04f8853f7833cd63947eb3ef877917ef9a96839889d9f98f-other.xml.gz │ │ │ │ ├── 7b20d2285e9d41d2f96f67029a28d11249485ad787606017bd855a3263d2209b-primary.xml.gz │ │ │ │ ├── a523bcf4140225dbb5a17cfc86ad198f02722913f219dd50d29eb6465acf8ca1-filelists.sqlite.bz2 │ │ │ │ ├── c66ef9ad85b472dd8bfd68105fc5e2669b0ae73f18fd39ae6eb046665857feba-other.sqlite.bz2 │ │ │ │ ├── d36cc059f1588d02469a7259af1a2a3b7764c2c039483b9c2fb8f61ac766ee7c-primary.sqlite.bz2 │ │ │ │ ├── fca8343fe9e52b62cbf4b64a0730ffb546bda5542286a884da54c1db5e522943-filelists.xml.gz │ │ │ │ └── repomd.xml │ │ │ │ ├── systemd-219-30.x86_64.rpm │ │ │ │ └── systemd-233-3.x86_64.rpm │ │ ├── _non-modular │ │ │ ├── i686 │ │ │ │ ├── grub2-2.02-0.40.i686.rpm │ │ │ │ ├── httpd-2.2.10-1.i686.rpm │ │ │ │ ├── httpd-doc-2.2.10-1.i686.rpm │ │ │ │ ├── httpd-provides-name-3.0-1.i686.rpm │ │ │ │ ├── httpd-provides-name-doc-3.0-1.i686.rpm │ │ │ │ ├── httpd-provides-name-version-release-3.0-1.i686.rpm │ │ │ │ ├── httpd-provides-name-version-release-doc-3.0-1.i686.rpm │ │ │ │ ├── libnghttp2-1.21.1-1.1.i686.rpm │ │ │ │ └── repodata │ │ │ │ │ ├── 096ae18f96184669091bda3099fad01c34f6979ef0cf845e4d16a2957c866d61-other.sqlite.bz2 │ │ │ │ │ ├── 3d5f972e2bc031327f700070ea2ecaea8683cab617e076aefca14ba2a498f65b-filelists.xml.gz │ │ │ │ │ ├── 5dfb619f487431ed8697b8351dfc08b8bd1d523a17ea44ce2a19a0a308c04c16-primary.sqlite.bz2 │ │ │ │ │ ├── 77cc6a35562eea13f53bf8959047662c3e69b5b8a073a26ef456fb871ce193df-primary.xml.gz │ │ │ │ │ ├── 861d4c320499af7bb56d516e6045bd94690fe7227d4734892ad4f8b67223a9f3-other.xml.gz │ │ │ │ │ ├── ae880ec5a096a7e64884ea29c570629f60571171dce67d9255aa914d8e392312-filelists.sqlite.bz2 │ │ │ │ │ └── repomd.xml │ │ │ ├── s390x │ │ │ │ ├── grub2-2.02-0.40.s390x.rpm │ │ │ │ ├── httpd-2.2.10-1.s390x.rpm │ │ │ │ ├── httpd-doc-2.2.10-1.s390x.rpm │ │ │ │ ├── httpd-provides-name-3.0-1.s390x.rpm │ │ │ │ ├── httpd-provides-name-doc-3.0-1.s390x.rpm │ │ │ │ ├── httpd-provides-name-version-release-3.0-1.s390x.rpm │ │ │ │ ├── httpd-provides-name-version-release-doc-3.0-1.s390x.rpm │ │ │ │ ├── libnghttp2-1.21.1-1.1.s390x.rpm │ │ │ │ └── repodata │ │ │ │ │ ├── 01a1ea0f98f45165e5469df1d5d70d32fe2d2264943cafb6b24e78041ba5c9db-other.sqlite.bz2 │ │ │ │ │ ├── 5cc44c658d10d38fadf6bf8ad71668865adefab762fd216430e64331a55dafdf-other.xml.gz │ │ │ │ │ ├── 76ca04b0198da7724c75b7360912e9dcddf68499a4c183a487cdc25a336fec6e-filelists.sqlite.bz2 │ │ │ │ │ ├── 935f9df4746c1674c5a07cd2790f4d1ec31a54da08868586cba1fb1c1c428d52-primary.xml.gz │ │ │ │ │ ├── acde40c6b5b640abc461dfa52da1573940d8b309b1d9096a8f822fa71054a57f-primary.sqlite.bz2 │ │ │ │ │ ├── e8f85878c5901a3c02e5373fcefb041a80dc8cca78e684592666781729452eb1-filelists.xml.gz │ │ │ │ │ └── repomd.xml │ │ │ ├── src │ │ │ │ ├── grub2-2.02-0.40.src.rpm │ │ │ │ ├── httpd-2.2.10-1.src.rpm │ │ │ │ ├── httpd-provides-name-3.0-1.src.rpm │ │ │ │ ├── httpd-provides-name-version-release-3.0-1.src.rpm │ │ │ │ └── libnghttp2-1.21.1-1.1.src.rpm │ │ │ └── x86_64 │ │ │ │ ├── grub2-2.02-0.40.x86_64.rpm │ │ │ │ ├── httpd-2.2.10-1.x86_64.rpm │ │ │ │ ├── httpd-doc-2.2.10-1.x86_64.rpm │ │ │ │ ├── httpd-provides-name-3.0-1.x86_64.rpm │ │ │ │ ├── httpd-provides-name-doc-3.0-1.x86_64.rpm │ │ │ │ ├── httpd-provides-name-version-release-3.0-1.x86_64.rpm │ │ │ │ ├── httpd-provides-name-version-release-doc-3.0-1.x86_64.rpm │ │ │ │ ├── libnghttp2-1.21.1-1.1.x86_64.rpm │ │ │ │ └── repodata │ │ │ │ ├── 02551ec5b2a6acabac4e4361ec903c7802992c7dfa4eb9f7bc0ab57a929d6bd4-other.xml.gz │ │ │ │ ├── 1b8d7f694316cdbec76d6c73bc57fb21e2fc3c61cc1e9fa141ed8b5597c43064-filelists.xml.gz │ │ │ │ ├── 41385c9995c56b5c0b3bb1fbc467a7574a4fe135c87141b332931c66ad8a2b5a-filelists.sqlite.bz2 │ │ │ │ ├── 6babe0569d363520bb15614564ebe1f650a7e6a9954d4495aa95ab6a095d0407-primary.sqlite.bz2 │ │ │ │ ├── 76753a7f9105e5ed8337991367a498ba6843ebe3f0778b9708aab2c4188f87d2-primary.xml.gz │ │ │ │ ├── 93ee02e99edca2f3d0bf9181e3db2a63373114e8b947ef62608fb04a4a1bc735-other.sqlite.bz2 │ │ │ │ └── repomd.xml │ │ ├── base-runtime-f26-1 │ │ │ ├── i686 │ │ │ │ ├── base-runtime-f26-1.i686.yaml │ │ │ │ ├── basesystem-11-3.noarch.rpm │ │ │ │ ├── bash-4.4.12-2.i686.rpm │ │ │ │ ├── bash-doc-4.4.12-2.noarch.rpm │ │ │ │ ├── dummy-nscd-2.25-4.i686.rpm │ │ │ │ ├── filesystem-3.2-40.i686.rpm │ │ │ │ ├── glibc-2.25-4.i686.rpm │ │ │ │ ├── glibc-common-2.25-4.i686.rpm │ │ │ │ ├── glibc-debuginfo-common-2.25-4.i686.rpm │ │ │ │ ├── kernel-4.11.0-1.i686.rpm │ │ │ │ ├── kernel-doc-4.11.0-1.noarch.rpm │ │ │ │ ├── kernel-headers-4.11.0-1.i686.rpm │ │ │ │ ├── repodata │ │ │ │ │ ├── 0bd99465a38e120f2473242cad12bfb3b772b24b8ecae39bffbd9cdef9d11f71-filelists.xml.gz │ │ │ │ │ ├── 290e9c7ad54ffb0267d799c6d5e5f6f0adaeaffdd79f9a3a87a2deb6e676cea7-modules.yaml.gz │ │ │ │ │ ├── 5da22eedca922651c9d71f60ddec76008be605232430ebf7eac1c98d73e5a191-primary.xml.gz │ │ │ │ │ ├── 9b9b45a44325ff1cbfa5021c8cfadad7638397c07c2cba4ec4862e9a20fff668-other.xml.gz │ │ │ │ │ ├── b5cc02335c9184dbec171c140cfb01e027d48f5d4ee3ddc022768f10eadadd8f-primary.sqlite.bz2 │ │ │ │ │ ├── c159da6b52949d6b9e2fc9c17e1ca904974b97e36b5c3626b557d503e3004834-filelists.sqlite.bz2 │ │ │ │ │ ├── f4da985cff145ce4ec4b63175cfd593b99ce4fe51c886367189f2acdbb8b2b2e-other.sqlite.bz2 │ │ │ │ │ └── repomd.xml │ │ │ │ └── systemd-233-3.i686.rpm │ │ │ ├── noarch │ │ │ │ ├── basesystem-11-3.noarch.rpm │ │ │ │ ├── bash-doc-4.4.12-2.noarch.rpm │ │ │ │ └── kernel-doc-4.11.0-1.noarch.rpm │ │ │ ├── s390x │ │ │ │ ├── base-runtime-f26-1.s390x.yaml │ │ │ │ ├── basesystem-11-3.noarch.rpm │ │ │ │ ├── bash-4.4.12-2.s390x.rpm │ │ │ │ ├── bash-doc-4.4.12-2.noarch.rpm │ │ │ │ ├── dummy-nscd-2.25-4.s390x.rpm │ │ │ │ ├── filesystem-3.2-40.s390x.rpm │ │ │ │ ├── glibc-2.25-4.s390x.rpm │ │ │ │ ├── glibc-common-2.25-4.s390x.rpm │ │ │ │ ├── glibc-debuginfo-common-2.25-4.s390x.rpm │ │ │ │ ├── kernel-4.11.0-1.s390x.rpm │ │ │ │ ├── kernel-doc-4.11.0-1.noarch.rpm │ │ │ │ ├── kernel-headers-4.11.0-1.s390x.rpm │ │ │ │ ├── repodata │ │ │ │ │ ├── 2af29a3797759547f96d5da9aa7a81b2b49e50878f9c7209737b48084ed141b5-filelists.xml.gz │ │ │ │ │ ├── 4b15355abdab48ad730e33090f1efbec3999353e01039a8cbee28150c761caac-other.xml.gz │ │ │ │ │ ├── 9af251c9d796b28d8045301069ef24001d66119fb81bdb7a9cb2ad8308f34911-other.sqlite.bz2 │ │ │ │ │ ├── c8ab38018567345263fe704c401524d1fe9545b6471692b28e9524c0a23cd80b-modules.yaml.gz │ │ │ │ │ ├── e8bcdb6cea307ff90c3a62290701a75eb41515770e01384a00b2c260bea30bda-primary.sqlite.bz2 │ │ │ │ │ ├── eecb72efa7593c66ba79a31710f7557060ddd2349fb354ee072e5e9915a2fef0-filelists.sqlite.bz2 │ │ │ │ │ ├── f71040c22559fe0075676b32208bf5fb30288a851ed06f00aef5fb87486297f3-primary.xml.gz │ │ │ │ │ └── repomd.xml │ │ │ │ └── systemd-233-3.s390x.rpm │ │ │ ├── src │ │ │ │ ├── base-runtime-f26-1.src.yaml │ │ │ │ ├── basesystem-11-3.src.rpm │ │ │ │ ├── bash-4.4.12-2.src.rpm │ │ │ │ ├── filesystem-3.2-40.src.rpm │ │ │ │ ├── glibc-2.25-4.src.rpm │ │ │ │ ├── kernel-4.11.0-1.src.rpm │ │ │ │ └── systemd-233-3.src.rpm │ │ │ └── x86_64 │ │ │ │ ├── base-runtime-f26-1.x86_64.yaml │ │ │ │ ├── basesystem-11-3.noarch.rpm │ │ │ │ ├── bash-4.4.12-2.x86_64.rpm │ │ │ │ ├── bash-doc-4.4.12-2.noarch.rpm │ │ │ │ ├── dummy-nscd-2.25-4.x86_64.rpm │ │ │ │ ├── filesystem-3.2-40.x86_64.rpm │ │ │ │ ├── glibc-2.25-4.x86_64.rpm │ │ │ │ ├── glibc-common-2.25-4.x86_64.rpm │ │ │ │ ├── glibc-debuginfo-common-2.25-4.x86_64.rpm │ │ │ │ ├── kernel-4.11.0-1.x86_64.rpm │ │ │ │ ├── kernel-doc-4.11.0-1.noarch.rpm │ │ │ │ ├── kernel-headers-4.11.0-1.x86_64.rpm │ │ │ │ ├── repodata │ │ │ │ ├── 2701513854bc03cd5f978041407e1c25a780abf79e62f1d2304abd49fb030bfe-modules.yaml.gz │ │ │ │ ├── 29ab3a3a200636de5a429bcf221ef71c0b522b150dbb9a2a9ae52de381880f0d-filelists.xml.gz │ │ │ │ ├── 5fb61d376156ab4ce31330757f19e57378cc885597413ad787f5277fbf7280b1-primary.xml.gz │ │ │ │ ├── 6fd2b7ce8c8d049bae4d7e0b398148d71c01fd28ac0d2524e609aadb5dab3052-other.xml.gz │ │ │ │ ├── bea9d5e3288aaf0115434606cef08896fc0384149bf873547ef10cd27ba815e6-primary.sqlite.bz2 │ │ │ │ ├── d7307716cc7ee39258a94c534a7a5c6bcd442d2cb0a0cdc1c234877691e148c8-filelists.sqlite.bz2 │ │ │ │ ├── e7a8e17dd64ba565a84139cf92a9a543a8a17bddc0e6332fbcd1bfe20a77d7d2-other.sqlite.bz2 │ │ │ │ └── repomd.xml │ │ │ │ └── systemd-233-3.x86_64.rpm │ │ ├── base-runtime-f26-2 │ │ │ ├── i686 │ │ │ │ ├── base-runtime-f26-2.i686.yaml │ │ │ │ ├── basesystem-11-3.noarch.rpm │ │ │ │ ├── bash-4.4.12-2.i686.rpm │ │ │ │ ├── bash-doc-4.4.12-2.noarch.rpm │ │ │ │ ├── dummy-nscd-2.25.90-2.i686.rpm │ │ │ │ ├── filesystem-3.2-40.i686.rpm │ │ │ │ ├── glibc-2.25.90-2.i686.rpm │ │ │ │ ├── glibc-common-2.25.90-2.i686.rpm │ │ │ │ ├── glibc-debuginfo-common-2.25.90-2.i686.rpm │ │ │ │ ├── kernel-4.11.0-1.i686.rpm │ │ │ │ ├── kernel-doc-4.11.0-1.noarch.rpm │ │ │ │ ├── kernel-headers-4.11.0-1.i686.rpm │ │ │ │ ├── repodata │ │ │ │ │ ├── 2c646459aed861bcfedd9538ad43c4e06cecc0d8bf50ff88a42ce92c093c3cf1-primary.xml.gz │ │ │ │ │ ├── 3f5fbc10b586ac5d557e8e423c07b323c6ccdfc065fa5a38942ffddc56c6dec5-modules.yaml.gz │ │ │ │ │ ├── a8239c88869b30de18e2241890cd3543e1525e41991c99068022a4117505bcf5-other.sqlite.bz2 │ │ │ │ │ ├── b85a173d4d57c2d4b09e252de36f24f38cf0f5b6194a12b7d95aacf312f21004-primary.sqlite.bz2 │ │ │ │ │ ├── e3d0d959c1b041e215dbf37172d389b10035b02ed0312569842e9fdbd117b812-filelists.sqlite.bz2 │ │ │ │ │ ├── ed6d0a90af4f1a1d7577763077717f4e8c9e9118b7e815824c488825d3f40541-filelists.xml.gz │ │ │ │ │ ├── f0cc45d85b3e8db94359796062b716f2ee68f23e1ce6b05e229faa7f0b653878-other.xml.gz │ │ │ │ │ └── repomd.xml │ │ │ │ └── systemd-233-3.i686.rpm │ │ │ ├── noarch │ │ │ │ ├── basesystem-11-3.noarch.rpm │ │ │ │ ├── bash-doc-4.4.12-2.noarch.rpm │ │ │ │ └── kernel-doc-4.11.0-1.noarch.rpm │ │ │ ├── s390x │ │ │ │ ├── base-runtime-f26-2.s390x.yaml │ │ │ │ ├── basesystem-11-3.noarch.rpm │ │ │ │ ├── bash-4.4.12-2.s390x.rpm │ │ │ │ ├── bash-doc-4.4.12-2.noarch.rpm │ │ │ │ ├── dummy-nscd-2.25.90-2.s390x.rpm │ │ │ │ ├── filesystem-3.2-40.s390x.rpm │ │ │ │ ├── glibc-2.25.90-2.s390x.rpm │ │ │ │ ├── glibc-common-2.25.90-2.s390x.rpm │ │ │ │ ├── glibc-debuginfo-common-2.25.90-2.s390x.rpm │ │ │ │ ├── kernel-4.11.0-1.s390x.rpm │ │ │ │ ├── kernel-doc-4.11.0-1.noarch.rpm │ │ │ │ ├── kernel-headers-4.11.0-1.s390x.rpm │ │ │ │ ├── repodata │ │ │ │ │ ├── 10a489e767aefa063ebc4a8e6650a635a7534a5579690e831c71988a2a801eae-other.xml.gz │ │ │ │ │ ├── 11161c3a866a02ec7a6f84ad1a6111348abdb6e89634f3e07ed1cce2750065cf-primary.sqlite.bz2 │ │ │ │ │ ├── 3b9a21f2174811d9077ee95afd017d6cd1cd6f5a38cf91f1c9baa91799bae176-other.sqlite.bz2 │ │ │ │ │ ├── 4b07987399cff660d9e144d0a44c6ceba3c10642d0b82523d3131f9895d89780-primary.xml.gz │ │ │ │ │ ├── 6922ea6fc78050b5726b7efcc48448535a6bb9461bb5cd8ecec954a65ea57305-filelists.xml.gz │ │ │ │ │ ├── cae4b2e914c0341bf033c733555e06b64329baa1024dab16b2c4f5951f05334a-filelists.sqlite.bz2 │ │ │ │ │ ├── e015590a3ac04f560d4ed2b5e616b9c5484554a3d9f6664184e375e760774b52-modules.yaml.gz │ │ │ │ │ └── repomd.xml │ │ │ │ └── systemd-233-3.s390x.rpm │ │ │ ├── src │ │ │ │ ├── base-runtime-f26-2.src.yaml │ │ │ │ ├── basesystem-11-3.src.rpm │ │ │ │ ├── bash-4.4.12-2.src.rpm │ │ │ │ ├── filesystem-3.2-40.src.rpm │ │ │ │ ├── glibc-2.25.90-2.src.rpm │ │ │ │ ├── kernel-4.11.0-1.src.rpm │ │ │ │ └── systemd-233-3.src.rpm │ │ │ └── x86_64 │ │ │ │ ├── base-runtime-f26-2.x86_64.yaml │ │ │ │ ├── basesystem-11-3.noarch.rpm │ │ │ │ ├── bash-4.4.12-2.x86_64.rpm │ │ │ │ ├── bash-doc-4.4.12-2.noarch.rpm │ │ │ │ ├── dummy-nscd-2.25.90-2.x86_64.rpm │ │ │ │ ├── filesystem-3.2-40.x86_64.rpm │ │ │ │ ├── glibc-2.25.90-2.x86_64.rpm │ │ │ │ ├── glibc-common-2.25.90-2.x86_64.rpm │ │ │ │ ├── glibc-debuginfo-common-2.25.90-2.x86_64.rpm │ │ │ │ ├── kernel-4.11.0-1.x86_64.rpm │ │ │ │ ├── kernel-doc-4.11.0-1.noarch.rpm │ │ │ │ ├── kernel-headers-4.11.0-1.x86_64.rpm │ │ │ │ ├── repodata │ │ │ │ ├── 02ec627b4e841a824c34f245d977a9d7e69fd696760afbf3a6eed84157f2bf0e-modules.yaml.gz │ │ │ │ ├── 25ea3a56d1c431e747089ec10810e2369347aa8a0d0bc49e8ab06a9bc22d38bd-filelists.sqlite.bz2 │ │ │ │ ├── 3ca1bd0336c7e5a6d2453284ff02b02404ebfb4472dd1b0d2663ee9c09276607-primary.sqlite.bz2 │ │ │ │ ├── 41398af18302111ad8d542b137ce234556c6693fbb66ea01084d9224a2399c87-filelists.xml.gz │ │ │ │ ├── 65f0a3c92f1d21b30328e65acf3472ba62df03621302eecd36509c9fb4e9c83b-other.sqlite.bz2 │ │ │ │ ├── b64e102539e600b45cbed904bd8e07d3fa9580dbcf0ddf73d02af5a82ecc72fa-other.xml.gz │ │ │ │ ├── b947070a1412451590f1d2422af262833163e19cc49428568e242c7dcfb10d89-primary.xml.gz │ │ │ │ └── repomd.xml │ │ │ │ └── systemd-233-3.x86_64.rpm │ │ ├── base-runtime-rhel73-1 │ │ │ ├── i686 │ │ │ │ ├── base-runtime-rhel73-1.i686.yaml │ │ │ │ ├── basesystem-10.0-7.noarch.rpm │ │ │ │ ├── bash-4.2.46-21.i686.rpm │ │ │ │ ├── bash-doc-4.2.46-21.noarch.rpm │ │ │ │ ├── dummy-nscd-2.17-157.i686.rpm │ │ │ │ ├── filesystem-3.2-21.i686.rpm │ │ │ │ ├── glibc-2.17-157.i686.rpm │ │ │ │ ├── glibc-common-2.17-157.i686.rpm │ │ │ │ ├── glibc-debuginfo-common-2.17-157.i686.rpm │ │ │ │ ├── kernel-3.10.0-514.i686.rpm │ │ │ │ ├── kernel-doc-3.10.0-514.noarch.rpm │ │ │ │ ├── kernel-headers-3.10.0-514.i686.rpm │ │ │ │ ├── repodata │ │ │ │ │ ├── 3a212be1927ef000edb547d1be028f0fa12f44cab57feeb4c3e40602c13cd07c-modules.yaml.gz │ │ │ │ │ ├── 81a44a582fc126bb7ce5785ea41c028a458e2f1cfcdb9176981f3e8504da81cc-primary.sqlite.bz2 │ │ │ │ │ ├── 9db4910badc4de5bbfd4a1aefd85d164d5580fa1093c1cfeee9991485dac25a0-filelists.sqlite.bz2 │ │ │ │ │ ├── a3628a8e0fa6cf952021c2aab864aff84c8e3456f392ff52b37be7cda7c9efb5-other.sqlite.bz2 │ │ │ │ │ ├── c5a73eed1091cadc2d6a11497a0c83fdd9750d652c019b86955a38b0451ef21b-filelists.xml.gz │ │ │ │ │ ├── eb51feee7374573f8f0bd141ce87f12be7542a8385ea499eb888be375aaadf98-primary.xml.gz │ │ │ │ │ ├── f0f5c32d3dfe340a88be037ef1cc3f270ab8e967ba848d17117d7ee2dca7fb32-other.xml.gz │ │ │ │ │ └── repomd.xml │ │ │ │ └── systemd-219-30.i686.rpm │ │ │ ├── noarch │ │ │ │ ├── basesystem-10.0-7.noarch.rpm │ │ │ │ ├── bash-doc-4.2.46-21.noarch.rpm │ │ │ │ └── kernel-doc-3.10.0-514.noarch.rpm │ │ │ ├── s390x │ │ │ │ ├── base-runtime-rhel73-1.s390x.yaml │ │ │ │ ├── basesystem-10.0-7.noarch.rpm │ │ │ │ ├── bash-4.2.46-21.s390x.rpm │ │ │ │ ├── bash-doc-4.2.46-21.noarch.rpm │ │ │ │ ├── dummy-nscd-2.17-157.s390x.rpm │ │ │ │ ├── filesystem-3.2-21.s390x.rpm │ │ │ │ ├── glibc-2.17-157.s390x.rpm │ │ │ │ ├── glibc-common-2.17-157.s390x.rpm │ │ │ │ ├── glibc-debuginfo-common-2.17-157.s390x.rpm │ │ │ │ ├── kernel-3.10.0-514.s390x.rpm │ │ │ │ ├── kernel-doc-3.10.0-514.noarch.rpm │ │ │ │ ├── kernel-headers-3.10.0-514.s390x.rpm │ │ │ │ ├── repodata │ │ │ │ │ ├── 152d04693f3af3745e4c6ad6c97016d2fbd53b37ce15ed05bc43f4af9c82ffc1-primary.sqlite.bz2 │ │ │ │ │ ├── 367ab55c377a9215a6d0226a11eda1f5448982bdab7065f4824a7f979595c7ae-other.sqlite.bz2 │ │ │ │ │ ├── 49330a2d118f8e9e3b650f25ebaad6f5f6442d309a8d4e370d6738d4b9fa0432-modules.yaml.gz │ │ │ │ │ ├── 50251017cd9f26335d97e8bb833645a929d2dc8d3beadf4cd90458dedf515180-other.xml.gz │ │ │ │ │ ├── 785b60c3c4654685256fd185979a315c90cfdda605b7481dedb611bc31f3410b-filelists.sqlite.bz2 │ │ │ │ │ ├── 84c169e08837b770e5fa68e856ca0b579357feeb477d1ddc1006cf2aa8ab1326-filelists.xml.gz │ │ │ │ │ ├── 8a03380707a74f5335d064b6902086bd06d4c57b3196f314bca3ca386df3618f-primary.xml.gz │ │ │ │ │ └── repomd.xml │ │ │ │ └── systemd-219-30.s390x.rpm │ │ │ ├── src │ │ │ │ ├── base-runtime-rhel73-1.src.yaml │ │ │ │ ├── basesystem-10.0-7.src.rpm │ │ │ │ ├── bash-4.2.46-21.src.rpm │ │ │ │ ├── filesystem-3.2-21.src.rpm │ │ │ │ ├── glibc-2.17-157.src.rpm │ │ │ │ ├── kernel-3.10.0-514.src.rpm │ │ │ │ └── systemd-219-30.src.rpm │ │ │ └── x86_64 │ │ │ │ ├── base-runtime-rhel73-1.x86_64.yaml │ │ │ │ ├── basesystem-10.0-7.noarch.rpm │ │ │ │ ├── bash-4.2.46-21.x86_64.rpm │ │ │ │ ├── bash-doc-4.2.46-21.noarch.rpm │ │ │ │ ├── dummy-nscd-2.17-157.x86_64.rpm │ │ │ │ ├── filesystem-3.2-21.x86_64.rpm │ │ │ │ ├── glibc-2.17-157.x86_64.rpm │ │ │ │ ├── glibc-common-2.17-157.x86_64.rpm │ │ │ │ ├── glibc-debuginfo-common-2.17-157.x86_64.rpm │ │ │ │ ├── kernel-3.10.0-514.x86_64.rpm │ │ │ │ ├── kernel-doc-3.10.0-514.noarch.rpm │ │ │ │ ├── kernel-headers-3.10.0-514.x86_64.rpm │ │ │ │ ├── repodata │ │ │ │ ├── 0ba33f69df15c52810c926a90d28b44c37da3d56fd772a681f354d517d2b499c-filelists.sqlite.bz2 │ │ │ │ ├── 4a36be3446bb1c0c556bfdaddd174262baffe920ce0e98ebffcd16b932929294-primary.sqlite.bz2 │ │ │ │ ├── 9d9fe100426ee8ea2b7c4484bd3567caebab9efd5d8356531bc7f9562860eef3-other.sqlite.bz2 │ │ │ │ ├── b9c794d1e56cb24aa92eefc14899370ac651950f13d38edfc5af0306e5d308cf-modules.yaml.gz │ │ │ │ ├── ea4391fbe23bc6864552592fdc6b2b3175acf2ba8ea9b2ceea24a5035670d4ed-filelists.xml.gz │ │ │ │ ├── efad95bf718650757aaf128a50541a5986ebbb5a42f2b552381b6e36eb89a941-other.xml.gz │ │ │ │ ├── fb2a6d2c1b9e1102963a1c85c16ea6dfa255cee6506406ccf34a55237e1514f7-primary.xml.gz │ │ │ │ └── repomd.xml │ │ │ │ └── systemd-219-30.x86_64.rpm │ │ ├── httpd-2.2-1 │ │ │ ├── i686 │ │ │ │ ├── httpd-2.2-1.i686.yaml │ │ │ │ ├── httpd-2.2.15-59.i686.rpm │ │ │ │ ├── httpd-doc-2.2.15-59.i686.rpm │ │ │ │ └── repodata │ │ │ │ │ ├── 03fc6ad0f80026d72250a47548078e9612031fc8dfad101b6ca40542ac9e443d-filelists.xml.gz │ │ │ │ │ ├── 2d442fe4da23ac7f985e87b6117e11d32cd66e8d69fc7a7c30b0635e2b1dac4d-modules.yaml.gz │ │ │ │ │ ├── 32afd669744ee4e82988d9133e1dcf227b8f34b6b0b56520730bbf32ec2bb163-other.xml.gz │ │ │ │ │ ├── 349e47ae3b916ffda1663b6cd9b3cb48f071ffcd933d925551ee347d21e803d1-primary.sqlite.bz2 │ │ │ │ │ ├── 406cccd510cff9f9d92a8a493624aea3a0c9a94c6827ccbbe0b69d40f0c8665b-primary.xml.gz │ │ │ │ │ ├── 5fc06cb7cfbeac4e777ea42590c892035eb95329ee0b7da2e4ddef3da04ab0e9-other.sqlite.bz2 │ │ │ │ │ ├── 9f95de36bcaf98a0fc3e8483ada52c715916b060820a4309efe3a0687c851c4b-filelists.sqlite.bz2 │ │ │ │ │ └── repomd.xml │ │ │ ├── s390x │ │ │ │ ├── httpd-2.2-1.s390x.yaml │ │ │ │ ├── httpd-2.2.15-59.s390x.rpm │ │ │ │ ├── httpd-doc-2.2.15-59.s390x.rpm │ │ │ │ └── repodata │ │ │ │ │ ├── 13e3f7c04b46c1682182e4d566add538d1d8ed37e61f7dbdc6e16aeaa4768805-other.xml.gz │ │ │ │ │ ├── 1870278259386f08c27583d2575457f185d065fff15526a93fe30652a747d1a7-modules.yaml.gz │ │ │ │ │ ├── acee6d3b27377f84fcfccb87b8f457c2def0851908367a5025c5b5e66e6f8a7f-filelists.sqlite.bz2 │ │ │ │ │ ├── bc47c370a43f00aed37066c4a4ed16549985892deb8ebbe300e644553fef5658-primary.sqlite.bz2 │ │ │ │ │ ├── d01175c963911d4feace8e30a699f870d3d815f48c37230c81dbe6bad595dd06-primary.xml.gz │ │ │ │ │ ├── da9f29cfe99a1ed025c73cf82945a685aa3e2164509fe1b7bba24b735469d1f9-filelists.xml.gz │ │ │ │ │ ├── e22de26db83948d25ec12d327c1794f8cad18c14f7021e5428306dd4a456f7c4-other.sqlite.bz2 │ │ │ │ │ └── repomd.xml │ │ │ ├── src │ │ │ │ ├── httpd-2.2-1.src.yaml │ │ │ │ └── httpd-2.2.15-59.src.rpm │ │ │ └── x86_64 │ │ │ │ ├── httpd-2.2-1.x86_64.yaml │ │ │ │ ├── httpd-2.2.15-59.x86_64.rpm │ │ │ │ ├── httpd-doc-2.2.15-59.x86_64.rpm │ │ │ │ └── repodata │ │ │ │ ├── 0634a236b57c9970e8236ecfd2863644b4312e75a68d4f8755308a570658acfc-filelists.xml.gz │ │ │ │ ├── 0b604aa496f768e638dd6f804c33403cf0764fbc4d3cdb41037b9c59f6460e75-other.sqlite.bz2 │ │ │ │ ├── 1f66590abb9d80a053e36fbbcd54e0c7cf69e2253e285598aa402d742302b3e2-other.xml.gz │ │ │ │ ├── 42dfbd1f0acf7e60911c0cf4b6ad1ead428942ff45ea1cac17ddbc9597560704-primary.xml.gz │ │ │ │ ├── 4d3534b47120b1d466d207384a419d02f21ae311b83f7fe07aad3e74c453a551-primary.sqlite.bz2 │ │ │ │ ├── 550fd328b5f3aa1366c6bf1d2089f6726eac2efc273fec3e1c9547d0fd272439-modules.yaml.gz │ │ │ │ ├── 92217ee1dd392000dc473547b3dba06cabc8676b2ca10c4ebe242b945c8ea4d2-filelists.sqlite.bz2 │ │ │ │ └── repomd.xml │ │ ├── httpd-2.4-1 │ │ │ ├── i686 │ │ │ │ ├── httpd-2.4-1.i686.yaml │ │ │ │ ├── httpd-2.4.25-7.i686.rpm │ │ │ │ ├── httpd-doc-2.4.25-7.i686.rpm │ │ │ │ ├── httpd.yaml │ │ │ │ ├── libnghttp2-1.21.1-1.i686.rpm │ │ │ │ └── repodata │ │ │ │ │ ├── 01513c613857f65e208d002e44c245fc9348370d2e230d5a9147859cc2440e3b-modules.yaml.gz │ │ │ │ │ ├── 49c3743df58e1b96d8e0101f2acd400e3e0fb727fc2801be142e2abc69ebe30f-filelists.xml.gz │ │ │ │ │ ├── 4bd94b7b17f27a3d6323fcac3e2f8445fb4c8cd3852f9c8e436f031190630ee2-filelists.sqlite.bz2 │ │ │ │ │ ├── 876456a8161f53035adf586603e355198f241b8de4fcc107895515e223d5d592-other.xml.gz │ │ │ │ │ ├── 8e04d815eaeb276a31beba7b289607497c1d5ada7a89e64fe678249092925310-other.sqlite.bz2 │ │ │ │ │ ├── ad24e687e4f3af0583f63fcd4f0e1e93b3ec279f011c69c28aca38e742e44f50-primary.sqlite.bz2 │ │ │ │ │ ├── caf6347c2a45d04a7bb0dbff256380fa1ff7af97d5f27dca09b3e80cd05c57c7-primary.xml.gz │ │ │ │ │ └── repomd.xml │ │ │ ├── s390x │ │ │ │ ├── httpd-2.4-1.s390x.yaml │ │ │ │ ├── httpd-2.4.25-7.s390x.rpm │ │ │ │ ├── httpd-doc-2.4.25-7.s390x.rpm │ │ │ │ ├── httpd.yaml │ │ │ │ ├── libnghttp2-1.21.1-1.s390x.rpm │ │ │ │ └── repodata │ │ │ │ │ ├── 5d551a4c6dbf729c05160bdefb5ed00d26716c69c042cf01aab2565640cb22ac-modules.yaml.gz │ │ │ │ │ ├── 69857c70a6451479ee0c0a0e37286dc00bca5a2faa482d4b1d212eb6136fa0aa-primary.sqlite.bz2 │ │ │ │ │ ├── 819e86e32d196c28ae699db394ad42096e1413f9de33ea048a8cb679f9cb25af-other.xml.gz │ │ │ │ │ ├── 90e5b6c7980d346897cdc6ca48d18f1490cbc7b38c6882f0c897e1c2ec2eaa67-other.sqlite.bz2 │ │ │ │ │ ├── a56b68690d5c0d9c40a9995cd9faa7dab2c755feda01f3558054dd9a8ac57f96-filelists.xml.gz │ │ │ │ │ ├── b03ed2bfa70647d3929298055edcd0d3cc70f6c9bb559f02abd197bf4de42cfd-primary.xml.gz │ │ │ │ │ ├── c9e0910dc42a296d290975c711256d8f05e77b7c3784ca995454e4dbf5569652-filelists.sqlite.bz2 │ │ │ │ │ └── repomd.xml │ │ │ ├── src │ │ │ │ ├── httpd-2.4-1.src.yaml │ │ │ │ ├── httpd-2.4.25-7.src.rpm │ │ │ │ └── libnghttp2-1.21.1-1.src.rpm │ │ │ └── x86_64 │ │ │ │ ├── httpd-2.4-1.x86_64.yaml │ │ │ │ ├── httpd-2.4.25-7.x86_64.rpm │ │ │ │ ├── httpd-doc-2.4.25-7.x86_64.rpm │ │ │ │ ├── httpd.yaml │ │ │ │ ├── libnghttp2-1.21.1-1.x86_64.rpm │ │ │ │ └── repodata │ │ │ │ ├── 1d9f907984681afe87cf3db455db7e496006d9873e143ce91f57f48163c1242c-filelists.xml.gz │ │ │ │ ├── 7401efdadd4f7177d130643053c50bad88b71c853a5dfaf844f5b1917e529d85-filelists.sqlite.bz2 │ │ │ │ ├── 8f9dd5e236731653e5a4487334ddcd48907822e38fd5310e769b4e288cca09b8-primary.sqlite.bz2 │ │ │ │ ├── c26d28065fddecf2a5ae53dc10a3abe9913a0a8dc5281149038af0809c60f771-primary.xml.gz │ │ │ │ ├── c5a113dc68969c8ec64fb2417682f442dd61d4befceb8133caa88c1b8332dc6e-other.xml.gz │ │ │ │ ├── c737ef5a58c444520311f7471220f60814489e8e0821abebed1c8a3c132eb8a3-modules.yaml.gz │ │ │ │ ├── e9ab31d36533c2764cf3d4517296cd078a08744a4d1e277bc312a57e1977959e-other.sqlite.bz2 │ │ │ │ └── repomd.xml │ │ └── httpd-2.4-2 │ │ │ ├── i686 │ │ │ ├── httpd-2.4-2.i686.yaml │ │ │ ├── httpd-2.4.25-8.i686.rpm │ │ │ ├── httpd-doc-2.4.25-8.i686.rpm │ │ │ ├── libnghttp2-1.21.1-1.i686.rpm │ │ │ └── repodata │ │ │ │ ├── 0860d05cdbbb821b652fd9f93258913d9c3f200c886612f179c26113a24d5e9d-other.xml.gz │ │ │ │ ├── 0d39bb01e072e5f21b723a180ee504255efe0f68aae2d1e406858e86af0e188b-filelists.sqlite.bz2 │ │ │ │ ├── 2b65f2224de8f1e873e2c1c6b6853b0a9b7d3bc6181b6d7be99a7ec1e049ef57-modules.yaml.gz │ │ │ │ ├── 4d2cdb7879963dd460741bf32b7d3d1fc6ca38d68ed10f8dc7fbfc3ccc967ef4-primary.sqlite.bz2 │ │ │ │ ├── 6e0ccd539b8487c56b4be9c167dd1d518a8ff7354245f4593e817bfe5909bbc5-primary.xml.gz │ │ │ │ ├── e2462308c4477e4740543028b0288c42942cd4984bbb37b95f4ba9794488484f-filelists.xml.gz │ │ │ │ ├── e5cbbe3cdb9ff025a6f1a5c773473494a0ebef4b0b5c96ba5a40da869092af08-other.sqlite.bz2 │ │ │ │ └── repomd.xml │ │ │ ├── s390x │ │ │ ├── httpd-2.4-2.s390x.yaml │ │ │ ├── httpd-2.4.25-8.s390x.rpm │ │ │ ├── httpd-doc-2.4.25-8.s390x.rpm │ │ │ ├── libnghttp2-1.21.1-1.s390x.rpm │ │ │ └── repodata │ │ │ │ ├── 222784064998192225948bd42cfd4f309607ed2e956f35e853ec04f6b5bfff26-other.sqlite.bz2 │ │ │ │ ├── 2db9ffba74a218518e2f56343ae309fef90750996929790ed5f07da544d25e72-filelists.sqlite.bz2 │ │ │ │ ├── 43bd4784f0153369535272c70684af4380ae4c54066f0fde2ee346339c6f28e8-modules.yaml.gz │ │ │ │ ├── 6806a2295b024ee97d996690d5b0a1677004ab4a7a6d186a47876a2096f69697-primary.xml.gz │ │ │ │ ├── 8aee83183505d5a433e991b9db12b46b046686c1ec8552bbe19de8da7f5ed4d2-other.xml.gz │ │ │ │ ├── c04af70f97b52b59d2cf36632065217e804650a9e5e2f5dcfdd601ede350b702-filelists.xml.gz │ │ │ │ ├── f6e9e967618ffc1bd9c7f9ec0a03d4824254bb351aa4c53657ef28a6f7cb9c77-primary.sqlite.bz2 │ │ │ │ └── repomd.xml │ │ │ ├── src │ │ │ ├── httpd-2.4-2.src.yaml │ │ │ ├── httpd-2.4.25-8.src.rpm │ │ │ └── libnghttp2-1.21.1-1.src.rpm │ │ │ └── x86_64 │ │ │ ├── httpd-2.4-2.x86_64.yaml │ │ │ ├── httpd-2.4.25-8.x86_64.rpm │ │ │ ├── httpd-doc-2.4.25-8.x86_64.rpm │ │ │ ├── libnghttp2-1.21.1-1.x86_64.rpm │ │ │ └── repodata │ │ │ ├── 143f547f02063d5221cc099f8fe693e9abf3456fdf3d4afe5f95b1cf81403d9d-other.xml.gz │ │ │ ├── 38229572e59980be53dc8b9d3741e2b46877b3ce7a049f968066c1eca0757dff-primary.sqlite.bz2 │ │ │ ├── 62ed5cb5877c1995260ea3deeaf517c1335d41a26fa56bbf791e0b8848debf57-modules.yaml.gz │ │ │ ├── 6774c709909c85579b646dad8422b8a62fc4a4d3630d2c76944abb2f045e0b4c-primary.xml.gz │ │ │ ├── 8bab2a03f45ea12b1612b5fecdc6137cf69412d5810cebe1620d90eb2e562f8f-filelists.sqlite.bz2 │ │ │ ├── c3d8bd9d381397223a8b957d3813fbdeb3c700b6937a347dfbc90dbb0492640f-filelists.xml.gz │ │ │ ├── cb63c3e8e5fc7fc855701a2b1d78c54ca76932fc3ace708a2212d527ce2aba90-other.sqlite.bz2 │ │ │ └── repomd.xml │ ├── specs │ │ ├── _create_modulemd.py │ │ ├── _createrepo_c_modularity_hack.py │ │ ├── _non-modular │ │ │ ├── grub2.spec │ │ │ ├── httpd-provides-name-version-release.spec │ │ │ ├── httpd-provides-name.spec │ │ │ ├── httpd.spec │ │ │ └── libnghttp2.spec │ │ ├── base-runtime-f26-1 │ │ │ ├── basesystem.spec │ │ │ ├── bash.spec │ │ │ ├── filesystem.spec │ │ │ ├── glibc.spec │ │ │ ├── kernel.spec │ │ │ ├── profiles.json │ │ │ └── systemd.spec │ │ ├── base-runtime-f26-2 │ │ │ ├── basesystem.spec │ │ │ ├── bash.spec │ │ │ ├── filesystem.spec │ │ │ ├── glibc.spec │ │ │ ├── kernel.spec │ │ │ ├── profiles.json │ │ │ └── systemd.spec │ │ ├── base-runtime-rhel73-1 │ │ │ ├── basesystem.spec │ │ │ ├── bash.spec │ │ │ ├── filesystem.spec │ │ │ ├── glibc.spec │ │ │ ├── kernel.spec │ │ │ ├── profiles.json │ │ │ └── systemd.spec │ │ ├── build.sh │ │ ├── httpd-2.2-1 │ │ │ ├── httpd.spec │ │ │ └── profiles.json │ │ ├── httpd-2.4-1 │ │ │ ├── httpd.spec │ │ │ ├── libnghttp2.spec │ │ │ └── profiles.json │ │ └── httpd-2.4-2 │ │ │ ├── httpd.spec │ │ │ ├── libnghttp2.spec │ │ │ └── profiles.json │ └── yum.repos.d │ │ └── test.repo.in │ ├── vars │ ├── var1 │ └── var2 │ └── yum.repos.d │ ├── bumblebee.repo │ ├── local.repo │ ├── redhat.repo │ ├── shell-expansion.repo │ └── whitespace.repo ├── docs ├── hawkey │ ├── CMakeLists.txt │ ├── changes.rst │ ├── conf.py │ ├── faq.rst │ ├── index.rst │ ├── rationale.rst │ ├── reference-py-constants.rst │ ├── reference-py-errors.rst │ ├── reference-py-repo.rst │ ├── reference-py-sack.rst │ ├── reference-py.rst │ └── tutorial-py.rst ├── history │ ├── history.uxf │ └── readme.md ├── libdnf │ ├── CMakeLists.txt │ ├── Doxyfile.in │ ├── conf.py.in │ ├── html │ │ ├── common.css │ │ └── index.htm │ ├── index.rst │ ├── libdnf-docs.sgml │ └── version.xml.in └── release_notes.rst ├── etc ├── CMakeLists.txt └── dnf-sanitizers.sh ├── libdnf.spec ├── libdnf ├── CMakeLists.txt ├── README.plugins ├── catch-error.hpp ├── conf │ ├── CMakeLists.txt │ ├── Config-private.hpp │ ├── Config.hpp │ ├── ConfigMain.cpp │ ├── ConfigMain.hpp │ ├── ConfigParser.cpp │ ├── ConfigParser.hpp │ ├── ConfigRepo.cpp │ ├── ConfigRepo.hpp │ ├── Const.hpp │ ├── Option.hpp │ ├── OptionBinds.cpp │ ├── OptionBinds.hpp │ ├── OptionBool.cpp │ ├── OptionBool.hpp │ ├── OptionChild.hpp │ ├── OptionEnum.cpp │ ├── OptionEnum.hpp │ ├── OptionNumber.cpp │ ├── OptionNumber.hpp │ ├── OptionPath.cpp │ ├── OptionPath.hpp │ ├── OptionSeconds.cpp │ ├── OptionSeconds.hpp │ ├── OptionString.cpp │ ├── OptionString.hpp │ ├── OptionStringList.cpp │ └── OptionStringList.hpp ├── config-64.h.in ├── config.h ├── dnf-advisory-private.hpp ├── dnf-advisory.cpp ├── dnf-advisory.h ├── dnf-advisorypkg.cpp ├── dnf-advisorypkg.h ├── dnf-advisoryref-private.hpp ├── dnf-advisoryref.cpp ├── dnf-advisoryref.h ├── dnf-conf.cpp ├── dnf-conf.h ├── dnf-context.cpp ├── dnf-context.h ├── dnf-context.hpp ├── dnf-db.cpp ├── dnf-db.h ├── dnf-enums.h ├── dnf-goal.cpp ├── dnf-goal.h ├── dnf-keyring.cpp ├── dnf-keyring.h ├── dnf-lock.cpp ├── dnf-lock.h ├── dnf-package.cpp ├── dnf-package.h ├── dnf-packagedelta-private.hpp ├── dnf-packagedelta.cpp ├── dnf-packagedelta.h ├── dnf-reldep-list.cpp ├── dnf-reldep-list.h ├── dnf-reldep.cpp ├── dnf-reldep.h ├── dnf-repo-loader.cpp ├── dnf-repo-loader.h ├── dnf-repo.cpp ├── dnf-repo.h ├── dnf-repo.hpp ├── dnf-rpmts-private.hpp ├── dnf-rpmts.cpp ├── dnf-rpmts.h ├── dnf-sack-private.hpp ├── dnf-sack.cpp ├── dnf-sack.h ├── dnf-state.cpp ├── dnf-state.h ├── dnf-transaction.cpp ├── dnf-transaction.h ├── dnf-types.h ├── dnf-utils.cpp ├── dnf-utils.h ├── dnf-version.h.in ├── error.hpp ├── goal │ ├── CMakeLists.txt │ ├── Goal-private.hpp │ ├── Goal.cpp │ ├── Goal.hpp │ └── IdQueue.hpp ├── hy-goal-private.hpp ├── hy-goal.cpp ├── hy-goal.h ├── hy-iutil-private.hpp ├── hy-iutil.cpp ├── hy-iutil.h ├── hy-nevra.h ├── hy-package-private.hpp ├── hy-package.cpp ├── hy-package.h ├── hy-packageset-private.hpp ├── hy-packageset.cpp ├── hy-packageset.h ├── hy-query-private.hpp ├── hy-query.cpp ├── hy-query.h ├── hy-repo-private.hpp ├── hy-repo.h ├── hy-selector-private.hpp ├── hy-selector.cpp ├── hy-selector.h ├── hy-subject.cpp ├── hy-subject.h ├── hy-types.h ├── hy-util-private.hpp ├── hy-util.cpp ├── hy-util.h ├── libdnf.gresource.xml ├── libdnf.h ├── libdnf.pc.in ├── log.cpp ├── log.hpp ├── module │ ├── CMakeLists.txt │ ├── ModulePackage.cpp │ ├── ModulePackage.hpp │ ├── ModulePackageContainer.cpp │ ├── ModulePackageContainer.hpp │ └── modulemd │ │ ├── CMakeLists.txt │ │ ├── ModuleDependencies.cpp │ │ ├── ModuleDependencies.hpp │ │ ├── ModuleMetadata.cpp │ │ ├── ModuleMetadata.hpp │ │ ├── ModuleProfile.cpp │ │ └── ModuleProfile.hpp ├── nevra.cpp ├── nevra.hpp ├── nsvcap.cpp ├── nsvcap.hpp ├── plugin │ ├── CMakeLists.txt │ ├── README.md │ ├── plugin-private.hpp │ ├── plugin.cpp │ └── plugin.h ├── repo │ ├── CMakeLists.txt │ ├── Crypto.cpp │ ├── Crypto.hpp │ ├── DependencySplitter.cpp │ ├── DependencySplitter.hpp │ ├── Repo-private.hpp │ ├── Repo.cpp │ ├── Repo.hpp │ └── solvable │ │ ├── CMakeLists.txt │ │ ├── Dependency.cpp │ │ ├── Dependency.hpp │ │ ├── DependencyContainer.cpp │ │ ├── DependencyContainer.hpp │ │ ├── Package.cpp │ │ └── Package.hpp ├── sack │ ├── CMakeLists.txt │ ├── advisory.cpp │ ├── advisory.hpp │ ├── advisorymodule.cpp │ ├── advisorymodule.hpp │ ├── advisorypkg.cpp │ ├── advisorypkg.hpp │ ├── advisoryref.cpp │ ├── advisoryref.hpp │ ├── changelog.hpp │ ├── packageset.cpp │ ├── packageset.hpp │ ├── query.cpp │ ├── query.hpp │ ├── selector.cpp │ └── selector.hpp ├── transaction │ ├── !README │ ├── CMakeLists.txt │ ├── CompsEnvironmentItem.cpp │ ├── CompsEnvironmentItem.hpp │ ├── CompsGroupItem.cpp │ ├── CompsGroupItem.hpp │ ├── Item.cpp │ ├── Item.hpp │ ├── MergedTransaction.cpp │ ├── MergedTransaction.hpp │ ├── RPMItem.cpp │ ├── RPMItem.hpp │ ├── Swdb.cpp │ ├── Swdb.hpp │ ├── Transaction.cpp │ ├── Transaction.hpp │ ├── TransactionItem.cpp │ ├── TransactionItem.hpp │ ├── TransactionItemReason.cpp │ ├── TransactionItemReason.hpp │ ├── Transformer.cpp │ ├── Transformer.hpp │ ├── Types.hpp │ ├── private │ │ ├── CMakeLists.txt │ │ ├── Repo.cpp │ │ ├── Repo.hpp │ │ ├── Transaction.cpp │ │ ├── Transaction.hpp │ │ └── TransformerTransaction.hpp │ └── sql │ │ ├── README.md │ │ ├── create_tables.sql │ │ ├── migrate_tables_1_2.sql │ │ └── migrate_tables_1_3.sql └── utils │ ├── CMakeLists.txt │ ├── CompressedFile.cpp │ ├── CompressedFile.hpp │ ├── File.cpp │ ├── File.hpp │ ├── GLibLogger.cpp │ ├── GLibLogger.hpp │ ├── PreserveOrderMap.hpp │ ├── bgettext │ ├── CMakeLists.txt │ ├── README.md │ ├── bgettext-common.h │ ├── bgettext-lib.h │ ├── bgettext.c │ └── bgettext.h │ ├── filesystem.cpp │ ├── filesystem.hpp │ ├── iniparser │ ├── CMakeLists.txt │ ├── iniparser.cpp │ └── iniparser.hpp │ ├── logger.cpp │ ├── logger.hpp │ ├── os-release.cpp │ ├── os-release.hpp │ ├── regex │ ├── CMakeLists.txt │ ├── regex.cpp │ └── regex.hpp │ ├── smartcols │ ├── CMakeLists.txt │ ├── Cell.hpp │ ├── Column.cpp │ ├── Column.hpp │ ├── Line.cpp │ ├── Line.hpp │ ├── Table.cpp │ └── Table.hpp │ ├── sqlite3 │ ├── CMakeLists.txt │ ├── Sqlite3.cpp │ └── Sqlite3.hpp │ ├── tinyformat │ ├── README.md │ └── tinyformat.hpp │ ├── url-encode.cpp │ ├── url-encode.hpp │ ├── utils.cpp │ └── utils.hpp ├── plugins ├── Makefile ├── example_plugin.c └── rhsm.cpp ├── po ├── .gitignore ├── CMakeLists.txt ├── as.po ├── bg.po ├── bn.po ├── bn_IN.po ├── ca.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── es.po ├── eu.po ├── fa.po ├── fi.po ├── fil.po ├── fr.po ├── fur.po ├── gu.po ├── hi.po ├── hu.po ├── ia.po ├── id.po ├── is.po ├── it.po ├── ja.po ├── ka.po ├── kn.po ├── ko.po ├── libdnf.pot ├── mai.po ├── ml.po ├── mr.po ├── nb.po ├── nl.po ├── or.po ├── pa.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ru.po ├── si.po ├── sk.po ├── sq.po ├── sr.po ├── sr@latin.po ├── sv.po ├── ta.po ├── te.po ├── th.po ├── tr.po ├── uk.po ├── zh_CN.po └── zh_TW.po ├── python └── hawkey │ ├── CMakeLists.txt │ ├── __init__.py │ ├── advisory-py.cpp │ ├── advisory-py.hpp │ ├── advisorypkg-py.cpp │ ├── advisorypkg-py.hpp │ ├── advisoryref-py.cpp │ ├── advisoryref-py.hpp │ ├── exception-py.cpp │ ├── exception-py.hpp │ ├── goal-py.cpp │ ├── goal-py.hpp │ ├── hawkey-pysys.hpp │ ├── hawkeymodule.cpp │ ├── iutil-py.cpp │ ├── iutil-py.hpp │ ├── module-form-py.cpp │ ├── module-form-py.hpp │ ├── nevra-py.cpp │ ├── nevra-py.hpp │ ├── nsvcap-py.cpp │ ├── nsvcap-py.hpp │ ├── package-py.cpp │ ├── package-py.hpp │ ├── packagedelta-py.cpp │ ├── packagedelta-py.hpp │ ├── pycomp.cpp │ ├── pycomp.hpp │ ├── query-py.cpp │ ├── query-py.hpp │ ├── reldep-py.cpp │ ├── reldep-py.hpp │ ├── repo-py.cpp │ ├── repo-py.hpp │ ├── sack-py.cpp │ ├── sack-py.hpp │ ├── selector-py.cpp │ ├── selector-py.hpp │ ├── subject-py.cpp │ ├── subject-py.hpp │ └── tests │ ├── .gitignore │ ├── CMakeLists.txt │ ├── module │ ├── CMakeLists.txt │ ├── __init__.py │ └── hawkey_testmodule.cpp │ └── tests │ ├── CMakeLists.txt │ ├── __init__.py │ ├── base.py │ ├── test_advisory.py │ ├── test_advisorypkg.py │ ├── test_advisoryref.py │ ├── test_goal.py │ ├── test_nevra.py │ ├── test_package.py │ ├── test_query.py │ ├── test_reldep.py │ ├── test_repo.py │ ├── test_sack.py │ ├── test_sanity.py │ ├── test_subject.py │ ├── test_util.py │ └── test_version.py └── tests ├── CMakeLists.txt ├── hawkey ├── CMakeLists.txt ├── README ├── fixtures.cpp ├── fixtures.h ├── test_advisory.cpp ├── test_advisorypkg.cpp ├── test_advisoryref.cpp ├── test_goal.cpp ├── test_iutil.cpp ├── test_main.cpp ├── test_package.cpp ├── test_packagelist.cpp ├── test_packageset.cpp ├── test_query.cpp ├── test_reldep.cpp ├── test_repo.cpp ├── test_sack.cpp ├── test_selector.cpp ├── test_subject.cpp ├── test_suites.h ├── test_util.cpp ├── testshared.cpp ├── testshared.h ├── testsys.cpp └── testsys.h ├── libdnf ├── CMakeLists.txt ├── backports.hpp ├── conf │ ├── CMakeLists.txt │ ├── ConfigParserTest.cpp │ └── ConfigParserTest.hpp ├── dnf-self-test.c ├── module │ ├── CMakeLists.txt │ ├── ContextTest.cpp │ ├── ContextTest.hpp │ ├── ModulePackageContainerTest.cpp │ ├── ModulePackageContainerTest.hpp │ └── modulemd │ │ ├── CMakeLists.txt │ │ ├── ModulePackageTest.cpp │ │ ├── ModulePackageTest.hpp │ │ ├── ModuleProfileTest.cpp │ │ └── ModuleProfileTest.hpp ├── repo │ ├── CMakeLists.txt │ ├── DependencyContainerTest.cpp │ ├── DependencyContainerTest.hpp │ ├── DependencyTest.cpp │ ├── DependencyTest.hpp │ ├── PackageInstantiable.cpp │ ├── PackageInstantiable.hpp │ ├── PackageTest.cpp │ └── PackageTest.hpp ├── sack │ ├── AdvisoryTest.cpp │ ├── AdvisoryTest.hpp │ ├── CMakeLists.txt │ ├── DnfPackageTest.cpp │ ├── DnfPackageTest.hpp │ ├── QueryTest.cpp │ └── QueryTest.hpp └── transaction │ ├── CMakeLists.txt │ ├── CompsEnvironmentItemTest.cpp │ ├── CompsEnvironmentItemTest.hpp │ ├── CompsGroupItemTest.cpp │ ├── CompsGroupItemTest.hpp │ ├── MergedTransactionTest.cpp │ ├── MergedTransactionTest.hpp │ ├── MigrationTest.cpp │ ├── MigrationTest.hpp │ ├── RpmItemTest.cpp │ ├── RpmItemTest.hpp │ ├── TransactionItemReasonTest.cpp │ ├── TransactionItemReasonTest.hpp │ ├── TransactionTest.cpp │ ├── TransactionTest.hpp │ ├── TransformerTest.cpp │ ├── TransformerTest.hpp │ ├── WorkflowTest.cpp │ ├── WorkflowTest.hpp │ ├── assets │ └── groups.json │ └── sql │ └── create_test_history_db.sql └── run_tests.cpp /.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | BasedOnStyle: Mozilla 3 | --- 4 | Language: Cpp 5 | AllowAllParametersOfDeclarationOnNextLine: true 6 | PointerAlignment: Right 7 | SpaceBeforeParens: Always 8 | ColumnLimit: 100 9 | IndentWidth: 4 10 | AlignEscapedNewlines: DontAlign 11 | ... 12 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Assign everything by default to the dnf-team 2 | * @rpm-software-management/dnf-team 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # These are currently the only two things that 2 | # show up in a srcdir != builddir build. 3 | /docs/libdnf/version.xml 4 | /libdnf/dnf-version.h 5 | build 6 | *.pyc 7 | data/tests/modules/yum.repos.d/test.repo 8 | libdnf/config-64.h 9 | -------------------------------------------------------------------------------- /.tito/packages/.readme: -------------------------------------------------------------------------------- 1 | the .tito/packages directory contains metadata files 2 | named after their packages. Each file has the latest tagged 3 | version and the project's relative directory. 4 | -------------------------------------------------------------------------------- /.tito/tito.props: -------------------------------------------------------------------------------- 1 | [buildconfig] 2 | builder = tito.builder.Builder 3 | tagger = tito.tagger.VersionTagger 4 | changelog_do_not_remove_cherrypick = 0 5 | changelog_format = %s (%ae) 6 | -------------------------------------------------------------------------------- /cmake/modules/FindPythonInstDir.cmake: -------------------------------------------------------------------------------- 1 | EXECUTE_PROCESS(COMMAND ${PYTHON_EXECUTABLE} -c " 2 | from sys import stdout 3 | from sysconfig import get_path 4 | path=get_path(name='platlib', vars={'platbase':'${CMAKE_INSTALL_PREFIX}'}) 5 | stdout.write(path)" 6 | OUTPUT_VARIABLE PYTHON_INSTALL_DIR) 7 | -------------------------------------------------------------------------------- /data/tests/advisories/recreate: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | THISDIR=$(readlink -f $(dirname $0)) 4 | cd $THISDIR 5 | createrepo_c --no-database --simple-md-filenames . 6 | modifyrepo_c ./updateinfo.xml repodata --simple-md-filenames 7 | -------------------------------------------------------------------------------- /data/tests/advisories/repodata/filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/advisories/repodata/filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/advisories/repodata/modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/advisories/repodata/modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/advisories/repodata/other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/advisories/repodata/other.xml.gz -------------------------------------------------------------------------------- /data/tests/advisories/repodata/primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/advisories/repodata/primary.xml.gz -------------------------------------------------------------------------------- /data/tests/advisories/repodata/updateinfo.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/advisories/repodata/updateinfo.xml.gz -------------------------------------------------------------------------------- /data/tests/advisories/test-perl-DBI-1-2.module_el8+6587+9879afr5.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/advisories/test-perl-DBI-1-2.module_el8+6587+9879afr5.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/advisories/test-perl-DBI-1-2.module_el8+6745+9879ate3.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/advisories/test-perl-DBI-1-2.module_el8+6745+9879ate3.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/cache-test/yum.repos.d/fedora.repo: -------------------------------------------------------------------------------- 1 | [fedora] 2 | name=Fedora $releasever - $basearch 3 | enabled=1 4 | skip_if_unavailable=False 5 | -------------------------------------------------------------------------------- /data/tests/gpg-asc/repodata/primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/gpg-asc/repodata/primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/gpg-asc/repodata/sign.sh: -------------------------------------------------------------------------------- 1 | gpg --homedir ../../gpgkey/ --armor --detach-sig repomd.xml 2 | -------------------------------------------------------------------------------- /data/tests/gpg-asc/yum.repos.d/gpg-repo-asc.repo: -------------------------------------------------------------------------------- 1 | [gpg-repo-asc] 2 | name=Repo GPG checking enabled and .asc file correct in repo 3 | baseurl=file://$testdatadir/gpg-asc/ 4 | enabled=1 5 | repo_gpgcheck=1 6 | gpgkey=file://$testdatadir/gpgkey/signing_key.pub 7 | -------------------------------------------------------------------------------- /data/tests/gpg-no-asc/repodata/primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/gpg-no-asc/repodata/primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/gpg-no-asc/repodata/repomd.xml: -------------------------------------------------------------------------------- 1 | ../../gpg-asc/repodata/repomd.xml -------------------------------------------------------------------------------- /data/tests/gpg-no-asc/yum.repos.d/gpg-repo-no-asc.repo: -------------------------------------------------------------------------------- 1 | [gpg-repo-no-asc] 2 | name=Repo GPG checking enabled but no .asc file present in repo 3 | baseurl=file://$testdatadir/gpg-no-asc/ 4 | enabled=1 5 | repo_gpgcheck=1 6 | gpgkey=file://$testdatadir/gpgkey/signing_key.pub 7 | -------------------------------------------------------------------------------- /data/tests/gpg-no-pubkey/gpg-repo-no-pubkey.repo: -------------------------------------------------------------------------------- 1 | [gpg-repo-no-pubkey] 2 | name=Repo GPG checking but no GPG Key set 3 | baseurl=http://www.dave.org 4 | enabled=1 5 | repo_gpgcheck=1 6 | -------------------------------------------------------------------------------- /data/tests/gpg-wrong-asc/repodata/primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/gpg-wrong-asc/repodata/primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/gpg-wrong-asc/repodata/repomd.xml: -------------------------------------------------------------------------------- 1 | ../../gpg-asc/repodata/repomd.xml -------------------------------------------------------------------------------- /data/tests/gpg-wrong-asc/yum.repos.d/gpg-repo-wrong-asc.repo: -------------------------------------------------------------------------------- 1 | [gpg-repo-wrong-asc] 2 | name=Repo GPG checking enabled but no .asc signed using the wrong key 3 | baseurl=file://$testdatadir/gpg-wrong-asc/ 4 | enabled=1 5 | repo_gpgcheck=1 6 | gpgkey=file://$testdatadir/gpgkey/signing_key.pub 7 | -------------------------------------------------------------------------------- /data/tests/gpgkey/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | trustdb.gpg 3 | -------------------------------------------------------------------------------- /data/tests/gpgkey/pubring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/gpgkey/pubring.gpg -------------------------------------------------------------------------------- /data/tests/gpgkey/secring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/gpgkey/secring.gpg -------------------------------------------------------------------------------- /data/tests/hawkey/@System-broken.repo: -------------------------------------------------------------------------------- 1 | =Ver: 2.0 2 | # 3 | =Pkg: ok 1 0 x86_64 4 | =Pkg: missing 1 0 x86_64 5 | =Req: missing-dep 6 | =Pkg: conflict 1 0 x86_64 7 | =Con: ok 8 | =Pkg: dup 1 1 x86_64 9 | =Pkg: dup 2 1 x86_64 10 | -------------------------------------------------------------------------------- /data/tests/hawkey/@System-k.repo: -------------------------------------------------------------------------------- 1 | =Ver: 2.0 2 | # 3 | =Pkg: k 1 0 x86_64 4 | =Pkg: k-m 1 0 x86_64 5 | =Req: k = 1-0 6 | =Pkg: k-freak-1-0 1 0 x86_64 7 | =Req: k = 1-0 8 | =Pkg: k 1 1 x86_64 9 | =Pkg: k-m 1 1 x86_64 10 | =Req: k = 1-1 11 | =Pkg: k 2 0 x86_64 12 | =Pkg: k-m 2 0 x86_64 13 | =Req: k = 2-0 14 | =Pkg: k 3 0 x86_64 15 | =Pkg: k-m 3 0 x86_64 16 | =Req: k = 3-0 17 | -------------------------------------------------------------------------------- /data/tests/hawkey/change.repo: -------------------------------------------------------------------------------- 1 | =Ver: 2.0 2 | # 3 | =Pkg: flying 3 0 noarch 4 | =Req: P-lib = 3-4 5 | =Pkg: penny-lib 4 1 x86_64 6 | =Vnd: PerfectlyLoud 7 | =Sum: in my ears 8 | =Prv: P-lib = 3-4 9 | -------------------------------------------------------------------------------- /data/tests/hawkey/forcebest.repo: -------------------------------------------------------------------------------- 1 | =Ver: 2.0 2 | # 3 | =Pkg: gun 4 1 i686 4 | =Pkg: gun 2 0 x86_64 5 | -------------------------------------------------------------------------------- /data/tests/hawkey/greedy.repo: -------------------------------------------------------------------------------- 1 | =Ver: 2.0 2 | # 3 | =Pkg: A 1 0 noarch 4 | =Req: somereq 5 | =Pkg: B 1 0 noarch 6 | =Rec: C 7 | =Prv: somereq 8 | =Pkg: C 1 0 noarch 9 | =Prv: somereq 10 | -------------------------------------------------------------------------------- /data/tests/hawkey/installonly.repo: -------------------------------------------------------------------------------- 1 | =Ver: 2.0 2 | # 3 | =Pkg: k 3 1 x86_64 4 | =Pkg: k-m 3 1 x86_64 5 | =Req: k = 3-1 6 | =Pkg: k 3 6 x86_64 7 | =Pkg: k-m 3 6 x86_64 8 | =Req: k = 3-6 9 | -------------------------------------------------------------------------------- /data/tests/hawkey/ppc.repo: -------------------------------------------------------------------------------- 1 | =Ver: 2.0 2 | # 3 | =Pkg: custard 1 2 ppc64 4 | =Pkg: custard 1 3 ppc64 5 | -------------------------------------------------------------------------------- /data/tests/hawkey/vendor.repo: -------------------------------------------------------------------------------- 1 | =Ver: 2.0 2 | # 3 | =Pkg: foolish-grin 1 4 noarch 4 | =Vnd: PerfectlyLoud 5 | =Obs: fool = 1-3 6 | =Prv: fool = 1-3 7 | =Pkg: gun 5 1 x86_64 8 | -------------------------------------------------------------------------------- /data/tests/hawkey/yum/drpms/tour-4-5_4-6.noarch.drpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/hawkey/yum/drpms/tour-4-5_4-6.noarch.drpm -------------------------------------------------------------------------------- /data/tests/hawkey/yum/mystery-devel-19.67-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/hawkey/yum/mystery-devel-19.67-1.noarch.rpm -------------------------------------------------------------------------------- /data/tests/hawkey/yum/repodata/4d4b903662ace0b08bda1d53f89c333614b7f658172bc9f0c87b0eef276ff5a1-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/hawkey/yum/repodata/4d4b903662ace0b08bda1d53f89c333614b7f658172bc9f0c87b0eef276ff5a1-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/hawkey/yum/repodata/51fb8278682bdb0ea0956720b098dadf637efc01566acb48203c54c90ba86dda-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/hawkey/yum/repodata/51fb8278682bdb0ea0956720b098dadf637efc01566acb48203c54c90ba86dda-other.xml.gz -------------------------------------------------------------------------------- /data/tests/hawkey/yum/repodata/52d800b3426c540bb88a80d01fb6c8d227ae14edca7446fa0f348a286223fb8b-prestodelta.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/hawkey/yum/repodata/52d800b3426c540bb88a80d01fb6c8d227ae14edca7446fa0f348a286223fb8b-prestodelta.xml.gz -------------------------------------------------------------------------------- /data/tests/hawkey/yum/repodata/f1ab2aa6c0e5881b9365f83a951e6696812ebfaaf56fee310c3f080c8849a1b4-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/hawkey/yum/repodata/f1ab2aa6c0e5881b9365f83a951e6696812ebfaaf56fee310c3f080c8849a1b4-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/hawkey/yum/repodata/updateinfo.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/hawkey/yum/repodata/updateinfo.xml.gz -------------------------------------------------------------------------------- /data/tests/hawkey/yum/tour-4-6.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/hawkey/yum/tour-4-6.noarch.rpm -------------------------------------------------------------------------------- /data/tests/hawkey/yum/updateinfo.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/hawkey/yum/updateinfo.xml.gz -------------------------------------------------------------------------------- /data/tests/hawkey/yum_oldrpms/tour-4-5.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/hawkey/yum_oldrpms/tour-4-5.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/defaults/httpd.yaml: -------------------------------------------------------------------------------- 1 | document: modulemd-defaults 2 | version: 1 3 | data: 4 | module: httpd 5 | stream: 2.4 6 | profiles: 7 | 2.4: [default] 8 | -------------------------------------------------------------------------------- /data/tests/modules/etc/dnf/dnf.conf: -------------------------------------------------------------------------------- 1 | [main] 2 | gpgcheck=0 3 | installonly_limit=3 4 | clean_requirements_on_remove=True 5 | install_weak_deps=0 6 | modulesdir=etc/dnf/modules.d 7 | reposdir=/home/mhatina/share/dnf/tests/modules/etc/dnf/repos.d 8 | moduledefaultsdir=/home/mhatina/share/dnf/tests/modules/etc/dnf/modules.defaults.d 9 | -------------------------------------------------------------------------------- /data/tests/modules/etc/dnf/dnf.conf.in: -------------------------------------------------------------------------------- 1 | [main] 2 | gpgcheck=0 3 | installonly_limit=3 4 | clean_requirements_on_remove=True 5 | install_weak_deps=0 6 | modulesdir=etc/dnf/modules.d 7 | reposdir=@CMAKE_CURRENT_SOURCE_DIR@/tests/modules/etc/dnf/repos.d 8 | moduledefaultsdir=@CMAKE_CURRENT_SOURCE_DIR@/tests/modules/etc/dnf/modules.defaults.d 9 | -------------------------------------------------------------------------------- /data/tests/modules/etc/dnf/modules.d/base-runtime.module: -------------------------------------------------------------------------------- 1 | [base-runtime] 2 | stream = f26 3 | version = 1 4 | profiles = 5 | enabled = 1 6 | locked = 0 -------------------------------------------------------------------------------- /data/tests/modules/etc/dnf/modules.d/httpd.module: -------------------------------------------------------------------------------- 1 | [httpd] 2 | stream = 2.4 3 | version = 1 4 | profiles = 5 | enabled = 1 6 | locked = 0 -------------------------------------------------------------------------------- /data/tests/modules/etc/dnf/modules.defaults.d/base-runtime.yaml: -------------------------------------------------------------------------------- 1 | document: modulemd-defaults 2 | version: 1 3 | data: 4 | module: base-runtime 5 | stream: f26 6 | profiles: 7 | f26: [minimal] 8 | -------------------------------------------------------------------------------- /data/tests/modules/etc/dnf/modules.defaults.d/httpd.yaml: -------------------------------------------------------------------------------- 1 | document: modulemd-defaults 2 | version: 1 3 | data: 4 | module: httpd 5 | stream: 2.4 6 | profiles: 7 | 2.4: [default] 8 | -------------------------------------------------------------------------------- /data/tests/modules/etc/dnf/repos.d/boltron.repo: -------------------------------------------------------------------------------- 1 | [boltron] 2 | name=Boltron 3 | baseurl=https://download.fedoraproject.org/pub/alt/unofficial/releases/26/Server/$basearch/os/ 4 | enabled=1 5 | gpgcheck=0 6 | metadata_expire=0 7 | -------------------------------------------------------------------------------- /data/tests/modules/etc/dnf/repos.d/copr.repo: -------------------------------------------------------------------------------- 1 | [copr] 2 | name=Copr 3 | baseurl=http://copr-be-dev.cloud.fedoraproject.org/results/frostyx/testmodule/modules/fedora-rawhide-x86_64+httpd-master-20180118000705/latest/x86_64/ 4 | enabled=1 5 | gpgcheck=0 6 | metadata_expire=0 7 | -------------------------------------------------------------------------------- /data/tests/modules/etc/dnf/repos.d/test.repo: -------------------------------------------------------------------------------- 1 | [test] 2 | name=Test 3 | baseurl=file:///Users/mhatina/Projects/dnf/libdnf/tests/libdnf/data/tests/modules/modules/_all/x86_64/ 4 | enabled=1 5 | gpgcheck=0 6 | metadata_expire=0 7 | -------------------------------------------------------------------------------- /data/tests/modules/etc/dnf/repos.d/test.repo.in: -------------------------------------------------------------------------------- 1 | [test] 2 | name=Test 3 | baseurl=file://@CMAKE_CURRENT_SOURCE_DIR@/tests/modules/modules/_all/x86_64/ 4 | enabled=1 5 | gpgcheck=0 6 | metadata_expire=0 7 | -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/basesystem-10.0-7.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/basesystem-10.0-7.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/basesystem-11-3.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/basesystem-11-3.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/bash-4.2.46-21.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/bash-4.2.46-21.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/bash-4.4.12-2.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/bash-4.4.12-2.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/bash-doc-4.2.46-21.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/bash-doc-4.2.46-21.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/bash-doc-4.4.12-2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/bash-doc-4.4.12-2.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/dummy-nscd-2.17-157.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/dummy-nscd-2.17-157.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/dummy-nscd-2.25-4.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/dummy-nscd-2.25-4.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/dummy-nscd-2.25.90-2.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/dummy-nscd-2.25.90-2.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/filesystem-3.2-21.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/filesystem-3.2-21.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/filesystem-3.2-40.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/filesystem-3.2-40.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/glibc-2.17-157.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/glibc-2.17-157.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/glibc-2.25-4.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/glibc-2.25-4.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/glibc-2.25.90-2.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/glibc-2.25.90-2.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/glibc-common-2.17-157.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/glibc-common-2.17-157.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/glibc-common-2.25-4.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/glibc-common-2.25-4.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/glibc-common-2.25.90-2.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/glibc-common-2.25.90-2.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/glibc-debuginfo-common-2.17-157.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/glibc-debuginfo-common-2.17-157.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/glibc-debuginfo-common-2.25-4.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/glibc-debuginfo-common-2.25-4.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/glibc-debuginfo-common-2.25.90-2.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/glibc-debuginfo-common-2.25.90-2.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/grub2-2.02-0.40.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/grub2-2.02-0.40.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/httpd-2.2.10-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/httpd-2.2.10-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/httpd-2.2.15-59.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/httpd-2.2.15-59.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/httpd-2.4.25-7.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/httpd-2.4.25-7.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/httpd-2.4.25-8.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/httpd-2.4.25-8.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/httpd-doc-2.2.10-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/httpd-doc-2.2.10-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/httpd-doc-2.2.15-59.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/httpd-doc-2.2.15-59.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/httpd-doc-2.4.25-7.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/httpd-doc-2.4.25-7.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/httpd-doc-2.4.25-8.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/httpd-doc-2.4.25-8.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/httpd-provides-name-3.0-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/httpd-provides-name-3.0-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/httpd-provides-name-doc-3.0-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/httpd-provides-name-doc-3.0-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/httpd-provides-name-version-release-3.0-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/httpd-provides-name-version-release-3.0-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/httpd-provides-name-version-release-doc-3.0-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/httpd-provides-name-version-release-doc-3.0-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/httpd.yaml: -------------------------------------------------------------------------------- 1 | document: modulemd-defaults 2 | version: 1 3 | data: 4 | module: httpd 5 | stream: 2.4 6 | profiles: 7 | 2.4: [default] 8 | -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/kernel-3.10.0-514.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/kernel-3.10.0-514.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/kernel-4.11.0-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/kernel-4.11.0-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/kernel-doc-3.10.0-514.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/kernel-doc-3.10.0-514.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/kernel-doc-4.11.0-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/kernel-doc-4.11.0-1.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/kernel-headers-3.10.0-514.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/kernel-headers-3.10.0-514.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/kernel-headers-4.11.0-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/kernel-headers-4.11.0-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/libnghttp2-1.21.1-1.1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/libnghttp2-1.21.1-1.1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/libnghttp2-1.21.1-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/libnghttp2-1.21.1-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/repodata/006316d6be24801d3eab16966f9054e2676de83dca78f52871d1a15e2b72e79e-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/repodata/006316d6be24801d3eab16966f9054e2676de83dca78f52871d1a15e2b72e79e-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/repodata/27c16fcce1e460811fc9c9edc21d54f52aa75dd49365d66d010ac3fb506803f2-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/repodata/27c16fcce1e460811fc9c9edc21d54f52aa75dd49365d66d010ac3fb506803f2-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/repodata/2b48025c07f5cfd5170fe7326855d09d65914fc7c14d74998b6226a72451d903-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/repodata/2b48025c07f5cfd5170fe7326855d09d65914fc7c14d74998b6226a72451d903-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/repodata/323709d382b9a9b290d714dab4dab7153aafa895681583c393db1540d0466ed3-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/repodata/323709d382b9a9b290d714dab4dab7153aafa895681583c393db1540d0466ed3-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/repodata/6cefdf84131c57f1e0a7e40c3fb025df22e4938e6b690e6c9835f3d89fa67638-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/repodata/6cefdf84131c57f1e0a7e40c3fb025df22e4938e6b690e6c9835f3d89fa67638-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/repodata/6da5c34843c0889b8a035ff92062f197da16a59518c65362e34888f94511f847-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/repodata/6da5c34843c0889b8a035ff92062f197da16a59518c65362e34888f94511f847-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/repodata/d50c329d3c3b4f34044ae534725bc06c9ee9f459f27586aacc8f4e8f3331bff1-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/repodata/d50c329d3c3b4f34044ae534725bc06c9ee9f459f27586aacc8f4e8f3331bff1-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/systemd-219-30.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/systemd-219-30.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/i686/systemd-233-3.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/i686/systemd-233-3.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/basesystem-10.0-7.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/basesystem-10.0-7.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/basesystem-11-3.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/basesystem-11-3.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/bash-4.2.46-21.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/bash-4.2.46-21.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/bash-4.4.12-2.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/bash-4.4.12-2.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/bash-doc-4.2.46-21.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/bash-doc-4.2.46-21.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/bash-doc-4.4.12-2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/bash-doc-4.4.12-2.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/dummy-nscd-2.17-157.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/dummy-nscd-2.17-157.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/dummy-nscd-2.25-4.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/dummy-nscd-2.25-4.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/dummy-nscd-2.25.90-2.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/dummy-nscd-2.25.90-2.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/filesystem-3.2-21.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/filesystem-3.2-21.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/filesystem-3.2-40.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/filesystem-3.2-40.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/glibc-2.17-157.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/glibc-2.17-157.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/glibc-2.25-4.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/glibc-2.25-4.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/glibc-2.25.90-2.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/glibc-2.25.90-2.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/glibc-common-2.17-157.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/glibc-common-2.17-157.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/glibc-common-2.25-4.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/glibc-common-2.25-4.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/glibc-common-2.25.90-2.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/glibc-common-2.25.90-2.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/glibc-debuginfo-common-2.17-157.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/glibc-debuginfo-common-2.17-157.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/glibc-debuginfo-common-2.25-4.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/glibc-debuginfo-common-2.25-4.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/glibc-debuginfo-common-2.25.90-2.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/glibc-debuginfo-common-2.25.90-2.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/grub2-2.02-0.40.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/grub2-2.02-0.40.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/httpd-2.2.10-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/httpd-2.2.10-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/httpd-2.2.15-59.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/httpd-2.2.15-59.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/httpd-2.4.25-7.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/httpd-2.4.25-7.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/httpd-2.4.25-8.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/httpd-2.4.25-8.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/httpd-doc-2.2.10-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/httpd-doc-2.2.10-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/httpd-doc-2.2.15-59.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/httpd-doc-2.2.15-59.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/httpd-doc-2.4.25-7.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/httpd-doc-2.4.25-7.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/httpd-doc-2.4.25-8.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/httpd-doc-2.4.25-8.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/httpd-provides-name-3.0-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/httpd-provides-name-3.0-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/httpd-provides-name-doc-3.0-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/httpd-provides-name-doc-3.0-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/httpd-provides-name-version-release-3.0-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/httpd-provides-name-version-release-3.0-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/httpd-provides-name-version-release-doc-3.0-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/httpd-provides-name-version-release-doc-3.0-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/httpd.yaml: -------------------------------------------------------------------------------- 1 | document: modulemd-defaults 2 | version: 1 3 | data: 4 | module: httpd 5 | stream: 2.4 6 | profiles: 7 | 2.4: [default] 8 | -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/kernel-3.10.0-514.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/kernel-3.10.0-514.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/kernel-4.11.0-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/kernel-4.11.0-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/kernel-doc-3.10.0-514.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/kernel-doc-3.10.0-514.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/kernel-doc-4.11.0-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/kernel-doc-4.11.0-1.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/kernel-headers-3.10.0-514.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/kernel-headers-3.10.0-514.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/kernel-headers-4.11.0-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/kernel-headers-4.11.0-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/libnghttp2-1.21.1-1.1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/libnghttp2-1.21.1-1.1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/libnghttp2-1.21.1-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/libnghttp2-1.21.1-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/repodata/425cec0f040291008c346d22f9baea2594b5991d9b0f507d6349a6c905b7b82e-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/repodata/425cec0f040291008c346d22f9baea2594b5991d9b0f507d6349a6c905b7b82e-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/repodata/4a4495b4a9ca8d88506fe8e69d8f78f8ce15fff85185aee7b655e497bc62e04a-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/repodata/4a4495b4a9ca8d88506fe8e69d8f78f8ce15fff85185aee7b655e497bc62e04a-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/repodata/9a2de3d81cefc7d5f464f0a6b7494db74f0c65a6b8c62e6c7b084a30532181d4-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/repodata/9a2de3d81cefc7d5f464f0a6b7494db74f0c65a6b8c62e6c7b084a30532181d4-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/repodata/d5e48682cd192e754842cb9db90de2a097514f535ea228d9e1dbf9b9b6e24d9d-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/repodata/d5e48682cd192e754842cb9db90de2a097514f535ea228d9e1dbf9b9b6e24d9d-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/repodata/e604471cac154e78c098d14de5ba51cf9ad6c10c4187006eeb67b2b2c50a4440-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/repodata/e604471cac154e78c098d14de5ba51cf9ad6c10c4187006eeb67b2b2c50a4440-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/repodata/e86f1444bd807c0d5572e8459a87760babc6f399207f81627a6100a7efd769bc-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/repodata/e86f1444bd807c0d5572e8459a87760babc6f399207f81627a6100a7efd769bc-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/repodata/f725aa4c6cc441b905246cbc159bc62e090ce655c65892df6988e4468d155162-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/repodata/f725aa4c6cc441b905246cbc159bc62e090ce655c65892df6988e4468d155162-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/systemd-219-30.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/systemd-219-30.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/s390x/systemd-233-3.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/s390x/systemd-233-3.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/basesystem-10.0-7.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/basesystem-10.0-7.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/basesystem-11-3.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/basesystem-11-3.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/bash-4.2.46-21.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/bash-4.2.46-21.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/bash-4.4.12-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/bash-4.4.12-2.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/bash-doc-4.2.46-21.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/bash-doc-4.2.46-21.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/bash-doc-4.4.12-2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/bash-doc-4.4.12-2.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/dummy-nscd-2.17-157.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/dummy-nscd-2.17-157.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/dummy-nscd-2.25-4.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/dummy-nscd-2.25-4.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/dummy-nscd-2.25.90-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/dummy-nscd-2.25.90-2.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/filesystem-3.2-21.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/filesystem-3.2-21.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/filesystem-3.2-40.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/filesystem-3.2-40.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/glibc-2.17-157.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/glibc-2.17-157.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/glibc-2.25-4.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/glibc-2.25-4.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/glibc-2.25.90-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/glibc-2.25.90-2.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/glibc-common-2.17-157.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/glibc-common-2.17-157.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/glibc-common-2.25-4.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/glibc-common-2.25-4.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/glibc-common-2.25.90-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/glibc-common-2.25.90-2.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/glibc-debuginfo-common-2.17-157.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/glibc-debuginfo-common-2.17-157.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/glibc-debuginfo-common-2.25-4.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/glibc-debuginfo-common-2.25-4.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/glibc-debuginfo-common-2.25.90-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/glibc-debuginfo-common-2.25.90-2.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/grub2-2.02-0.40.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/grub2-2.02-0.40.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/httpd-2.2.10-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/httpd-2.2.10-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/httpd-2.2.15-59.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/httpd-2.2.15-59.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/httpd-2.4.25-7.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/httpd-2.4.25-7.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/httpd-2.4.25-8.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/httpd-2.4.25-8.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/httpd-doc-2.2.10-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/httpd-doc-2.2.10-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/httpd-doc-2.2.15-59.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/httpd-doc-2.2.15-59.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/httpd-doc-2.4.25-7.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/httpd-doc-2.4.25-7.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/httpd-doc-2.4.25-8.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/httpd-doc-2.4.25-8.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/httpd-provides-name-3.0-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/httpd-provides-name-3.0-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/httpd-provides-name-doc-3.0-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/httpd-provides-name-doc-3.0-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/httpd-provides-name-version-release-3.0-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/httpd-provides-name-version-release-3.0-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/httpd-provides-name-version-release-doc-3.0-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/httpd-provides-name-version-release-doc-3.0-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/httpd.yaml: -------------------------------------------------------------------------------- 1 | document: modulemd-defaults 2 | version: 1 3 | data: 4 | module: httpd 5 | stream: 2.4 6 | profiles: 7 | 2.4: [default] 8 | -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/kernel-3.10.0-514.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/kernel-3.10.0-514.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/kernel-4.11.0-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/kernel-4.11.0-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/kernel-doc-3.10.0-514.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/kernel-doc-3.10.0-514.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/kernel-doc-4.11.0-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/kernel-doc-4.11.0-1.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/kernel-headers-3.10.0-514.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/kernel-headers-3.10.0-514.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/kernel-headers-4.11.0-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/kernel-headers-4.11.0-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/libnghttp2-1.21.1-1.1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/libnghttp2-1.21.1-1.1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/libnghttp2-1.21.1-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/libnghttp2-1.21.1-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/repodata/02517771d46f54572e172605d193e70f158fc88db676cd7d02158736a8f8c7f8-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/repodata/02517771d46f54572e172605d193e70f158fc88db676cd7d02158736a8f8c7f8-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/repodata/02dd29c9b3c78f6d04f8853f7833cd63947eb3ef877917ef9a96839889d9f98f-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/repodata/02dd29c9b3c78f6d04f8853f7833cd63947eb3ef877917ef9a96839889d9f98f-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/repodata/7b20d2285e9d41d2f96f67029a28d11249485ad787606017bd855a3263d2209b-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/repodata/7b20d2285e9d41d2f96f67029a28d11249485ad787606017bd855a3263d2209b-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/repodata/a523bcf4140225dbb5a17cfc86ad198f02722913f219dd50d29eb6465acf8ca1-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/repodata/a523bcf4140225dbb5a17cfc86ad198f02722913f219dd50d29eb6465acf8ca1-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/repodata/c66ef9ad85b472dd8bfd68105fc5e2669b0ae73f18fd39ae6eb046665857feba-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/repodata/c66ef9ad85b472dd8bfd68105fc5e2669b0ae73f18fd39ae6eb046665857feba-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/repodata/d36cc059f1588d02469a7259af1a2a3b7764c2c039483b9c2fb8f61ac766ee7c-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/repodata/d36cc059f1588d02469a7259af1a2a3b7764c2c039483b9c2fb8f61ac766ee7c-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/repodata/fca8343fe9e52b62cbf4b64a0730ffb546bda5542286a884da54c1db5e522943-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/repodata/fca8343fe9e52b62cbf4b64a0730ffb546bda5542286a884da54c1db5e522943-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/systemd-219-30.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/systemd-219-30.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_all/x86_64/systemd-233-3.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_all/x86_64/systemd-233-3.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/i686/grub2-2.02-0.40.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/i686/grub2-2.02-0.40.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/i686/httpd-2.2.10-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/i686/httpd-2.2.10-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/i686/httpd-doc-2.2.10-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/i686/httpd-doc-2.2.10-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/i686/httpd-provides-name-3.0-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/i686/httpd-provides-name-3.0-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/i686/httpd-provides-name-doc-3.0-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/i686/httpd-provides-name-doc-3.0-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/i686/httpd-provides-name-version-release-3.0-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/i686/httpd-provides-name-version-release-3.0-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/i686/httpd-provides-name-version-release-doc-3.0-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/i686/httpd-provides-name-version-release-doc-3.0-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/i686/libnghttp2-1.21.1-1.1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/i686/libnghttp2-1.21.1-1.1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/i686/repodata/096ae18f96184669091bda3099fad01c34f6979ef0cf845e4d16a2957c866d61-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/i686/repodata/096ae18f96184669091bda3099fad01c34f6979ef0cf845e4d16a2957c866d61-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/i686/repodata/3d5f972e2bc031327f700070ea2ecaea8683cab617e076aefca14ba2a498f65b-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/i686/repodata/3d5f972e2bc031327f700070ea2ecaea8683cab617e076aefca14ba2a498f65b-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/i686/repodata/5dfb619f487431ed8697b8351dfc08b8bd1d523a17ea44ce2a19a0a308c04c16-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/i686/repodata/5dfb619f487431ed8697b8351dfc08b8bd1d523a17ea44ce2a19a0a308c04c16-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/i686/repodata/77cc6a35562eea13f53bf8959047662c3e69b5b8a073a26ef456fb871ce193df-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/i686/repodata/77cc6a35562eea13f53bf8959047662c3e69b5b8a073a26ef456fb871ce193df-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/i686/repodata/861d4c320499af7bb56d516e6045bd94690fe7227d4734892ad4f8b67223a9f3-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/i686/repodata/861d4c320499af7bb56d516e6045bd94690fe7227d4734892ad4f8b67223a9f3-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/i686/repodata/ae880ec5a096a7e64884ea29c570629f60571171dce67d9255aa914d8e392312-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/i686/repodata/ae880ec5a096a7e64884ea29c570629f60571171dce67d9255aa914d8e392312-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/s390x/grub2-2.02-0.40.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/s390x/grub2-2.02-0.40.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/s390x/httpd-2.2.10-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/s390x/httpd-2.2.10-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/s390x/httpd-doc-2.2.10-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/s390x/httpd-doc-2.2.10-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/s390x/httpd-provides-name-3.0-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/s390x/httpd-provides-name-3.0-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/s390x/httpd-provides-name-doc-3.0-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/s390x/httpd-provides-name-doc-3.0-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/s390x/httpd-provides-name-version-release-3.0-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/s390x/httpd-provides-name-version-release-3.0-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/s390x/httpd-provides-name-version-release-doc-3.0-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/s390x/httpd-provides-name-version-release-doc-3.0-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/s390x/libnghttp2-1.21.1-1.1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/s390x/libnghttp2-1.21.1-1.1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/s390x/repodata/01a1ea0f98f45165e5469df1d5d70d32fe2d2264943cafb6b24e78041ba5c9db-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/s390x/repodata/01a1ea0f98f45165e5469df1d5d70d32fe2d2264943cafb6b24e78041ba5c9db-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/s390x/repodata/5cc44c658d10d38fadf6bf8ad71668865adefab762fd216430e64331a55dafdf-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/s390x/repodata/5cc44c658d10d38fadf6bf8ad71668865adefab762fd216430e64331a55dafdf-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/s390x/repodata/76ca04b0198da7724c75b7360912e9dcddf68499a4c183a487cdc25a336fec6e-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/s390x/repodata/76ca04b0198da7724c75b7360912e9dcddf68499a4c183a487cdc25a336fec6e-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/s390x/repodata/935f9df4746c1674c5a07cd2790f4d1ec31a54da08868586cba1fb1c1c428d52-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/s390x/repodata/935f9df4746c1674c5a07cd2790f4d1ec31a54da08868586cba1fb1c1c428d52-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/s390x/repodata/acde40c6b5b640abc461dfa52da1573940d8b309b1d9096a8f822fa71054a57f-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/s390x/repodata/acde40c6b5b640abc461dfa52da1573940d8b309b1d9096a8f822fa71054a57f-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/s390x/repodata/e8f85878c5901a3c02e5373fcefb041a80dc8cca78e684592666781729452eb1-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/s390x/repodata/e8f85878c5901a3c02e5373fcefb041a80dc8cca78e684592666781729452eb1-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/src/grub2-2.02-0.40.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/src/grub2-2.02-0.40.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/src/httpd-2.2.10-1.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/src/httpd-2.2.10-1.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/src/httpd-provides-name-3.0-1.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/src/httpd-provides-name-3.0-1.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/src/httpd-provides-name-version-release-3.0-1.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/src/httpd-provides-name-version-release-3.0-1.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/src/libnghttp2-1.21.1-1.1.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/src/libnghttp2-1.21.1-1.1.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/x86_64/grub2-2.02-0.40.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/x86_64/grub2-2.02-0.40.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/x86_64/httpd-2.2.10-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/x86_64/httpd-2.2.10-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/x86_64/httpd-doc-2.2.10-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/x86_64/httpd-doc-2.2.10-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/x86_64/httpd-provides-name-3.0-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/x86_64/httpd-provides-name-3.0-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/x86_64/httpd-provides-name-doc-3.0-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/x86_64/httpd-provides-name-doc-3.0-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/x86_64/httpd-provides-name-version-release-3.0-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/x86_64/httpd-provides-name-version-release-3.0-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/x86_64/httpd-provides-name-version-release-doc-3.0-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/x86_64/httpd-provides-name-version-release-doc-3.0-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/x86_64/libnghttp2-1.21.1-1.1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/x86_64/libnghttp2-1.21.1-1.1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/x86_64/repodata/02551ec5b2a6acabac4e4361ec903c7802992c7dfa4eb9f7bc0ab57a929d6bd4-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/x86_64/repodata/02551ec5b2a6acabac4e4361ec903c7802992c7dfa4eb9f7bc0ab57a929d6bd4-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/x86_64/repodata/1b8d7f694316cdbec76d6c73bc57fb21e2fc3c61cc1e9fa141ed8b5597c43064-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/x86_64/repodata/1b8d7f694316cdbec76d6c73bc57fb21e2fc3c61cc1e9fa141ed8b5597c43064-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/x86_64/repodata/41385c9995c56b5c0b3bb1fbc467a7574a4fe135c87141b332931c66ad8a2b5a-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/x86_64/repodata/41385c9995c56b5c0b3bb1fbc467a7574a4fe135c87141b332931c66ad8a2b5a-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/x86_64/repodata/6babe0569d363520bb15614564ebe1f650a7e6a9954d4495aa95ab6a095d0407-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/x86_64/repodata/6babe0569d363520bb15614564ebe1f650a7e6a9954d4495aa95ab6a095d0407-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/x86_64/repodata/76753a7f9105e5ed8337991367a498ba6843ebe3f0778b9708aab2c4188f87d2-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/x86_64/repodata/76753a7f9105e5ed8337991367a498ba6843ebe3f0778b9708aab2c4188f87d2-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/_non-modular/x86_64/repodata/93ee02e99edca2f3d0bf9181e3db2a63373114e8b947ef62608fb04a4a1bc735-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/_non-modular/x86_64/repodata/93ee02e99edca2f3d0bf9181e3db2a63373114e8b947ef62608fb04a4a1bc735-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/basesystem-11-3.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/basesystem-11-3.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/bash-4.4.12-2.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/bash-4.4.12-2.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/bash-doc-4.4.12-2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/bash-doc-4.4.12-2.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/dummy-nscd-2.25-4.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/dummy-nscd-2.25-4.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/filesystem-3.2-40.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/filesystem-3.2-40.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/glibc-2.25-4.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/glibc-2.25-4.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/glibc-common-2.25-4.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/glibc-common-2.25-4.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/glibc-debuginfo-common-2.25-4.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/glibc-debuginfo-common-2.25-4.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/kernel-4.11.0-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/kernel-4.11.0-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/kernel-doc-4.11.0-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/kernel-doc-4.11.0-1.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/kernel-headers-4.11.0-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/kernel-headers-4.11.0-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/repodata/0bd99465a38e120f2473242cad12bfb3b772b24b8ecae39bffbd9cdef9d11f71-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/repodata/0bd99465a38e120f2473242cad12bfb3b772b24b8ecae39bffbd9cdef9d11f71-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/repodata/290e9c7ad54ffb0267d799c6d5e5f6f0adaeaffdd79f9a3a87a2deb6e676cea7-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/repodata/290e9c7ad54ffb0267d799c6d5e5f6f0adaeaffdd79f9a3a87a2deb6e676cea7-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/repodata/5da22eedca922651c9d71f60ddec76008be605232430ebf7eac1c98d73e5a191-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/repodata/5da22eedca922651c9d71f60ddec76008be605232430ebf7eac1c98d73e5a191-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/repodata/9b9b45a44325ff1cbfa5021c8cfadad7638397c07c2cba4ec4862e9a20fff668-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/repodata/9b9b45a44325ff1cbfa5021c8cfadad7638397c07c2cba4ec4862e9a20fff668-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/repodata/b5cc02335c9184dbec171c140cfb01e027d48f5d4ee3ddc022768f10eadadd8f-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/repodata/b5cc02335c9184dbec171c140cfb01e027d48f5d4ee3ddc022768f10eadadd8f-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/repodata/f4da985cff145ce4ec4b63175cfd593b99ce4fe51c886367189f2acdbb8b2b2e-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/repodata/f4da985cff145ce4ec4b63175cfd593b99ce4fe51c886367189f2acdbb8b2b2e-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/i686/systemd-233-3.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/i686/systemd-233-3.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/noarch/basesystem-11-3.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/noarch/basesystem-11-3.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/noarch/bash-doc-4.4.12-2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/noarch/bash-doc-4.4.12-2.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/noarch/kernel-doc-4.11.0-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/noarch/kernel-doc-4.11.0-1.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/basesystem-11-3.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/basesystem-11-3.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/bash-4.4.12-2.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/bash-4.4.12-2.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/bash-doc-4.4.12-2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/bash-doc-4.4.12-2.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/dummy-nscd-2.25-4.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/dummy-nscd-2.25-4.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/filesystem-3.2-40.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/filesystem-3.2-40.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/glibc-2.25-4.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/glibc-2.25-4.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/glibc-common-2.25-4.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/glibc-common-2.25-4.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/glibc-debuginfo-common-2.25-4.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/glibc-debuginfo-common-2.25-4.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/kernel-4.11.0-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/kernel-4.11.0-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/kernel-doc-4.11.0-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/kernel-doc-4.11.0-1.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/kernel-headers-4.11.0-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/kernel-headers-4.11.0-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/repodata/2af29a3797759547f96d5da9aa7a81b2b49e50878f9c7209737b48084ed141b5-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/repodata/2af29a3797759547f96d5da9aa7a81b2b49e50878f9c7209737b48084ed141b5-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/repodata/4b15355abdab48ad730e33090f1efbec3999353e01039a8cbee28150c761caac-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/repodata/4b15355abdab48ad730e33090f1efbec3999353e01039a8cbee28150c761caac-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/repodata/9af251c9d796b28d8045301069ef24001d66119fb81bdb7a9cb2ad8308f34911-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/repodata/9af251c9d796b28d8045301069ef24001d66119fb81bdb7a9cb2ad8308f34911-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/repodata/c8ab38018567345263fe704c401524d1fe9545b6471692b28e9524c0a23cd80b-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/repodata/c8ab38018567345263fe704c401524d1fe9545b6471692b28e9524c0a23cd80b-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/repodata/f71040c22559fe0075676b32208bf5fb30288a851ed06f00aef5fb87486297f3-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/repodata/f71040c22559fe0075676b32208bf5fb30288a851ed06f00aef5fb87486297f3-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/s390x/systemd-233-3.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/s390x/systemd-233-3.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/src/basesystem-11-3.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/src/basesystem-11-3.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/src/bash-4.4.12-2.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/src/bash-4.4.12-2.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/src/filesystem-3.2-40.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/src/filesystem-3.2-40.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/src/glibc-2.25-4.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/src/glibc-2.25-4.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/src/kernel-4.11.0-1.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/src/kernel-4.11.0-1.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/src/systemd-233-3.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/src/systemd-233-3.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/basesystem-11-3.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/basesystem-11-3.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/bash-4.4.12-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/bash-4.4.12-2.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/bash-doc-4.4.12-2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/bash-doc-4.4.12-2.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/dummy-nscd-2.25-4.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/dummy-nscd-2.25-4.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/filesystem-3.2-40.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/filesystem-3.2-40.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/glibc-2.25-4.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/glibc-2.25-4.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/glibc-common-2.25-4.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/glibc-common-2.25-4.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/glibc-debuginfo-common-2.25-4.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/glibc-debuginfo-common-2.25-4.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/kernel-4.11.0-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/kernel-4.11.0-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/kernel-doc-4.11.0-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/kernel-doc-4.11.0-1.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/kernel-headers-4.11.0-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/kernel-headers-4.11.0-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/repodata/2701513854bc03cd5f978041407e1c25a780abf79e62f1d2304abd49fb030bfe-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/repodata/2701513854bc03cd5f978041407e1c25a780abf79e62f1d2304abd49fb030bfe-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/repodata/29ab3a3a200636de5a429bcf221ef71c0b522b150dbb9a2a9ae52de381880f0d-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/repodata/29ab3a3a200636de5a429bcf221ef71c0b522b150dbb9a2a9ae52de381880f0d-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/repodata/5fb61d376156ab4ce31330757f19e57378cc885597413ad787f5277fbf7280b1-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/repodata/5fb61d376156ab4ce31330757f19e57378cc885597413ad787f5277fbf7280b1-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/repodata/6fd2b7ce8c8d049bae4d7e0b398148d71c01fd28ac0d2524e609aadb5dab3052-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/repodata/6fd2b7ce8c8d049bae4d7e0b398148d71c01fd28ac0d2524e609aadb5dab3052-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/repodata/e7a8e17dd64ba565a84139cf92a9a543a8a17bddc0e6332fbcd1bfe20a77d7d2-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/repodata/e7a8e17dd64ba565a84139cf92a9a543a8a17bddc0e6332fbcd1bfe20a77d7d2-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-1/x86_64/systemd-233-3.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-1/x86_64/systemd-233-3.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/basesystem-11-3.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/basesystem-11-3.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/bash-4.4.12-2.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/bash-4.4.12-2.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/bash-doc-4.4.12-2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/bash-doc-4.4.12-2.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/dummy-nscd-2.25.90-2.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/dummy-nscd-2.25.90-2.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/filesystem-3.2-40.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/filesystem-3.2-40.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/glibc-2.25.90-2.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/glibc-2.25.90-2.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/glibc-common-2.25.90-2.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/glibc-common-2.25.90-2.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/glibc-debuginfo-common-2.25.90-2.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/glibc-debuginfo-common-2.25.90-2.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/kernel-4.11.0-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/kernel-4.11.0-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/kernel-doc-4.11.0-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/kernel-doc-4.11.0-1.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/kernel-headers-4.11.0-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/kernel-headers-4.11.0-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/repodata/2c646459aed861bcfedd9538ad43c4e06cecc0d8bf50ff88a42ce92c093c3cf1-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/repodata/2c646459aed861bcfedd9538ad43c4e06cecc0d8bf50ff88a42ce92c093c3cf1-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/repodata/3f5fbc10b586ac5d557e8e423c07b323c6ccdfc065fa5a38942ffddc56c6dec5-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/repodata/3f5fbc10b586ac5d557e8e423c07b323c6ccdfc065fa5a38942ffddc56c6dec5-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/repodata/a8239c88869b30de18e2241890cd3543e1525e41991c99068022a4117505bcf5-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/repodata/a8239c88869b30de18e2241890cd3543e1525e41991c99068022a4117505bcf5-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/repodata/b85a173d4d57c2d4b09e252de36f24f38cf0f5b6194a12b7d95aacf312f21004-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/repodata/b85a173d4d57c2d4b09e252de36f24f38cf0f5b6194a12b7d95aacf312f21004-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/repodata/ed6d0a90af4f1a1d7577763077717f4e8c9e9118b7e815824c488825d3f40541-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/repodata/ed6d0a90af4f1a1d7577763077717f4e8c9e9118b7e815824c488825d3f40541-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/repodata/f0cc45d85b3e8db94359796062b716f2ee68f23e1ce6b05e229faa7f0b653878-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/repodata/f0cc45d85b3e8db94359796062b716f2ee68f23e1ce6b05e229faa7f0b653878-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/i686/systemd-233-3.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/i686/systemd-233-3.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/noarch/basesystem-11-3.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/noarch/basesystem-11-3.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/noarch/bash-doc-4.4.12-2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/noarch/bash-doc-4.4.12-2.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/noarch/kernel-doc-4.11.0-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/noarch/kernel-doc-4.11.0-1.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/basesystem-11-3.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/basesystem-11-3.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/bash-4.4.12-2.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/bash-4.4.12-2.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/bash-doc-4.4.12-2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/bash-doc-4.4.12-2.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/dummy-nscd-2.25.90-2.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/dummy-nscd-2.25.90-2.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/filesystem-3.2-40.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/filesystem-3.2-40.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/glibc-2.25.90-2.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/glibc-2.25.90-2.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/glibc-common-2.25.90-2.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/glibc-common-2.25.90-2.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/glibc-debuginfo-common-2.25.90-2.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/glibc-debuginfo-common-2.25.90-2.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/kernel-4.11.0-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/kernel-4.11.0-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/kernel-doc-4.11.0-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/kernel-doc-4.11.0-1.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/kernel-headers-4.11.0-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/kernel-headers-4.11.0-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/repodata/10a489e767aefa063ebc4a8e6650a635a7534a5579690e831c71988a2a801eae-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/repodata/10a489e767aefa063ebc4a8e6650a635a7534a5579690e831c71988a2a801eae-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/repodata/3b9a21f2174811d9077ee95afd017d6cd1cd6f5a38cf91f1c9baa91799bae176-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/repodata/3b9a21f2174811d9077ee95afd017d6cd1cd6f5a38cf91f1c9baa91799bae176-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/repodata/4b07987399cff660d9e144d0a44c6ceba3c10642d0b82523d3131f9895d89780-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/repodata/4b07987399cff660d9e144d0a44c6ceba3c10642d0b82523d3131f9895d89780-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/repodata/6922ea6fc78050b5726b7efcc48448535a6bb9461bb5cd8ecec954a65ea57305-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/repodata/6922ea6fc78050b5726b7efcc48448535a6bb9461bb5cd8ecec954a65ea57305-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/repodata/e015590a3ac04f560d4ed2b5e616b9c5484554a3d9f6664184e375e760774b52-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/repodata/e015590a3ac04f560d4ed2b5e616b9c5484554a3d9f6664184e375e760774b52-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/s390x/systemd-233-3.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/s390x/systemd-233-3.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/src/basesystem-11-3.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/src/basesystem-11-3.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/src/bash-4.4.12-2.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/src/bash-4.4.12-2.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/src/filesystem-3.2-40.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/src/filesystem-3.2-40.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/src/glibc-2.25.90-2.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/src/glibc-2.25.90-2.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/src/kernel-4.11.0-1.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/src/kernel-4.11.0-1.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/src/systemd-233-3.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/src/systemd-233-3.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/basesystem-11-3.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/basesystem-11-3.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/bash-4.4.12-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/bash-4.4.12-2.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/bash-doc-4.4.12-2.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/bash-doc-4.4.12-2.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/dummy-nscd-2.25.90-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/dummy-nscd-2.25.90-2.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/filesystem-3.2-40.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/filesystem-3.2-40.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/glibc-2.25.90-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/glibc-2.25.90-2.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/glibc-common-2.25.90-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/glibc-common-2.25.90-2.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/glibc-debuginfo-common-2.25.90-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/glibc-debuginfo-common-2.25.90-2.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/kernel-4.11.0-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/kernel-4.11.0-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/kernel-doc-4.11.0-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/kernel-doc-4.11.0-1.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/kernel-headers-4.11.0-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/kernel-headers-4.11.0-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/repodata/02ec627b4e841a824c34f245d977a9d7e69fd696760afbf3a6eed84157f2bf0e-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/repodata/02ec627b4e841a824c34f245d977a9d7e69fd696760afbf3a6eed84157f2bf0e-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/repodata/41398af18302111ad8d542b137ce234556c6693fbb66ea01084d9224a2399c87-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/repodata/41398af18302111ad8d542b137ce234556c6693fbb66ea01084d9224a2399c87-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/repodata/65f0a3c92f1d21b30328e65acf3472ba62df03621302eecd36509c9fb4e9c83b-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/repodata/65f0a3c92f1d21b30328e65acf3472ba62df03621302eecd36509c9fb4e9c83b-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/repodata/b64e102539e600b45cbed904bd8e07d3fa9580dbcf0ddf73d02af5a82ecc72fa-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/repodata/b64e102539e600b45cbed904bd8e07d3fa9580dbcf0ddf73d02af5a82ecc72fa-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-f26-2/x86_64/systemd-233-3.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-f26-2/x86_64/systemd-233-3.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/i686/basesystem-10.0-7.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/i686/basesystem-10.0-7.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/i686/bash-4.2.46-21.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/i686/bash-4.2.46-21.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/i686/bash-doc-4.2.46-21.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/i686/bash-doc-4.2.46-21.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/i686/dummy-nscd-2.17-157.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/i686/dummy-nscd-2.17-157.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/i686/filesystem-3.2-21.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/i686/filesystem-3.2-21.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/i686/glibc-2.17-157.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/i686/glibc-2.17-157.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/i686/glibc-common-2.17-157.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/i686/glibc-common-2.17-157.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/i686/glibc-debuginfo-common-2.17-157.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/i686/glibc-debuginfo-common-2.17-157.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/i686/kernel-3.10.0-514.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/i686/kernel-3.10.0-514.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/i686/kernel-doc-3.10.0-514.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/i686/kernel-doc-3.10.0-514.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/i686/kernel-headers-3.10.0-514.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/i686/kernel-headers-3.10.0-514.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/i686/repodata/f0f5c32d3dfe340a88be037ef1cc3f270ab8e967ba848d17117d7ee2dca7fb32-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/i686/repodata/f0f5c32d3dfe340a88be037ef1cc3f270ab8e967ba848d17117d7ee2dca7fb32-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/i686/systemd-219-30.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/i686/systemd-219-30.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/noarch/basesystem-10.0-7.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/noarch/basesystem-10.0-7.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/noarch/bash-doc-4.2.46-21.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/noarch/bash-doc-4.2.46-21.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/noarch/kernel-doc-3.10.0-514.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/noarch/kernel-doc-3.10.0-514.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/s390x/basesystem-10.0-7.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/s390x/basesystem-10.0-7.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/s390x/bash-4.2.46-21.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/s390x/bash-4.2.46-21.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/s390x/bash-doc-4.2.46-21.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/s390x/bash-doc-4.2.46-21.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/s390x/dummy-nscd-2.17-157.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/s390x/dummy-nscd-2.17-157.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/s390x/filesystem-3.2-21.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/s390x/filesystem-3.2-21.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/s390x/glibc-2.17-157.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/s390x/glibc-2.17-157.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/s390x/glibc-common-2.17-157.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/s390x/glibc-common-2.17-157.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/s390x/glibc-debuginfo-common-2.17-157.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/s390x/glibc-debuginfo-common-2.17-157.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/s390x/kernel-3.10.0-514.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/s390x/kernel-3.10.0-514.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/s390x/kernel-doc-3.10.0-514.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/s390x/kernel-doc-3.10.0-514.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/s390x/kernel-headers-3.10.0-514.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/s390x/kernel-headers-3.10.0-514.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/s390x/systemd-219-30.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/s390x/systemd-219-30.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/src/basesystem-10.0-7.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/src/basesystem-10.0-7.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/src/bash-4.2.46-21.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/src/bash-4.2.46-21.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/src/filesystem-3.2-21.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/src/filesystem-3.2-21.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/src/glibc-2.17-157.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/src/glibc-2.17-157.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/src/kernel-3.10.0-514.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/src/kernel-3.10.0-514.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/src/systemd-219-30.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/src/systemd-219-30.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/x86_64/basesystem-10.0-7.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/x86_64/basesystem-10.0-7.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/x86_64/bash-4.2.46-21.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/x86_64/bash-4.2.46-21.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/x86_64/bash-doc-4.2.46-21.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/x86_64/bash-doc-4.2.46-21.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/x86_64/dummy-nscd-2.17-157.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/x86_64/dummy-nscd-2.17-157.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/x86_64/filesystem-3.2-21.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/x86_64/filesystem-3.2-21.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/x86_64/glibc-2.17-157.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/x86_64/glibc-2.17-157.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/x86_64/glibc-common-2.17-157.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/x86_64/glibc-common-2.17-157.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/x86_64/glibc-debuginfo-common-2.17-157.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/x86_64/glibc-debuginfo-common-2.17-157.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/x86_64/kernel-3.10.0-514.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/x86_64/kernel-3.10.0-514.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/x86_64/kernel-doc-3.10.0-514.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/x86_64/kernel-doc-3.10.0-514.noarch.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/x86_64/kernel-headers-3.10.0-514.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/x86_64/kernel-headers-3.10.0-514.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/base-runtime-rhel73-1/x86_64/systemd-219-30.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/base-runtime-rhel73-1/x86_64/systemd-219-30.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/i686/httpd-2.2.15-59.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/i686/httpd-2.2.15-59.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/i686/httpd-doc-2.2.15-59.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/i686/httpd-doc-2.2.15-59.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/i686/repodata/03fc6ad0f80026d72250a47548078e9612031fc8dfad101b6ca40542ac9e443d-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/i686/repodata/03fc6ad0f80026d72250a47548078e9612031fc8dfad101b6ca40542ac9e443d-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/i686/repodata/2d442fe4da23ac7f985e87b6117e11d32cd66e8d69fc7a7c30b0635e2b1dac4d-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/i686/repodata/2d442fe4da23ac7f985e87b6117e11d32cd66e8d69fc7a7c30b0635e2b1dac4d-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/i686/repodata/32afd669744ee4e82988d9133e1dcf227b8f34b6b0b56520730bbf32ec2bb163-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/i686/repodata/32afd669744ee4e82988d9133e1dcf227b8f34b6b0b56520730bbf32ec2bb163-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/i686/repodata/349e47ae3b916ffda1663b6cd9b3cb48f071ffcd933d925551ee347d21e803d1-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/i686/repodata/349e47ae3b916ffda1663b6cd9b3cb48f071ffcd933d925551ee347d21e803d1-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/i686/repodata/406cccd510cff9f9d92a8a493624aea3a0c9a94c6827ccbbe0b69d40f0c8665b-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/i686/repodata/406cccd510cff9f9d92a8a493624aea3a0c9a94c6827ccbbe0b69d40f0c8665b-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/i686/repodata/5fc06cb7cfbeac4e777ea42590c892035eb95329ee0b7da2e4ddef3da04ab0e9-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/i686/repodata/5fc06cb7cfbeac4e777ea42590c892035eb95329ee0b7da2e4ddef3da04ab0e9-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/i686/repodata/9f95de36bcaf98a0fc3e8483ada52c715916b060820a4309efe3a0687c851c4b-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/i686/repodata/9f95de36bcaf98a0fc3e8483ada52c715916b060820a4309efe3a0687c851c4b-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/s390x/httpd-2.2.15-59.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/s390x/httpd-2.2.15-59.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/s390x/httpd-doc-2.2.15-59.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/s390x/httpd-doc-2.2.15-59.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/s390x/repodata/13e3f7c04b46c1682182e4d566add538d1d8ed37e61f7dbdc6e16aeaa4768805-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/s390x/repodata/13e3f7c04b46c1682182e4d566add538d1d8ed37e61f7dbdc6e16aeaa4768805-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/s390x/repodata/1870278259386f08c27583d2575457f185d065fff15526a93fe30652a747d1a7-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/s390x/repodata/1870278259386f08c27583d2575457f185d065fff15526a93fe30652a747d1a7-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/s390x/repodata/acee6d3b27377f84fcfccb87b8f457c2def0851908367a5025c5b5e66e6f8a7f-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/s390x/repodata/acee6d3b27377f84fcfccb87b8f457c2def0851908367a5025c5b5e66e6f8a7f-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/s390x/repodata/bc47c370a43f00aed37066c4a4ed16549985892deb8ebbe300e644553fef5658-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/s390x/repodata/bc47c370a43f00aed37066c4a4ed16549985892deb8ebbe300e644553fef5658-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/s390x/repodata/d01175c963911d4feace8e30a699f870d3d815f48c37230c81dbe6bad595dd06-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/s390x/repodata/d01175c963911d4feace8e30a699f870d3d815f48c37230c81dbe6bad595dd06-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/s390x/repodata/da9f29cfe99a1ed025c73cf82945a685aa3e2164509fe1b7bba24b735469d1f9-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/s390x/repodata/da9f29cfe99a1ed025c73cf82945a685aa3e2164509fe1b7bba24b735469d1f9-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/s390x/repodata/e22de26db83948d25ec12d327c1794f8cad18c14f7021e5428306dd4a456f7c4-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/s390x/repodata/e22de26db83948d25ec12d327c1794f8cad18c14f7021e5428306dd4a456f7c4-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/src/httpd-2.2.15-59.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/src/httpd-2.2.15-59.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/x86_64/httpd-2.2.15-59.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/x86_64/httpd-2.2.15-59.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/x86_64/httpd-doc-2.2.15-59.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/x86_64/httpd-doc-2.2.15-59.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/x86_64/repodata/0634a236b57c9970e8236ecfd2863644b4312e75a68d4f8755308a570658acfc-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/x86_64/repodata/0634a236b57c9970e8236ecfd2863644b4312e75a68d4f8755308a570658acfc-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/x86_64/repodata/0b604aa496f768e638dd6f804c33403cf0764fbc4d3cdb41037b9c59f6460e75-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/x86_64/repodata/0b604aa496f768e638dd6f804c33403cf0764fbc4d3cdb41037b9c59f6460e75-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/x86_64/repodata/1f66590abb9d80a053e36fbbcd54e0c7cf69e2253e285598aa402d742302b3e2-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/x86_64/repodata/1f66590abb9d80a053e36fbbcd54e0c7cf69e2253e285598aa402d742302b3e2-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/x86_64/repodata/42dfbd1f0acf7e60911c0cf4b6ad1ead428942ff45ea1cac17ddbc9597560704-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/x86_64/repodata/42dfbd1f0acf7e60911c0cf4b6ad1ead428942ff45ea1cac17ddbc9597560704-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/x86_64/repodata/4d3534b47120b1d466d207384a419d02f21ae311b83f7fe07aad3e74c453a551-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/x86_64/repodata/4d3534b47120b1d466d207384a419d02f21ae311b83f7fe07aad3e74c453a551-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/x86_64/repodata/550fd328b5f3aa1366c6bf1d2089f6726eac2efc273fec3e1c9547d0fd272439-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/x86_64/repodata/550fd328b5f3aa1366c6bf1d2089f6726eac2efc273fec3e1c9547d0fd272439-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.2-1/x86_64/repodata/92217ee1dd392000dc473547b3dba06cabc8676b2ca10c4ebe242b945c8ea4d2-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.2-1/x86_64/repodata/92217ee1dd392000dc473547b3dba06cabc8676b2ca10c4ebe242b945c8ea4d2-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/i686/httpd-2.4.25-7.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/i686/httpd-2.4.25-7.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/i686/httpd-doc-2.4.25-7.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/i686/httpd-doc-2.4.25-7.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/i686/httpd.yaml: -------------------------------------------------------------------------------- 1 | document: modulemd-defaults 2 | version: 1 3 | data: 4 | module: httpd 5 | stream: 2.4 6 | profiles: 7 | 2.4: [default] 8 | -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/i686/libnghttp2-1.21.1-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/i686/libnghttp2-1.21.1-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/i686/repodata/01513c613857f65e208d002e44c245fc9348370d2e230d5a9147859cc2440e3b-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/i686/repodata/01513c613857f65e208d002e44c245fc9348370d2e230d5a9147859cc2440e3b-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/i686/repodata/49c3743df58e1b96d8e0101f2acd400e3e0fb727fc2801be142e2abc69ebe30f-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/i686/repodata/49c3743df58e1b96d8e0101f2acd400e3e0fb727fc2801be142e2abc69ebe30f-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/i686/repodata/4bd94b7b17f27a3d6323fcac3e2f8445fb4c8cd3852f9c8e436f031190630ee2-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/i686/repodata/4bd94b7b17f27a3d6323fcac3e2f8445fb4c8cd3852f9c8e436f031190630ee2-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/i686/repodata/876456a8161f53035adf586603e355198f241b8de4fcc107895515e223d5d592-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/i686/repodata/876456a8161f53035adf586603e355198f241b8de4fcc107895515e223d5d592-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/i686/repodata/8e04d815eaeb276a31beba7b289607497c1d5ada7a89e64fe678249092925310-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/i686/repodata/8e04d815eaeb276a31beba7b289607497c1d5ada7a89e64fe678249092925310-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/i686/repodata/ad24e687e4f3af0583f63fcd4f0e1e93b3ec279f011c69c28aca38e742e44f50-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/i686/repodata/ad24e687e4f3af0583f63fcd4f0e1e93b3ec279f011c69c28aca38e742e44f50-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/i686/repodata/caf6347c2a45d04a7bb0dbff256380fa1ff7af97d5f27dca09b3e80cd05c57c7-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/i686/repodata/caf6347c2a45d04a7bb0dbff256380fa1ff7af97d5f27dca09b3e80cd05c57c7-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/s390x/httpd-2.4.25-7.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/s390x/httpd-2.4.25-7.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/s390x/httpd-doc-2.4.25-7.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/s390x/httpd-doc-2.4.25-7.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/s390x/httpd.yaml: -------------------------------------------------------------------------------- 1 | document: modulemd-defaults 2 | version: 1 3 | data: 4 | module: httpd 5 | stream: 2.4 6 | profiles: 7 | 2.4: [default] 8 | -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/s390x/libnghttp2-1.21.1-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/s390x/libnghttp2-1.21.1-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/s390x/repodata/5d551a4c6dbf729c05160bdefb5ed00d26716c69c042cf01aab2565640cb22ac-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/s390x/repodata/5d551a4c6dbf729c05160bdefb5ed00d26716c69c042cf01aab2565640cb22ac-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/s390x/repodata/69857c70a6451479ee0c0a0e37286dc00bca5a2faa482d4b1d212eb6136fa0aa-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/s390x/repodata/69857c70a6451479ee0c0a0e37286dc00bca5a2faa482d4b1d212eb6136fa0aa-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/s390x/repodata/819e86e32d196c28ae699db394ad42096e1413f9de33ea048a8cb679f9cb25af-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/s390x/repodata/819e86e32d196c28ae699db394ad42096e1413f9de33ea048a8cb679f9cb25af-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/s390x/repodata/90e5b6c7980d346897cdc6ca48d18f1490cbc7b38c6882f0c897e1c2ec2eaa67-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/s390x/repodata/90e5b6c7980d346897cdc6ca48d18f1490cbc7b38c6882f0c897e1c2ec2eaa67-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/s390x/repodata/a56b68690d5c0d9c40a9995cd9faa7dab2c755feda01f3558054dd9a8ac57f96-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/s390x/repodata/a56b68690d5c0d9c40a9995cd9faa7dab2c755feda01f3558054dd9a8ac57f96-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/s390x/repodata/b03ed2bfa70647d3929298055edcd0d3cc70f6c9bb559f02abd197bf4de42cfd-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/s390x/repodata/b03ed2bfa70647d3929298055edcd0d3cc70f6c9bb559f02abd197bf4de42cfd-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/s390x/repodata/c9e0910dc42a296d290975c711256d8f05e77b7c3784ca995454e4dbf5569652-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/s390x/repodata/c9e0910dc42a296d290975c711256d8f05e77b7c3784ca995454e4dbf5569652-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/src/httpd-2.4.25-7.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/src/httpd-2.4.25-7.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/src/libnghttp2-1.21.1-1.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/src/libnghttp2-1.21.1-1.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/x86_64/httpd-2.4.25-7.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/x86_64/httpd-2.4.25-7.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/x86_64/httpd-doc-2.4.25-7.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/x86_64/httpd-doc-2.4.25-7.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/x86_64/httpd.yaml: -------------------------------------------------------------------------------- 1 | document: modulemd-defaults 2 | version: 1 3 | data: 4 | module: httpd 5 | stream: 2.4 6 | profiles: 7 | 2.4: [default] 8 | -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/x86_64/libnghttp2-1.21.1-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/x86_64/libnghttp2-1.21.1-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/x86_64/repodata/1d9f907984681afe87cf3db455db7e496006d9873e143ce91f57f48163c1242c-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/x86_64/repodata/1d9f907984681afe87cf3db455db7e496006d9873e143ce91f57f48163c1242c-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/x86_64/repodata/7401efdadd4f7177d130643053c50bad88b71c853a5dfaf844f5b1917e529d85-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/x86_64/repodata/7401efdadd4f7177d130643053c50bad88b71c853a5dfaf844f5b1917e529d85-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/x86_64/repodata/8f9dd5e236731653e5a4487334ddcd48907822e38fd5310e769b4e288cca09b8-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/x86_64/repodata/8f9dd5e236731653e5a4487334ddcd48907822e38fd5310e769b4e288cca09b8-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/x86_64/repodata/c26d28065fddecf2a5ae53dc10a3abe9913a0a8dc5281149038af0809c60f771-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/x86_64/repodata/c26d28065fddecf2a5ae53dc10a3abe9913a0a8dc5281149038af0809c60f771-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/x86_64/repodata/c5a113dc68969c8ec64fb2417682f442dd61d4befceb8133caa88c1b8332dc6e-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/x86_64/repodata/c5a113dc68969c8ec64fb2417682f442dd61d4befceb8133caa88c1b8332dc6e-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/x86_64/repodata/c737ef5a58c444520311f7471220f60814489e8e0821abebed1c8a3c132eb8a3-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/x86_64/repodata/c737ef5a58c444520311f7471220f60814489e8e0821abebed1c8a3c132eb8a3-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-1/x86_64/repodata/e9ab31d36533c2764cf3d4517296cd078a08744a4d1e277bc312a57e1977959e-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-1/x86_64/repodata/e9ab31d36533c2764cf3d4517296cd078a08744a4d1e277bc312a57e1977959e-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/i686/httpd-2.4.25-8.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/i686/httpd-2.4.25-8.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/i686/httpd-doc-2.4.25-8.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/i686/httpd-doc-2.4.25-8.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/i686/libnghttp2-1.21.1-1.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/i686/libnghttp2-1.21.1-1.i686.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/i686/repodata/0860d05cdbbb821b652fd9f93258913d9c3f200c886612f179c26113a24d5e9d-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/i686/repodata/0860d05cdbbb821b652fd9f93258913d9c3f200c886612f179c26113a24d5e9d-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/i686/repodata/0d39bb01e072e5f21b723a180ee504255efe0f68aae2d1e406858e86af0e188b-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/i686/repodata/0d39bb01e072e5f21b723a180ee504255efe0f68aae2d1e406858e86af0e188b-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/i686/repodata/2b65f2224de8f1e873e2c1c6b6853b0a9b7d3bc6181b6d7be99a7ec1e049ef57-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/i686/repodata/2b65f2224de8f1e873e2c1c6b6853b0a9b7d3bc6181b6d7be99a7ec1e049ef57-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/i686/repodata/4d2cdb7879963dd460741bf32b7d3d1fc6ca38d68ed10f8dc7fbfc3ccc967ef4-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/i686/repodata/4d2cdb7879963dd460741bf32b7d3d1fc6ca38d68ed10f8dc7fbfc3ccc967ef4-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/i686/repodata/6e0ccd539b8487c56b4be9c167dd1d518a8ff7354245f4593e817bfe5909bbc5-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/i686/repodata/6e0ccd539b8487c56b4be9c167dd1d518a8ff7354245f4593e817bfe5909bbc5-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/i686/repodata/e2462308c4477e4740543028b0288c42942cd4984bbb37b95f4ba9794488484f-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/i686/repodata/e2462308c4477e4740543028b0288c42942cd4984bbb37b95f4ba9794488484f-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/i686/repodata/e5cbbe3cdb9ff025a6f1a5c773473494a0ebef4b0b5c96ba5a40da869092af08-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/i686/repodata/e5cbbe3cdb9ff025a6f1a5c773473494a0ebef4b0b5c96ba5a40da869092af08-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/s390x/httpd-2.4.25-8.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/s390x/httpd-2.4.25-8.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/s390x/httpd-doc-2.4.25-8.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/s390x/httpd-doc-2.4.25-8.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/s390x/libnghttp2-1.21.1-1.s390x.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/s390x/libnghttp2-1.21.1-1.s390x.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/s390x/repodata/222784064998192225948bd42cfd4f309607ed2e956f35e853ec04f6b5bfff26-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/s390x/repodata/222784064998192225948bd42cfd4f309607ed2e956f35e853ec04f6b5bfff26-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/s390x/repodata/2db9ffba74a218518e2f56343ae309fef90750996929790ed5f07da544d25e72-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/s390x/repodata/2db9ffba74a218518e2f56343ae309fef90750996929790ed5f07da544d25e72-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/s390x/repodata/43bd4784f0153369535272c70684af4380ae4c54066f0fde2ee346339c6f28e8-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/s390x/repodata/43bd4784f0153369535272c70684af4380ae4c54066f0fde2ee346339c6f28e8-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/s390x/repodata/6806a2295b024ee97d996690d5b0a1677004ab4a7a6d186a47876a2096f69697-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/s390x/repodata/6806a2295b024ee97d996690d5b0a1677004ab4a7a6d186a47876a2096f69697-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/s390x/repodata/8aee83183505d5a433e991b9db12b46b046686c1ec8552bbe19de8da7f5ed4d2-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/s390x/repodata/8aee83183505d5a433e991b9db12b46b046686c1ec8552bbe19de8da7f5ed4d2-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/s390x/repodata/c04af70f97b52b59d2cf36632065217e804650a9e5e2f5dcfdd601ede350b702-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/s390x/repodata/c04af70f97b52b59d2cf36632065217e804650a9e5e2f5dcfdd601ede350b702-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/s390x/repodata/f6e9e967618ffc1bd9c7f9ec0a03d4824254bb351aa4c53657ef28a6f7cb9c77-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/s390x/repodata/f6e9e967618ffc1bd9c7f9ec0a03d4824254bb351aa4c53657ef28a6f7cb9c77-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/src/httpd-2.4.25-8.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/src/httpd-2.4.25-8.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/src/libnghttp2-1.21.1-1.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/src/libnghttp2-1.21.1-1.src.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/x86_64/httpd-2.4.25-8.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/x86_64/httpd-2.4.25-8.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/x86_64/httpd-doc-2.4.25-8.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/x86_64/httpd-doc-2.4.25-8.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/x86_64/libnghttp2-1.21.1-1.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/x86_64/libnghttp2-1.21.1-1.x86_64.rpm -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/x86_64/repodata/143f547f02063d5221cc099f8fe693e9abf3456fdf3d4afe5f95b1cf81403d9d-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/x86_64/repodata/143f547f02063d5221cc099f8fe693e9abf3456fdf3d4afe5f95b1cf81403d9d-other.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/x86_64/repodata/38229572e59980be53dc8b9d3741e2b46877b3ce7a049f968066c1eca0757dff-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/x86_64/repodata/38229572e59980be53dc8b9d3741e2b46877b3ce7a049f968066c1eca0757dff-primary.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/x86_64/repodata/62ed5cb5877c1995260ea3deeaf517c1335d41a26fa56bbf791e0b8848debf57-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/x86_64/repodata/62ed5cb5877c1995260ea3deeaf517c1335d41a26fa56bbf791e0b8848debf57-modules.yaml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/x86_64/repodata/6774c709909c85579b646dad8422b8a62fc4a4d3630d2c76944abb2f045e0b4c-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/x86_64/repodata/6774c709909c85579b646dad8422b8a62fc4a4d3630d2c76944abb2f045e0b4c-primary.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/x86_64/repodata/8bab2a03f45ea12b1612b5fecdc6137cf69412d5810cebe1620d90eb2e562f8f-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/x86_64/repodata/8bab2a03f45ea12b1612b5fecdc6137cf69412d5810cebe1620d90eb2e562f8f-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/x86_64/repodata/c3d8bd9d381397223a8b957d3813fbdeb3c700b6937a347dfbc90dbb0492640f-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/x86_64/repodata/c3d8bd9d381397223a8b957d3813fbdeb3c700b6937a347dfbc90dbb0492640f-filelists.xml.gz -------------------------------------------------------------------------------- /data/tests/modules/modules/httpd-2.4-2/x86_64/repodata/cb63c3e8e5fc7fc855701a2b1d78c54ca76932fc3ace708a2212d527ce2aba90-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/data/tests/modules/modules/httpd-2.4-2/x86_64/repodata/cb63c3e8e5fc7fc855701a2b1d78c54ca76932fc3ace708a2212d527ce2aba90-other.sqlite.bz2 -------------------------------------------------------------------------------- /data/tests/modules/specs/base-runtime-f26-1/profiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "minimal": { 3 | "rpms": ["glibc"] 4 | }, 5 | "default": { 6 | "rpms": ["glibc", "bash", "systemd", "kernel"] 7 | } 8 | } -------------------------------------------------------------------------------- /data/tests/modules/specs/base-runtime-f26-2/basesystem.spec: -------------------------------------------------------------------------------- 1 | ../base-runtime-f26-1/basesystem.spec -------------------------------------------------------------------------------- /data/tests/modules/specs/base-runtime-f26-2/bash.spec: -------------------------------------------------------------------------------- 1 | ../base-runtime-f26-1/bash.spec -------------------------------------------------------------------------------- /data/tests/modules/specs/base-runtime-f26-2/filesystem.spec: -------------------------------------------------------------------------------- 1 | ../base-runtime-f26-1/filesystem.spec -------------------------------------------------------------------------------- /data/tests/modules/specs/base-runtime-f26-2/kernel.spec: -------------------------------------------------------------------------------- 1 | ../base-runtime-f26-1/kernel.spec -------------------------------------------------------------------------------- /data/tests/modules/specs/base-runtime-f26-2/profiles.json: -------------------------------------------------------------------------------- 1 | ../base-runtime-f26-1/profiles.json -------------------------------------------------------------------------------- /data/tests/modules/specs/base-runtime-f26-2/systemd.spec: -------------------------------------------------------------------------------- 1 | ../base-runtime-f26-1/systemd.spec -------------------------------------------------------------------------------- /data/tests/modules/specs/base-runtime-rhel73-1/profiles.json: -------------------------------------------------------------------------------- 1 | ../base-runtime-f26-1/profiles.json -------------------------------------------------------------------------------- /data/tests/modules/specs/httpd-2.2-1/profiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "default": { 3 | "rpms": ["httpd"] 4 | }, 5 | "doc": { 6 | "rpms": ["httpd-doc"] 7 | } 8 | } -------------------------------------------------------------------------------- /data/tests/modules/specs/httpd-2.4-1/profiles.json: -------------------------------------------------------------------------------- 1 | ../httpd-2.2-1/profiles.json -------------------------------------------------------------------------------- /data/tests/modules/specs/httpd-2.4-2/libnghttp2.spec: -------------------------------------------------------------------------------- 1 | ../httpd-2.4-1/libnghttp2.spec -------------------------------------------------------------------------------- /data/tests/modules/specs/httpd-2.4-2/profiles.json: -------------------------------------------------------------------------------- 1 | ../httpd-2.2-1/profiles.json -------------------------------------------------------------------------------- /data/tests/modules/yum.repos.d/test.repo.in: -------------------------------------------------------------------------------- 1 | [test] 2 | name=Test 3 | baseurl=file://@CMAKE_SOURCE_DIR@/data/tests/modules/modules/_all/x86_64/ 4 | enabled=1 5 | gpgcheck=0 6 | metadata_expire=0 7 | -------------------------------------------------------------------------------- /data/tests/vars/var1: -------------------------------------------------------------------------------- 1 | value123 2 | -------------------------------------------------------------------------------- /data/tests/vars/var2: -------------------------------------------------------------------------------- 1 | 456 2 | -------------------------------------------------------------------------------- /data/tests/yum.repos.d/local.repo: -------------------------------------------------------------------------------- 1 | [local] 2 | name=Local 3 | baseurl=file:///tmp/repo 4 | enabled=1 5 | gpgcheck=0 6 | metadata_expire=1d 7 | -------------------------------------------------------------------------------- /data/tests/yum.repos.d/redhat.repo: -------------------------------------------------------------------------------- 1 | [redhat] 2 | name=Red Hat 3 | baseurl=http://www.redhat.com/ 4 | enabled=0 5 | gpgcheck=0 6 | -------------------------------------------------------------------------------- /data/tests/yum.repos.d/shell-expansion.repo: -------------------------------------------------------------------------------- 1 | [shell-expansion] 2 | name=${unset:-${var1:+${var2:+$var2}}} 3 | baseurl=https://${unset:-${var1:+${var2:+$var2}}} 4 | enabled=1 5 | gpgcheck=0 6 | -------------------------------------------------------------------------------- /data/tests/yum.repos.d/whitespace.repo: -------------------------------------------------------------------------------- 1 | [whitespace] 2 | name=repo file with whitespace at the end 3 | baseurl=http://whitespace 4 | enabled=1 5 | gpgcheck=0 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /docs/history/readme.md: -------------------------------------------------------------------------------- 1 | # Unified DNF history database diagram 2 | - use [Umletino](http://www.umlet.com/umletino/umletino.html) or [Umlet](http://www.umlet.com/) to view, edit or export 3 | - in case of question please contact Eduard Čuba 4 | -------------------------------------------------------------------------------- /docs/libdnf/html/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/docs/libdnf/html/common.css -------------------------------------------------------------------------------- /docs/libdnf/version.xml.in: -------------------------------------------------------------------------------- 1 | @LIBDNF_VERSION@ 2 | -------------------------------------------------------------------------------- /etc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if(WITH_SANITIZERS) 2 | INSTALL (FILES "dnf-sanitizers.sh" DESTINATION /etc/profile.d/) 3 | endif() 4 | -------------------------------------------------------------------------------- /etc/dnf-sanitizers.sh: -------------------------------------------------------------------------------- 1 | function dnf { 2 | ASAN_OPTIONS=verify_asan_link_order=0 /usr/bin/dnf "$@" 3 | } 4 | 5 | export -f dnf 6 | -------------------------------------------------------------------------------- /libdnf/README.plugins: -------------------------------------------------------------------------------- 1 | 2 | This directory holds plugins for the libdnf library. 3 | Any files in this directory which have the ".so" extension will be 4 | processed as libdnf plugins. 5 | 6 | Files are processed in alphabetical order. 7 | -------------------------------------------------------------------------------- /libdnf/goal/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(GOAL_SOURCES 2 | ${GOAL_SOURCES} 3 | ${CMAKE_CURRENT_SOURCE_DIR}/Goal.cpp 4 | PARENT_SCOPE 5 | ) 6 | -------------------------------------------------------------------------------- /libdnf/libdnf.gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /libdnf/module/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(modulemd) 2 | 3 | set(MODULE_SOURCES 4 | ${MODULE_SOURCES} 5 | ${CMAKE_CURRENT_SOURCE_DIR}/ModulePackageContainer.cpp 6 | ${CMAKE_CURRENT_SOURCE_DIR}/ModulePackage.cpp 7 | PARENT_SCOPE 8 | ) 9 | -------------------------------------------------------------------------------- /libdnf/module/modulemd/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(MODULE_SOURCES 2 | ${MODULE_SOURCES} 3 | ${CMAKE_CURRENT_SOURCE_DIR}/ModuleMetadata.cpp 4 | ${CMAKE_CURRENT_SOURCE_DIR}/ModuleDependencies.cpp 5 | ${CMAKE_CURRENT_SOURCE_DIR}/ModuleProfile.cpp 6 | PARENT_SCOPE 7 | ) 8 | -------------------------------------------------------------------------------- /libdnf/plugin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(PLUGIN_SOURCES 2 | ${CMAKE_CURRENT_SOURCE_DIR}/plugin.cpp 3 | PARENT_SCOPE 4 | ) 5 | 6 | set(PLUGIN_PUBLIC_HEADERS 7 | ${CMAKE_CURRENT_SOURCE_DIR}/plugin.h 8 | ) 9 | 10 | install(FILES ${PLUGIN_PUBLIC_HEADERS} DESTINATION include/libdnf/plugin) 11 | -------------------------------------------------------------------------------- /libdnf/repo/solvable/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(REPO_SOURCES 2 | ${REPO_SOURCES} 3 | ${CMAKE_CURRENT_SOURCE_DIR}/Package.cpp 4 | ${CMAKE_CURRENT_SOURCE_DIR}/Dependency.cpp 5 | ${CMAKE_CURRENT_SOURCE_DIR}/DependencyContainer.cpp 6 | PARENT_SCOPE 7 | ) 8 | -------------------------------------------------------------------------------- /libdnf/transaction/!README: -------------------------------------------------------------------------------- 1 | WARNING: libdnf/transaction has no stable API 2 | 3 | The code is still under development. 4 | Consolidation with DNF hasn't fully finished. 5 | No stable API is guaranteed. 6 | 7 | The database schema is considered stable (no major changes expected). 8 | Avoid using database direcly, tell us your API requirements instead. 9 | -------------------------------------------------------------------------------- /libdnf/transaction/private/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(TRANSACTION_SRCS 2 | ${TRANSACTION_SRCS} 3 | ${CMAKE_CURRENT_SOURCE_DIR}/Repo.cpp 4 | ${CMAKE_CURRENT_SOURCE_DIR}/Transaction.cpp 5 | PARENT_SCOPE 6 | ) 7 | -------------------------------------------------------------------------------- /libdnf/transaction/sql/migrate_tables_1_2.sql: -------------------------------------------------------------------------------- 1 | R"**( 2 | BEGIN TRANSACTION; 3 | ALTER TABLE trans 4 | ADD comment TEXT DEFAULT ''; 5 | UPDATE config 6 | SET value = '1.2' 7 | WHERE key = 'version'; 8 | COMMIT; 9 | )**" 10 | -------------------------------------------------------------------------------- /libdnf/transaction/sql/migrate_tables_1_3.sql: -------------------------------------------------------------------------------- 1 | R"**( 2 | BEGIN TRANSACTION; 3 | ALTER TABLE trans 4 | ADD persistence INTEGER DEFAULT 0; 5 | UPDATE config 6 | SET value = '1.3' 7 | WHERE key = 'version'; 8 | COMMIT; 9 | )**" 10 | -------------------------------------------------------------------------------- /libdnf/utils/bgettext/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(UTILS_SOURCES 2 | ${UTILS_SOURCES} 3 | ${CMAKE_CURRENT_SOURCE_DIR}/bgettext.c 4 | PARENT_SCOPE 5 | ) 6 | -------------------------------------------------------------------------------- /libdnf/utils/iniparser/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(UTILS_SOURCES 2 | ${UTILS_SOURCES} 3 | ${CMAKE_CURRENT_SOURCE_DIR}/iniparser.cpp 4 | PARENT_SCOPE 5 | ) 6 | -------------------------------------------------------------------------------- /libdnf/utils/regex/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(UTILS_SOURCES 2 | ${UTILS_SOURCES} 3 | ${CMAKE_CURRENT_SOURCE_DIR}/regex.cpp 4 | PARENT_SCOPE 5 | ) 6 | -------------------------------------------------------------------------------- /libdnf/utils/smartcols/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(UTILS_SOURCES 2 | ${UTILS_SOURCES} 3 | ${CMAKE_CURRENT_SOURCE_DIR}/Column.cpp 4 | ${CMAKE_CURRENT_SOURCE_DIR}/Line.cpp 5 | ${CMAKE_CURRENT_SOURCE_DIR}/Table.cpp 6 | PARENT_SCOPE 7 | ) 8 | -------------------------------------------------------------------------------- /libdnf/utils/sqlite3/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(UTILS_SOURCES 2 | ${UTILS_SOURCES} 3 | ${CMAKE_CURRENT_SOURCE_DIR}/Sqlite3.cpp 4 | PARENT_SCOPE 5 | ) 6 | -------------------------------------------------------------------------------- /po/.gitignore: -------------------------------------------------------------------------------- 1 | *.mo 2 | -------------------------------------------------------------------------------- /python/hawkey/module-form-py.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/python/hawkey/module-form-py.cpp -------------------------------------------------------------------------------- /python/hawkey/module-form-py.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/python/hawkey/module-form-py.hpp -------------------------------------------------------------------------------- /python/hawkey/tests/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /python/hawkey/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(module) 2 | add_subdirectory(tests) 3 | -------------------------------------------------------------------------------- /python/hawkey/tests/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/libdnf/a99c3babbf0f4d095417a030da5bde4d6afa4fc1/python/hawkey/tests/tests/__init__.py -------------------------------------------------------------------------------- /tests/libdnf/conf/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(LIBDNF_TEST_SOURCES 2 | ${LIBDNF_TEST_SOURCES} 3 | ${CMAKE_CURRENT_SOURCE_DIR}/ConfigParserTest.cpp 4 | PARENT_SCOPE 5 | ) 6 | 7 | set(LIBDNF_TEST_HEADERS 8 | ${LIBDNF_TEST_HEADERS} 9 | ${CMAKE_CURRENT_SOURCE_DIR}/ConfigParserTest.hpp 10 | PARENT_SCOPE 11 | ) 12 | --------------------------------------------------------------------------------