summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Pagano <mpagano@gentoo.org>2022-07-08 13:24:40 -0400
committerMike Pagano <mpagano@gentoo.org>2022-07-08 13:24:40 -0400
commitd45c6130af15dc1eaf82df057b4d195bcb6d2cb6 (patch)
treed4e938788f8b6390eaca3fe455f42d9dc60740ce /sys-kernel
parentsys-kernel/linux-docs: add 5.15.53 (diff)
downloadgentoo-d45c6130af15dc1eaf82df057b4d195bcb6d2cb6.tar.gz
gentoo-d45c6130af15dc1eaf82df057b4d195bcb6d2cb6.tar.bz2
gentoo-d45c6130af15dc1eaf82df057b4d195bcb6d2cb6.zip
sys-kernel/linux-docs: drop 5.15.33
Signed-off-by: Mike Pagano <mpagano@gentoo.org>
Diffstat (limited to 'sys-kernel')
-rw-r--r--sys-kernel/linux-docs/linux-docs-5.15.33.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/sys-kernel/linux-docs/linux-docs-5.15.33.ebuild b/sys-kernel/linux-docs/linux-docs-5.15.33.ebuild
deleted file mode 100644
index 3693ce4a8c2c..000000000000
--- a/sys-kernel/linux-docs/linux-docs-5.15.33.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{9,10} )
-inherit linux-info python-any-r1 toolchain-funcs
-
-MY_PV="$(ver_cut 1-2)"
-MY_P=linux-${MY_PV}
-
-S=${WORKDIR}/${MY_P}
-
-DESCRIPTION="Developer documentation generated from the Linux kernel"
-HOMEPAGE="https://www.kernel.org/"
-SRC_URI="https://www.kernel.org/pub/linux/kernel/v5.x/${MY_P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sparc ~x86"
-
-IUSE="graphviz"
-
-DEPEND=""
-RDEPEND="graphviz? ( media-gfx/graphviz )"
-BDEPEND="${PYTHON_DEPS}
- dev-python/sphinx
- dev-python/sphinx_rtd_theme
- media-libs/fontconfig"
-
-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
-}