├── .copr └── Makefile ├── .github └── workflows │ └── makefile.yml ├── .gitignore ├── .hack └── latest-version.sh ├── 13534.patch ├── Dockerfile ├── Makefile ├── README.md ├── bazel-1.0.0-log-warning.patch └── bazel.spec /.copr/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /.github/workflows/makefile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbatts/copr-build-bazel/HEAD/.github/workflows/makefile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bazel*.tar.gz 2 | *.zip 3 | *.rpm 4 | -------------------------------------------------------------------------------- /.hack/latest-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbatts/copr-build-bazel/HEAD/.hack/latest-version.sh -------------------------------------------------------------------------------- /13534.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbatts/copr-build-bazel/HEAD/13534.patch -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbatts/copr-build-bazel/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbatts/copr-build-bazel/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbatts/copr-build-bazel/HEAD/README.md -------------------------------------------------------------------------------- /bazel-1.0.0-log-warning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbatts/copr-build-bazel/HEAD/bazel-1.0.0-log-warning.patch -------------------------------------------------------------------------------- /bazel.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbatts/copr-build-bazel/HEAD/bazel.spec --------------------------------------------------------------------------------