summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Pagano <mpagano@gentoo.org>2024-09-23 13:42:37 -0400
committerMike Pagano <mpagano@gentoo.org>2024-09-23 13:42:37 -0400
commit4677ce7f0f46697ee3d8bf7269c4abc40b8b05eb (patch)
treeec0d9ee1c42de096238c64f5f52449a196e4ce57 /sys-kernel
parentsys-kernel/linux-docs: add 6.10.11 (diff)
downloadgentoo-4677ce7f0f46697ee3d8bf7269c4abc40b8b05eb.tar.gz
gentoo-4677ce7f0f46697ee3d8bf7269c4abc40b8b05eb.tar.bz2
gentoo-4677ce7f0f46697ee3d8bf7269c4abc40b8b05eb.zip
sys-kernel/linux-docs: drop 6.9.2
Signed-off-by: Mike Pagano <mpagano@gentoo.org>
Diffstat (limited to 'sys-kernel')
-rw-r--r--sys-kernel/linux-docs/Manifest1
-rw-r--r--sys-kernel/linux-docs/linux-docs-6.9.2.ebuild45
2 files changed, 0 insertions, 46 deletions
diff --git a/sys-kernel/linux-docs/Manifest b/sys-kernel/linux-docs/Manifest
index 73163fb40a07..510f9203de3f 100644
--- a/sys-kernel/linux-docs/Manifest
+++ b/sys-kernel/linux-docs/Manifest
@@ -1,2 +1 @@
DIST linux-6.10.11.tar.xz 145185812 BLAKE2B 55380d2af9fc535f6359cdb9b36612d1f81f2f140652f44bf927c320dda382109c9fb9591cc741914d3221e8d8bda954a10dbbeff8c163bf1ed57eff1831c8df SHA512 bb118bf74c0fd613e55e84f849849124f1d6093cb57c178258e2210e400e9fe492c16578bba583b1434b65175ebe1f20dfb722c271bf71b1157d38f3c0b2bca3
-DIST linux-6.9.2.tar.xz 144109112 BLAKE2B ae19877e19239c2b521cdf04d182c0ee849228c9ecb4c9dddb626d85ed51faaa5215cc70b5c1ad203c346df85197cd5512894a27eba1c1fd6add9cd2fbaa2a3e SHA512 a168f5b3e7ee7451d5bb1c7f6c090d6002330a4529ef74b2e47f6902ba3d6feaa8dc89f7b5a072d52f6933fd08354a0ff1e12f22240ce53c758c144d4ad132cd
diff --git a/sys-kernel/linux-docs/linux-docs-6.9.2.ebuild b/sys-kernel/linux-docs/linux-docs-6.9.2.ebuild
deleted file mode 100644
index 649be8df5e95..000000000000
--- a/sys-kernel/linux-docs/linux-docs-6.9.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{10,11,12} )
-inherit linux-info python-any-r1 toolchain-funcs
-
-MY_P=linux-${PV}
-
-DESCRIPTION="Developer documentation generated from the Linux kernel"
-HOMEPAGE="https://www.kernel.org/"
-SRC_URI="https://www.kernel.org/pub/linux/kernel/v6.x/${MY_P}.tar.xz"
-
-S=${WORKDIR}/${MY_P}
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~ppc ~ppc64 ~s390 ~sparc ~x86"
-IUSE="graphviz"
-
-RDEPEND="graphviz? ( >=media-gfx/graphviz-5.0.0 )"
-
-BDEPEND="${PYTHON_DEPS}
- >=dev-python/sphinx-7.2.3
- dev-python/sphinx-rtd-theme
- media-libs/fontconfig
- $(python_gen_any_dep '
- >=dev-python/pyyaml-6.0[${PYTHON_USEDEP}]
- ')"
-
-src_prepare() {
- default
- # Fix the Python shebangs.
- python_fix_shebang "${S}/Documentation/sphinx/"
-}
-
-src_compile() {
- local ARCH="$(tc-arch-kernel)"
- unset KBUILD_OUTPUT
- HTML_DOCS=( Documentation/output/. )
- emake htmldocs
-}
-
-src_install() {
- einstalldocs
-}