From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1A75C2F659D; Tue, 12 Aug 2025 15:53:04 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755013985; cv=none; b=QSL5BDxBG3O10S0uQsy/D/6sz4YCF+RQ+8eIAMgjkAdUJlCFZ8Vk9JsB06fwLzg3DPrkNdNQTbdPvPQ7SiU920YM9YfiXcRFg0jj/cRCgkeVhFD0G7kIeZy1Ll6V/46XAI749slthUpZTASlQPyBfr5ZvLYwUkGIJFjFE6jaShw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755013985; c=relaxed/simple; bh=lubWYVOEybDAGm9ORXVmoDyKTrHZrfWsx56TwRP66U0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=HzRz9wc9NuqBQ9JSDjXjmwI+zYKF8eySsSc9RG7bToo8eFNIv8bDtt/eXEIuMDLR7NAPOfLIBjpjECXZQBGXY8Z4i1gHCNVdpieAmjtABstGlYlVaYgiUDv00q/QM+eYzw8BZxCGOTmpFYYOX053cI+vccFFnm5Y97C38qMTgXE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Vp+oupgx; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Vp+oupgx" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B01B7C4AF09; Tue, 12 Aug 2025 15:53:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1755013984; bh=lubWYVOEybDAGm9ORXVmoDyKTrHZrfWsx56TwRP66U0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Vp+oupgxm8UgYRAOwSaWBmmuBgju8QMbUrbGh96KGrFtA+Ix5HUKEjKbvJAtQ2Psz 36uRSQl5IyrFp/ypwcssSA0dmHRb5GkehDS+t3rp/7wijzIXxhvUtko8D1e3mARZ/h 5IpXvs7ZD3QbES0lWpIeKNyxsQ7xLVTpcPiOujVG3Mc0tG2iabXod/lgmKC12s/gIP 7Ez/CrD4yz7TM2UNqLx605vP52FJkCn/BqObmjohrwZZ1vF1PTaMskeiKknzVidlOt y7GcfI3e6ikr5wx79GYmh0XtxgjINEgMJrVlTez90xPx/Vt/rCL+Tkh6EVbaSYA5x8 V17dFnt64OQ1A== Received: from mchehab by mail.kernel.org with local (Exim 4.98.2) (envelope-from ) id 1ulrJ8-00000006kWM-2Se0; Tue, 12 Aug 2025 17:53:02 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , "Jonathan Corbet" , "Mauro Carvalho Chehab" , linux-kernel@vger.kernel.org Subject: [PATCH v2 18/39] scripts: sphinx-pre-install: remove Scientific Linux Date: Tue, 12 Aug 2025 17:52:35 +0200 Message-ID: X-Mailer: git-send-email 2.50.1 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Mauro Carvalho Chehab According with its website: https://scientificlinux.org/ Scientific Linux reached end of life in June 30, 2024. Also, it was based on RHEL 7, which is not compatible with our build system anymore. So, drop support for it. Signed-off-by: Mauro Carvalho Chehab --- scripts/sphinx-pre-install.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/sphinx-pre-install.py b/scripts/sphinx-pre-install.py index 1f64909953b9..cd9c83b17971 100755 --- a/scripts/sphinx-pre-install.py +++ b/scripts/sphinx-pre-install.py @@ -769,7 +769,6 @@ class SphinxDependencyChecker: re.compile("openEuler"): self.give_redhat_hints, re.compile("Oracle Linux Server"): self.give_redhat_hints, re.compile("Rocky Linux"): self.give_redhat_hints, - re.compile("Scientific Linux"): self.give_redhat_hints, re.compile("Springdale Open Enterprise"): self.give_redhat_hints, re.compile("Ubuntu"): self.give_debian_hints, -- 2.50.1