├── .gitignore ├── Containerfile ├── Makefile ├── README.md ├── bin ├── lazy-import-fedora ├── rl.funcs ├── rlcfg.funcs ├── rockybuild ├── rockyget ├── rockymkcfg ├── rockypatch ├── rockypkg └── rockyprep ├── entrypoint.sh ├── modulefiles ├── 389-ds:1.4 ├── ant:1.10 ├── container-tools:1.0 ├── container-tools:2.0 ├── container-tools:rhel8 ├── freeradius:3.0 ├── gimp:2.8 ├── go-toolset:rhel8 ├── httpd:2.4 ├── idm:DL1 ├── idm:client ├── inkscape:0.92.3 ├── javapackages-runtime:201801 ├── javapackages-tools:201801 ├── javapackages-tools:201902 ├── jmc:rhel8 ├── libselinux-python:2.8 ├── llvm-toolset:rhel8 ├── mailman:2.1 ├── mariadb-devel:10.3 ├── mariadb:10.3 ├── maven:3.5 ├── maven:3.6 ├── mercurial:4.8 ├── mod_auth_openidc:2.3 ├── mysql:8.0 ├── nginx:1.14 ├── nginx:1.16 ├── nginx:1.18 ├── nodejs:10 ├── nodejs:12 ├── nodejs:14 ├── parfait:0.5 ├── perl-App-cpanminus:1.7044 ├── perl-DBD-MySQL:4.046 ├── perl-DBD-Pg:3.7 ├── perl-DBD-SQLite:1.58 ├── perl-DBI:1.641 ├── perl-FCGI:0.78 ├── perl-IO-Socket-SSL:2.066 ├── perl-YAML:1.24 ├── perl-libwww-perl:6.34 ├── perl:5.24 ├── perl:5.26 ├── perl:5.30 ├── php:7.2 ├── php:7.3 ├── php:7.4 ├── pki-core:10.6 ├── pki-deps:10.6 ├── postgresql:10 ├── postgresql:12 ├── postgresql:9.6 ├── python27:2.7 ├── python36:3.6 ├── python38-devel:3.8 ├── python38:3.8 ├── redis:5 ├── rhn-tools:1.0 ├── ruby:2.5 ├── ruby:2.6 ├── ruby:2.7 ├── rust-toolset:rhel8 ├── satallite-5-client:1.0 ├── scala:2.10 ├── squid:4 ├── subversion:1.10 ├── swig:3.0 ├── swig:4.0 ├── tycho:rhel8 ├── varnish:6 ├── virt-devel:rhel └── virt:rhel └── src ├── README.md ├── rockymockgen.go └── rockyrpmmodules.go /.gitignore: -------------------------------------------------------------------------------- 1 | .dnf 2 | .system 3 | .go-setup 4 | srpmproc/ 5 | -------------------------------------------------------------------------------- /Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/Containerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/README.md -------------------------------------------------------------------------------- /bin/lazy-import-fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/bin/lazy-import-fedora -------------------------------------------------------------------------------- /bin/rl.funcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/bin/rl.funcs -------------------------------------------------------------------------------- /bin/rlcfg.funcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/bin/rlcfg.funcs -------------------------------------------------------------------------------- /bin/rockybuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/bin/rockybuild -------------------------------------------------------------------------------- /bin/rockyget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/bin/rockyget -------------------------------------------------------------------------------- /bin/rockymkcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/bin/rockymkcfg -------------------------------------------------------------------------------- /bin/rockypatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/bin/rockypatch -------------------------------------------------------------------------------- /bin/rockypkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/bin/rockypkg -------------------------------------------------------------------------------- /bin/rockyprep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/bin/rockyprep -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /modulefiles/389-ds:1.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/389-ds:1.4 -------------------------------------------------------------------------------- /modulefiles/ant:1.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/ant:1.10 -------------------------------------------------------------------------------- /modulefiles/container-tools:1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/container-tools:1.0 -------------------------------------------------------------------------------- /modulefiles/container-tools:2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/container-tools:2.0 -------------------------------------------------------------------------------- /modulefiles/container-tools:rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/container-tools:rhel8 -------------------------------------------------------------------------------- /modulefiles/freeradius:3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/freeradius:3.0 -------------------------------------------------------------------------------- /modulefiles/gimp:2.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/gimp:2.8 -------------------------------------------------------------------------------- /modulefiles/go-toolset:rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/go-toolset:rhel8 -------------------------------------------------------------------------------- /modulefiles/httpd:2.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/httpd:2.4 -------------------------------------------------------------------------------- /modulefiles/idm:DL1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/idm:DL1 -------------------------------------------------------------------------------- /modulefiles/idm:client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/idm:client -------------------------------------------------------------------------------- /modulefiles/inkscape:0.92.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/inkscape:0.92.3 -------------------------------------------------------------------------------- /modulefiles/javapackages-runtime:201801: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/javapackages-runtime:201801 -------------------------------------------------------------------------------- /modulefiles/javapackages-tools:201801: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/javapackages-tools:201801 -------------------------------------------------------------------------------- /modulefiles/javapackages-tools:201902: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/javapackages-tools:201902 -------------------------------------------------------------------------------- /modulefiles/jmc:rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/jmc:rhel8 -------------------------------------------------------------------------------- /modulefiles/libselinux-python:2.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/libselinux-python:2.8 -------------------------------------------------------------------------------- /modulefiles/llvm-toolset:rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/llvm-toolset:rhel8 -------------------------------------------------------------------------------- /modulefiles/mailman:2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/mailman:2.1 -------------------------------------------------------------------------------- /modulefiles/mariadb-devel:10.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/mariadb-devel:10.3 -------------------------------------------------------------------------------- /modulefiles/mariadb:10.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/mariadb:10.3 -------------------------------------------------------------------------------- /modulefiles/maven:3.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/maven:3.5 -------------------------------------------------------------------------------- /modulefiles/maven:3.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/maven:3.6 -------------------------------------------------------------------------------- /modulefiles/mercurial:4.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/mercurial:4.8 -------------------------------------------------------------------------------- /modulefiles/mod_auth_openidc:2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/mod_auth_openidc:2.3 -------------------------------------------------------------------------------- /modulefiles/mysql:8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/mysql:8.0 -------------------------------------------------------------------------------- /modulefiles/nginx:1.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/nginx:1.14 -------------------------------------------------------------------------------- /modulefiles/nginx:1.16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/nginx:1.16 -------------------------------------------------------------------------------- /modulefiles/nginx:1.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/nginx:1.18 -------------------------------------------------------------------------------- /modulefiles/nodejs:10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/nodejs:10 -------------------------------------------------------------------------------- /modulefiles/nodejs:12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/nodejs:12 -------------------------------------------------------------------------------- /modulefiles/nodejs:14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/nodejs:14 -------------------------------------------------------------------------------- /modulefiles/parfait:0.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/parfait:0.5 -------------------------------------------------------------------------------- /modulefiles/perl-App-cpanminus:1.7044: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/perl-App-cpanminus:1.7044 -------------------------------------------------------------------------------- /modulefiles/perl-DBD-MySQL:4.046: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/perl-DBD-MySQL:4.046 -------------------------------------------------------------------------------- /modulefiles/perl-DBD-Pg:3.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/perl-DBD-Pg:3.7 -------------------------------------------------------------------------------- /modulefiles/perl-DBD-SQLite:1.58: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/perl-DBD-SQLite:1.58 -------------------------------------------------------------------------------- /modulefiles/perl-DBI:1.641: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/perl-DBI:1.641 -------------------------------------------------------------------------------- /modulefiles/perl-FCGI:0.78: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/perl-FCGI:0.78 -------------------------------------------------------------------------------- /modulefiles/perl-IO-Socket-SSL:2.066: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/perl-IO-Socket-SSL:2.066 -------------------------------------------------------------------------------- /modulefiles/perl-YAML:1.24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/perl-YAML:1.24 -------------------------------------------------------------------------------- /modulefiles/perl-libwww-perl:6.34: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/perl-libwww-perl:6.34 -------------------------------------------------------------------------------- /modulefiles/perl:5.24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/perl:5.24 -------------------------------------------------------------------------------- /modulefiles/perl:5.26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/perl:5.26 -------------------------------------------------------------------------------- /modulefiles/perl:5.30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/perl:5.30 -------------------------------------------------------------------------------- /modulefiles/php:7.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/php:7.2 -------------------------------------------------------------------------------- /modulefiles/php:7.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/php:7.3 -------------------------------------------------------------------------------- /modulefiles/php:7.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/php:7.4 -------------------------------------------------------------------------------- /modulefiles/pki-core:10.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/pki-core:10.6 -------------------------------------------------------------------------------- /modulefiles/pki-deps:10.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/pki-deps:10.6 -------------------------------------------------------------------------------- /modulefiles/postgresql:10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/postgresql:10 -------------------------------------------------------------------------------- /modulefiles/postgresql:12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/postgresql:12 -------------------------------------------------------------------------------- /modulefiles/postgresql:9.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/postgresql:9.6 -------------------------------------------------------------------------------- /modulefiles/python27:2.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/python27:2.7 -------------------------------------------------------------------------------- /modulefiles/python36:3.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/python36:3.6 -------------------------------------------------------------------------------- /modulefiles/python38-devel:3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/python38-devel:3.8 -------------------------------------------------------------------------------- /modulefiles/python38:3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/python38:3.8 -------------------------------------------------------------------------------- /modulefiles/redis:5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/redis:5 -------------------------------------------------------------------------------- /modulefiles/rhn-tools:1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/rhn-tools:1.0 -------------------------------------------------------------------------------- /modulefiles/ruby:2.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/ruby:2.5 -------------------------------------------------------------------------------- /modulefiles/ruby:2.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/ruby:2.6 -------------------------------------------------------------------------------- /modulefiles/ruby:2.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/ruby:2.7 -------------------------------------------------------------------------------- /modulefiles/rust-toolset:rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/rust-toolset:rhel8 -------------------------------------------------------------------------------- /modulefiles/satallite-5-client:1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/satallite-5-client:1.0 -------------------------------------------------------------------------------- /modulefiles/scala:2.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/scala:2.10 -------------------------------------------------------------------------------- /modulefiles/squid:4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/squid:4 -------------------------------------------------------------------------------- /modulefiles/subversion:1.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/subversion:1.10 -------------------------------------------------------------------------------- /modulefiles/swig:3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/swig:3.0 -------------------------------------------------------------------------------- /modulefiles/swig:4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/swig:4.0 -------------------------------------------------------------------------------- /modulefiles/tycho:rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/tycho:rhel8 -------------------------------------------------------------------------------- /modulefiles/varnish:6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/varnish:6 -------------------------------------------------------------------------------- /modulefiles/virt-devel:rhel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/virt-devel:rhel -------------------------------------------------------------------------------- /modulefiles/virt:rhel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/modulefiles/virt:rhel -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/src/README.md -------------------------------------------------------------------------------- /src/rockymockgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/src/rockymockgen.go -------------------------------------------------------------------------------- /src/rockyrpmmodules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/devtools/HEAD/src/rockyrpmmodules.go --------------------------------------------------------------------------------