├── .github └── workflows │ ├── pr.yml │ ├── rpm.yml │ └── test.yml ├── .gitignore ├── .tito ├── packages │ ├── .readme │ └── modulemd-tools ├── releasers.conf └── tito.props ├── Dockerfile ├── LICENSE ├── README-DETAILED.md ├── README.md ├── man ├── .gitignore └── generate-manpages.sh ├── modulemd-tools.spec ├── modulemd_tools ├── __init__.py ├── bld2repo │ ├── __init__.py │ ├── cli.py │ ├── config.py │ └── utils.py ├── createrepo_mod │ ├── __init__.py │ └── createrepo_mod.py ├── dir2module │ ├── __init__.py │ └── dir2module.py ├── modulemd_add_platform │ ├── __init__.py │ ├── modulemd-add-platform.1 │ └── modulemd_add_platform.py ├── modulemd_generate_macros │ ├── __init__.py │ └── modulemd_generate_macros.py ├── modulemd_merge │ ├── __init__.py │ └── modulemd_merge.py ├── modulemd_tools │ ├── __init__.py │ └── yaml.py └── repo2module │ ├── __init__.py │ └── cli.py ├── requirements.txt ├── setup.py ├── test-requirements.txt ├── tests ├── test_bld2repo │ ├── __init__.py │ ├── conftest.py │ ├── test_bld2repo.py │ └── test_data │ │ ├── librevenge_build.json │ │ ├── librevenge_build_tag.json │ │ ├── librevenge_mbs_build.json │ │ ├── librevenge_tags.json │ │ ├── pki_core_build.json │ │ ├── pki_core_build_tag.json │ │ └── pki_core_tags.json ├── test_createrepo_mod │ ├── conftest.py │ ├── module_yamls │ │ └── dummy.yaml │ ├── packages │ │ └── python-django-bash-completion-3.0.10-3.fc33.noarch.rpm │ └── test_createrepo_mod.py ├── test_dir2module │ ├── conftest.py │ ├── packages │ │ ├── python-django-bash-completion-1.6.11.8-1.module_f33+9570+f65235c8.noarch.rpm │ │ └── python-django-bash-completion-3.0.10-3.fc33.noarch.rpm │ └── test_dir2module.py ├── test_modulemd_add_platform │ ├── test.yaml │ ├── test_quoting_style.py │ ├── test_skipping.py │ └── test_use.py ├── test_modulemd_merge │ ├── conftest.py │ ├── test_modulemd_merge.py │ └── testdata │ │ ├── moduleA.yaml │ │ ├── moduleB.yaml │ │ └── repodata │ │ ├── 046cd14a40bc50f29cc6a6b10511217c320c556e8e1edb2b97a86e5c48da4fd9-other.xml.gz │ │ ├── 0ad18f49cbdd388d5875fc299d4aa4948c4398028822172f548a2463915b6c2a-filelists.sqlite.bz2 │ │ ├── 332c9de8d6c38c97cef33aab918fea39a47064d2176a896d1e592cc9925ac75f-other.sqlite.bz2 │ │ ├── 72869e3a8fe7e84827355fe66f687593847678d7b7da309270c9b39c3e6e36c2-primary.sqlite.bz2 │ │ ├── 7d85489679da51f4c0696b90e462b5b7b2f4becb88a193887a85542e9bb6f4f0-primary.xml.gz │ │ ├── 8bba969318ecbb9b140c202f68c0f7f129afa0456faa4e4998b4de7949dc879b-filelists.xml.gz │ │ ├── 96daa7ce2279c3d3f80d5955df7cedfc4560bf8ce92689eb33ed2ef1e38780b8-modules.yaml.gz │ │ └── repomd.xml ├── test_modulemd_tools │ ├── __init__.py │ └── test_yaml.py └── test_repo2module │ ├── conftest.py │ ├── rpmrepo │ ├── python-django-bash-completion-3.0.10-3.fc33.noarch.rpm │ └── repodata │ │ ├── 046cd14a40bc50f29cc6a6b10511217c320c556e8e1edb2b97a86e5c48da4fd9-other.xml.gz │ │ ├── 0ad18f49cbdd388d5875fc299d4aa4948c4398028822172f548a2463915b6c2a-filelists.sqlite.bz2 │ │ ├── 332c9de8d6c38c97cef33aab918fea39a47064d2176a896d1e592cc9925ac75f-other.sqlite.bz2 │ │ ├── 72869e3a8fe7e84827355fe66f687593847678d7b7da309270c9b39c3e6e36c2-primary.sqlite.bz2 │ │ ├── 7d85489679da51f4c0696b90e462b5b7b2f4becb88a193887a85542e9bb6f4f0-primary.xml.gz │ │ ├── 8bba969318ecbb9b140c202f68c0f7f129afa0456faa4e4998b4de7949dc879b-filelists.xml.gz │ │ └── repomd.xml │ └── test_repo2module.py └── tox.ini /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/rpm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/.github/workflows/rpm.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.tito/packages/.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/.tito/packages/.readme -------------------------------------------------------------------------------- /.tito/packages/modulemd-tools: -------------------------------------------------------------------------------- 1 | 0.16-1 ./ 2 | -------------------------------------------------------------------------------- /.tito/releasers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/.tito/releasers.conf -------------------------------------------------------------------------------- /.tito/tito.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/.tito/tito.props -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README-DETAILED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/README-DETAILED.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/README.md -------------------------------------------------------------------------------- /man/.gitignore: -------------------------------------------------------------------------------- 1 | *.1 2 | -------------------------------------------------------------------------------- /man/generate-manpages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/man/generate-manpages.sh -------------------------------------------------------------------------------- /modulemd-tools.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/modulemd-tools.spec -------------------------------------------------------------------------------- /modulemd_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/modulemd_tools/__init__.py -------------------------------------------------------------------------------- /modulemd_tools/bld2repo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/modulemd_tools/bld2repo/__init__.py -------------------------------------------------------------------------------- /modulemd_tools/bld2repo/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/modulemd_tools/bld2repo/cli.py -------------------------------------------------------------------------------- /modulemd_tools/bld2repo/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/modulemd_tools/bld2repo/config.py -------------------------------------------------------------------------------- /modulemd_tools/bld2repo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/modulemd_tools/bld2repo/utils.py -------------------------------------------------------------------------------- /modulemd_tools/createrepo_mod/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modulemd_tools/createrepo_mod/createrepo_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/modulemd_tools/createrepo_mod/createrepo_mod.py -------------------------------------------------------------------------------- /modulemd_tools/dir2module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modulemd_tools/dir2module/dir2module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/modulemd_tools/dir2module/dir2module.py -------------------------------------------------------------------------------- /modulemd_tools/modulemd_add_platform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modulemd_tools/modulemd_add_platform/modulemd-add-platform.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/modulemd_tools/modulemd_add_platform/modulemd-add-platform.1 -------------------------------------------------------------------------------- /modulemd_tools/modulemd_add_platform/modulemd_add_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/modulemd_tools/modulemd_add_platform/modulemd_add_platform.py -------------------------------------------------------------------------------- /modulemd_tools/modulemd_generate_macros/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modulemd_tools/modulemd_generate_macros/modulemd_generate_macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/modulemd_tools/modulemd_generate_macros/modulemd_generate_macros.py -------------------------------------------------------------------------------- /modulemd_tools/modulemd_merge/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modulemd_tools/modulemd_merge/modulemd_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/modulemd_tools/modulemd_merge/modulemd_merge.py -------------------------------------------------------------------------------- /modulemd_tools/modulemd_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modulemd_tools/modulemd_tools/yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/modulemd_tools/modulemd_tools/yaml.py -------------------------------------------------------------------------------- /modulemd_tools/repo2module/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /modulemd_tools/repo2module/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/modulemd_tools/repo2module/cli.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | koji 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML 2 | pytest 3 | -------------------------------------------------------------------------------- /tests/test_bld2repo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_bld2repo/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_bld2repo/conftest.py -------------------------------------------------------------------------------- /tests/test_bld2repo/test_bld2repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_bld2repo/test_bld2repo.py -------------------------------------------------------------------------------- /tests/test_bld2repo/test_data/librevenge_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_bld2repo/test_data/librevenge_build.json -------------------------------------------------------------------------------- /tests/test_bld2repo/test_data/librevenge_build_tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_bld2repo/test_data/librevenge_build_tag.json -------------------------------------------------------------------------------- /tests/test_bld2repo/test_data/librevenge_mbs_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_bld2repo/test_data/librevenge_mbs_build.json -------------------------------------------------------------------------------- /tests/test_bld2repo/test_data/librevenge_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_bld2repo/test_data/librevenge_tags.json -------------------------------------------------------------------------------- /tests/test_bld2repo/test_data/pki_core_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_bld2repo/test_data/pki_core_build.json -------------------------------------------------------------------------------- /tests/test_bld2repo/test_data/pki_core_build_tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_bld2repo/test_data/pki_core_build_tag.json -------------------------------------------------------------------------------- /tests/test_bld2repo/test_data/pki_core_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_bld2repo/test_data/pki_core_tags.json -------------------------------------------------------------------------------- /tests/test_createrepo_mod/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_createrepo_mod/conftest.py -------------------------------------------------------------------------------- /tests/test_createrepo_mod/module_yamls/dummy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_createrepo_mod/module_yamls/dummy.yaml -------------------------------------------------------------------------------- /tests/test_createrepo_mod/packages/python-django-bash-completion-3.0.10-3.fc33.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_createrepo_mod/packages/python-django-bash-completion-3.0.10-3.fc33.noarch.rpm -------------------------------------------------------------------------------- /tests/test_createrepo_mod/test_createrepo_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_createrepo_mod/test_createrepo_mod.py -------------------------------------------------------------------------------- /tests/test_dir2module/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_dir2module/conftest.py -------------------------------------------------------------------------------- /tests/test_dir2module/packages/python-django-bash-completion-1.6.11.8-1.module_f33+9570+f65235c8.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_dir2module/packages/python-django-bash-completion-1.6.11.8-1.module_f33+9570+f65235c8.noarch.rpm -------------------------------------------------------------------------------- /tests/test_dir2module/packages/python-django-bash-completion-3.0.10-3.fc33.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_dir2module/packages/python-django-bash-completion-3.0.10-3.fc33.noarch.rpm -------------------------------------------------------------------------------- /tests/test_dir2module/test_dir2module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_dir2module/test_dir2module.py -------------------------------------------------------------------------------- /tests/test_modulemd_add_platform/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_add_platform/test.yaml -------------------------------------------------------------------------------- /tests/test_modulemd_add_platform/test_quoting_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_add_platform/test_quoting_style.py -------------------------------------------------------------------------------- /tests/test_modulemd_add_platform/test_skipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_add_platform/test_skipping.py -------------------------------------------------------------------------------- /tests/test_modulemd_add_platform/test_use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_add_platform/test_use.py -------------------------------------------------------------------------------- /tests/test_modulemd_merge/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_merge/conftest.py -------------------------------------------------------------------------------- /tests/test_modulemd_merge/test_modulemd_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_merge/test_modulemd_merge.py -------------------------------------------------------------------------------- /tests/test_modulemd_merge/testdata/moduleA.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_merge/testdata/moduleA.yaml -------------------------------------------------------------------------------- /tests/test_modulemd_merge/testdata/moduleB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_merge/testdata/moduleB.yaml -------------------------------------------------------------------------------- /tests/test_modulemd_merge/testdata/repodata/046cd14a40bc50f29cc6a6b10511217c320c556e8e1edb2b97a86e5c48da4fd9-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_merge/testdata/repodata/046cd14a40bc50f29cc6a6b10511217c320c556e8e1edb2b97a86e5c48da4fd9-other.xml.gz -------------------------------------------------------------------------------- /tests/test_modulemd_merge/testdata/repodata/0ad18f49cbdd388d5875fc299d4aa4948c4398028822172f548a2463915b6c2a-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_merge/testdata/repodata/0ad18f49cbdd388d5875fc299d4aa4948c4398028822172f548a2463915b6c2a-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /tests/test_modulemd_merge/testdata/repodata/332c9de8d6c38c97cef33aab918fea39a47064d2176a896d1e592cc9925ac75f-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_merge/testdata/repodata/332c9de8d6c38c97cef33aab918fea39a47064d2176a896d1e592cc9925ac75f-other.sqlite.bz2 -------------------------------------------------------------------------------- /tests/test_modulemd_merge/testdata/repodata/72869e3a8fe7e84827355fe66f687593847678d7b7da309270c9b39c3e6e36c2-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_merge/testdata/repodata/72869e3a8fe7e84827355fe66f687593847678d7b7da309270c9b39c3e6e36c2-primary.sqlite.bz2 -------------------------------------------------------------------------------- /tests/test_modulemd_merge/testdata/repodata/7d85489679da51f4c0696b90e462b5b7b2f4becb88a193887a85542e9bb6f4f0-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_merge/testdata/repodata/7d85489679da51f4c0696b90e462b5b7b2f4becb88a193887a85542e9bb6f4f0-primary.xml.gz -------------------------------------------------------------------------------- /tests/test_modulemd_merge/testdata/repodata/8bba969318ecbb9b140c202f68c0f7f129afa0456faa4e4998b4de7949dc879b-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_merge/testdata/repodata/8bba969318ecbb9b140c202f68c0f7f129afa0456faa4e4998b4de7949dc879b-filelists.xml.gz -------------------------------------------------------------------------------- /tests/test_modulemd_merge/testdata/repodata/96daa7ce2279c3d3f80d5955df7cedfc4560bf8ce92689eb33ed2ef1e38780b8-modules.yaml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_merge/testdata/repodata/96daa7ce2279c3d3f80d5955df7cedfc4560bf8ce92689eb33ed2ef1e38780b8-modules.yaml.gz -------------------------------------------------------------------------------- /tests/test_modulemd_merge/testdata/repodata/repomd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_merge/testdata/repodata/repomd.xml -------------------------------------------------------------------------------- /tests/test_modulemd_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_modulemd_tools/test_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_modulemd_tools/test_yaml.py -------------------------------------------------------------------------------- /tests/test_repo2module/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_repo2module/conftest.py -------------------------------------------------------------------------------- /tests/test_repo2module/rpmrepo/python-django-bash-completion-3.0.10-3.fc33.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_repo2module/rpmrepo/python-django-bash-completion-3.0.10-3.fc33.noarch.rpm -------------------------------------------------------------------------------- /tests/test_repo2module/rpmrepo/repodata/046cd14a40bc50f29cc6a6b10511217c320c556e8e1edb2b97a86e5c48da4fd9-other.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_repo2module/rpmrepo/repodata/046cd14a40bc50f29cc6a6b10511217c320c556e8e1edb2b97a86e5c48da4fd9-other.xml.gz -------------------------------------------------------------------------------- /tests/test_repo2module/rpmrepo/repodata/0ad18f49cbdd388d5875fc299d4aa4948c4398028822172f548a2463915b6c2a-filelists.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_repo2module/rpmrepo/repodata/0ad18f49cbdd388d5875fc299d4aa4948c4398028822172f548a2463915b6c2a-filelists.sqlite.bz2 -------------------------------------------------------------------------------- /tests/test_repo2module/rpmrepo/repodata/332c9de8d6c38c97cef33aab918fea39a47064d2176a896d1e592cc9925ac75f-other.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_repo2module/rpmrepo/repodata/332c9de8d6c38c97cef33aab918fea39a47064d2176a896d1e592cc9925ac75f-other.sqlite.bz2 -------------------------------------------------------------------------------- /tests/test_repo2module/rpmrepo/repodata/72869e3a8fe7e84827355fe66f687593847678d7b7da309270c9b39c3e6e36c2-primary.sqlite.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_repo2module/rpmrepo/repodata/72869e3a8fe7e84827355fe66f687593847678d7b7da309270c9b39c3e6e36c2-primary.sqlite.bz2 -------------------------------------------------------------------------------- /tests/test_repo2module/rpmrepo/repodata/7d85489679da51f4c0696b90e462b5b7b2f4becb88a193887a85542e9bb6f4f0-primary.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_repo2module/rpmrepo/repodata/7d85489679da51f4c0696b90e462b5b7b2f4becb88a193887a85542e9bb6f4f0-primary.xml.gz -------------------------------------------------------------------------------- /tests/test_repo2module/rpmrepo/repodata/8bba969318ecbb9b140c202f68c0f7f129afa0456faa4e4998b4de7949dc879b-filelists.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_repo2module/rpmrepo/repodata/8bba969318ecbb9b140c202f68c0f7f129afa0456faa4e4998b4de7949dc879b-filelists.xml.gz -------------------------------------------------------------------------------- /tests/test_repo2module/rpmrepo/repodata/repomd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_repo2module/rpmrepo/repodata/repomd.xml -------------------------------------------------------------------------------- /tests/test_repo2module/test_repo2module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tests/test_repo2module/test_repo2module.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpm-software-management/modulemd-tools/HEAD/tox.ini --------------------------------------------------------------------------------