├── .editorconfig ├── .gitignore ├── .idea ├── .gitignore ├── copyright │ ├── Python.xml │ └── profiles_settings.xml ├── google-java-format.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── peridot-releng.iml ├── runConfigurations.xml └── vcs.xml ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── comps2peridot ├── README.md ├── comps2peridot.py └── group.py ├── pungicatalog ├── README.md ├── catalog.py ├── pungicatalog.py └── scm.py ├── requirements.txt └── scripts ├── common.py ├── create-batch-task-list.py ├── create-no-build-batch.py └── stdin-to-batch-req.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/copyright/Python.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/.idea/copyright/Python.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/google-java-format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/.idea/google-java-format.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/peridot-releng.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/.idea/peridot-releng.iml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Ctrl IQ, Inc. -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/README.md -------------------------------------------------------------------------------- /comps2peridot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/comps2peridot/README.md -------------------------------------------------------------------------------- /comps2peridot/comps2peridot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/comps2peridot/comps2peridot.py -------------------------------------------------------------------------------- /comps2peridot/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/comps2peridot/group.py -------------------------------------------------------------------------------- /pungicatalog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/pungicatalog/README.md -------------------------------------------------------------------------------- /pungicatalog/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/pungicatalog/catalog.py -------------------------------------------------------------------------------- /pungicatalog/pungicatalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/pungicatalog/pungicatalog.py -------------------------------------------------------------------------------- /pungicatalog/scm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/pungicatalog/scm.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | kobo==0.23.0 2 | GitPython==3.1.27 3 | requests==2.27.1 4 | -------------------------------------------------------------------------------- /scripts/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/scripts/common.py -------------------------------------------------------------------------------- /scripts/create-batch-task-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/scripts/create-batch-task-list.py -------------------------------------------------------------------------------- /scripts/create-no-build-batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/scripts/create-no-build-batch.py -------------------------------------------------------------------------------- /scripts/stdin-to-batch-req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/peridot-releng/HEAD/scripts/stdin-to-batch-req.py --------------------------------------------------------------------------------