From b70914d269e1ee688a82606e92af6582bf67a56b Mon Sep 17 00:00:00 2001 From: Googler Date: Wed, 23 Aug 2023 15:13:37 -0700 Subject: [PATCH] Deleting https://bazel.build/install/redhat as discussed, since it's no longer maintained PiperOrigin-RevId: 559556865 Change-Id: I68ef6de82452b31bebe7dc91d6181d54d1d58e23 --- site/en/install/index.md | 1 - site/en/install/redhat.md | 51 --------------------------------------- 2 files changed, 52 deletions(-) delete mode 100644 site/en/install/redhat.md diff --git a/site/en/install/index.md b/site/en/install/index.md index 63c2f0f202fdf9..57deb479d33924 100644 --- a/site/en/install/index.md +++ b/site/en/install/index.md @@ -17,7 +17,6 @@ Bazel community members maintain these packages. The Bazel team doesn't officially support them. Contact the package maintainers for support. * [Arch Linux][arch]{: .external} -* [Fedora 25, 26, 27, 28, and CentOS 7](/install/redhat) * [CentOS 6](https://github.com/sub-mod/bazel-builds){: .external} * [Debian](https://qa.debian.org/developer.php?email=team%2Bbazel%40tracker.debian.org){: .external} * [FreeBSD](https://www.freshports.org/devel/bazel){: .external} diff --git a/site/en/install/redhat.md b/site/en/install/redhat.md deleted file mode 100644 index 7b768a43ec6902..00000000000000 --- a/site/en/install/redhat.md +++ /dev/null @@ -1,51 +0,0 @@ -Project: /_project.yaml -Book: /_book.yaml - -# Installing Bazel on Fedora and CentOS - -{% include "_buttons.html" %} - -This page describes how to install Bazel on Fedora and CentOS. - -The Bazel team does not provide official packages for Fedora and CentOS. -Vincent Batts ([@vbatts](https://github.com/vbatts){: .external}) generously maintains -unofficial packages on -[Fedora COPR](https://copr.fedorainfracloud.org/coprs/vbatts/bazel/){: .external}. - -The commands below must be run either via `sudo` or while logged in as `root`. - -Add `--allowerasing` when installing an upgrade from a previous major -version of the Bazel package. - -[The Bazelisk installer](/install/bazelisk) is an alternative to package installation. - -## Installing on Fedora 25+ {:#installing-fedora} - -1. The [DNF](https://fedoraproject.org/wiki/DNF){: .external} package manager can - install Bazel from the [COPR](https://copr.fedorainfracloud.org/){: .external} repository. - Install the `copr` plugin for DNF if you have not already done so. - - ```posix-terminal - dnf install dnf-plugins-core - ``` - -2. Run the following commands to add the Bazel repository and install the - package: - - ```posix-terminal - dnf copr enable vbatts/bazel - - dnf install bazel4 - ``` - -## Installing on CentOS 7 {:#installing-centos} - -1. Download the corresponding `.repo` file from - [Fedora COPR](https://copr.fedorainfracloud.org/coprs/vbatts/bazel/repo/epel-7/vbatts-bazel-epel-7.repo){: .external} - and copy it to `/etc/yum.repos.d/`. - -2. Run the following command: - - ```posix-terminal - yum install bazel4 - ```