├── .github ├── dependabot.yml └── workflows │ └── trigger-build.yml ├── .gitignore ├── AGENTS.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── Erlang_ASL2_LICENSE.txt ├── GEMINI.md ├── LICENSE ├── Makefile ├── README.md ├── docker ├── .gitignore ├── Dockerfile.template ├── README.md ├── build-docker-image.sh ├── build-image-and-rpm.sh ├── build-packages.sh ├── build-rpm-in-docker └── build-rpm-in-docker.sh ├── erlang.spec ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Do-not-install-C-sources.patch ├── otp-0003-Do-not-install-erlang-sources.patch └── versions ├── 18.1 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Remove-rpath.patch ├── otp-0003-Do-not-install-C-sources.patch └── otp-0007-Do-not-install-erlang-sources.patch ├── 18.2 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Remove-rpath.patch ├── otp-0003-Do-not-install-C-sources.patch └── otp-0007-Do-not-install-erlang-sources.patch ├── 18.3.4 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Remove-rpath.patch ├── otp-0003-Do-not-install-C-sources.patch └── otp-0007-Do-not-install-erlang-sources.patch ├── 18.3 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Remove-rpath.patch ├── otp-0003-Do-not-install-C-sources.patch └── otp-0007-Do-not-install-erlang-sources.patch ├── 19.0 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Remove-rpath.patch ├── otp-0003-Do-not-install-C-sources.patch └── otp-0007-Do-not-install-erlang-sources.patch ├── 19.3.6.5 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Remove-rpath.patch ├── otp-0003-Do-not-install-C-sources.patch └── otp-0007-Do-not-install-erlang-sources.patch ├── 20.1.7 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Remove-rpath.patch ├── otp-0003-Do-not-install-C-sources.patch └── otp-0007-Do-not-install-erlang-sources.patch ├── 20.2.2 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Remove-rpath.patch ├── otp-0003-Do-not-install-C-sources.patch └── otp-0007-Do-not-install-erlang-sources.patch ├── 20.3.8.4 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Remove-rpath.patch ├── otp-0003-Do-not-install-C-sources.patch └── otp-0007-Do-not-install-erlang-sources.patch ├── 21.1 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Remove-rpath.patch ├── otp-0003-Do-not-install-C-sources.patch └── otp-0007-Do-not-install-erlang-sources.patch ├── 21.3.6 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Remove-rpath.patch ├── otp-0003-Do-not-install-C-sources.patch └── otp-0007-Do-not-install-erlang-sources.patch ├── 22.3 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Remove-rpath.patch ├── otp-0003-Do-not-install-C-sources.patch └── otp-0007-Do-not-install-erlang-sources.patch ├── 23.0 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Remove-rpath.patch ├── otp-0003-Do-not-install-C-sources.patch └── otp-0007-Do-not-install-erlang-sources.patch ├── 24.0 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Do-not-install-C-sources.patch └── otp-0003-Do-not-install-erlang-sources.patch ├── 25.3 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Do-not-install-C-sources.patch └── otp-0003-Do-not-install-erlang-sources.patch ├── 26.0 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Do-not-install-C-sources.patch └── otp-0003-Do-not-install-erlang-sources.patch ├── 27.2 ├── otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch ├── otp-0002-Do-not-install-C-sources.patch └── otp-0003-Do-not-install-erlang-sources.patch └── README.md /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/.github/workflows/trigger-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | AGENTS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Erlang_ASL2_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/Erlang_ASL2_LICENSE.txt -------------------------------------------------------------------------------- /GEMINI.md: -------------------------------------------------------------------------------- 1 | AGENTS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/README.md -------------------------------------------------------------------------------- /docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/docker/.gitignore -------------------------------------------------------------------------------- /docker/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/docker/Dockerfile.template -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/build-docker-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/docker/build-docker-image.sh -------------------------------------------------------------------------------- /docker/build-image-and-rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/docker/build-image-and-rpm.sh -------------------------------------------------------------------------------- /docker/build-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/docker/build-packages.sh -------------------------------------------------------------------------------- /docker/build-rpm-in-docker: -------------------------------------------------------------------------------- 1 | docker/build-rpm-in-docker.sh -------------------------------------------------------------------------------- /docker/build-rpm-in-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/docker/build-rpm-in-docker.sh -------------------------------------------------------------------------------- /erlang.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/erlang.spec -------------------------------------------------------------------------------- /otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /otp-0002-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/otp-0002-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /otp-0003-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/otp-0003-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/18.1/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.1/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/18.1/otp-0002-Remove-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.1/otp-0002-Remove-rpath.patch -------------------------------------------------------------------------------- /versions/18.1/otp-0003-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.1/otp-0003-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/18.1/otp-0007-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.1/otp-0007-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/18.2/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.2/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/18.2/otp-0002-Remove-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.2/otp-0002-Remove-rpath.patch -------------------------------------------------------------------------------- /versions/18.2/otp-0003-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.2/otp-0003-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/18.2/otp-0007-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.2/otp-0007-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/18.3.4/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.3.4/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/18.3.4/otp-0002-Remove-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.3.4/otp-0002-Remove-rpath.patch -------------------------------------------------------------------------------- /versions/18.3.4/otp-0003-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.3.4/otp-0003-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/18.3.4/otp-0007-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.3.4/otp-0007-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/18.3/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.3/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/18.3/otp-0002-Remove-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.3/otp-0002-Remove-rpath.patch -------------------------------------------------------------------------------- /versions/18.3/otp-0003-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.3/otp-0003-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/18.3/otp-0007-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/18.3/otp-0007-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/19.0/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/19.0/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/19.0/otp-0002-Remove-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/19.0/otp-0002-Remove-rpath.patch -------------------------------------------------------------------------------- /versions/19.0/otp-0003-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/19.0/otp-0003-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/19.0/otp-0007-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/19.0/otp-0007-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/19.3.6.5/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/19.3.6.5/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/19.3.6.5/otp-0002-Remove-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/19.3.6.5/otp-0002-Remove-rpath.patch -------------------------------------------------------------------------------- /versions/19.3.6.5/otp-0003-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/19.3.6.5/otp-0003-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/19.3.6.5/otp-0007-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/19.3.6.5/otp-0007-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/20.1.7/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/20.1.7/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/20.1.7/otp-0002-Remove-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/20.1.7/otp-0002-Remove-rpath.patch -------------------------------------------------------------------------------- /versions/20.1.7/otp-0003-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/20.1.7/otp-0003-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/20.1.7/otp-0007-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/20.1.7/otp-0007-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/20.2.2/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/20.2.2/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/20.2.2/otp-0002-Remove-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/20.2.2/otp-0002-Remove-rpath.patch -------------------------------------------------------------------------------- /versions/20.2.2/otp-0003-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/20.2.2/otp-0003-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/20.2.2/otp-0007-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/20.2.2/otp-0007-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/20.3.8.4/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/20.3.8.4/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/20.3.8.4/otp-0002-Remove-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/20.3.8.4/otp-0002-Remove-rpath.patch -------------------------------------------------------------------------------- /versions/20.3.8.4/otp-0003-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/20.3.8.4/otp-0003-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/20.3.8.4/otp-0007-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/20.3.8.4/otp-0007-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/21.1/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/21.1/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/21.1/otp-0002-Remove-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/21.1/otp-0002-Remove-rpath.patch -------------------------------------------------------------------------------- /versions/21.1/otp-0003-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/21.1/otp-0003-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/21.1/otp-0007-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/21.1/otp-0007-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/21.3.6/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/21.3.6/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/21.3.6/otp-0002-Remove-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/21.3.6/otp-0002-Remove-rpath.patch -------------------------------------------------------------------------------- /versions/21.3.6/otp-0003-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/21.3.6/otp-0003-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/21.3.6/otp-0007-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/21.3.6/otp-0007-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/22.3/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/22.3/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/22.3/otp-0002-Remove-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/22.3/otp-0002-Remove-rpath.patch -------------------------------------------------------------------------------- /versions/22.3/otp-0003-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/22.3/otp-0003-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/22.3/otp-0007-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/22.3/otp-0007-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/23.0/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/23.0/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/23.0/otp-0002-Remove-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/23.0/otp-0002-Remove-rpath.patch -------------------------------------------------------------------------------- /versions/23.0/otp-0003-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/23.0/otp-0003-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/23.0/otp-0007-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/23.0/otp-0007-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/24.0/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/24.0/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/24.0/otp-0002-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/24.0/otp-0002-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/24.0/otp-0003-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/24.0/otp-0003-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/25.3/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/25.3/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/25.3/otp-0002-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/25.3/otp-0002-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/25.3/otp-0003-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/25.3/otp-0003-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/26.0/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/26.0/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/26.0/otp-0002-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/26.0/otp-0002-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/26.0/otp-0003-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/26.0/otp-0003-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/27.2/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/27.2/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch -------------------------------------------------------------------------------- /versions/27.2/otp-0002-Do-not-install-C-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/27.2/otp-0002-Do-not-install-C-sources.patch -------------------------------------------------------------------------------- /versions/27.2/otp-0003-Do-not-install-erlang-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/27.2/otp-0003-Do-not-install-erlang-sources.patch -------------------------------------------------------------------------------- /versions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmq/erlang-rpm/HEAD/versions/README.md --------------------------------------------------------------------------------