Update sys-kernel/inf-kernel to version 0.0.7.7.

This commit is contained in:
inference 2023-01-12 19:13:03 +00:00
parent dcf0d68efb
commit 60b85915a3
Signed by: inference
SSH Key Fingerprint: SHA256:9Pl0nZ2UJacgm+IeEtLSZ4FOESgP1eKCtRflfPfdX9M
3 changed files with 1 additions and 49 deletions

View File

@ -0,0 +1 @@
DIST inf-kernel-0.0.7.7.tar.gz 220508104 BLAKE2B 63429852b6621ed3807e191b78d3e614028360c5285dede139acb57a607a236cf39733066e75bc53ebc902fbad55e0fff1b356fc92ebab90e68a3f57da934dfb SHA512 1c0230be8896a2a4113b28e0a41c7e08453cb5b90159d4ebd56e0251b941fc84b1498d8fa807c760022ef492ec1ff5369d92b9c61f0bce3a38be45a439e55a9d

View File

@ -1,49 +0,0 @@
# Copyright 1999-2022 Gentoo Authors, 2022-2023 Inference
# SPDX-License-Identifier: GPL-2.0-only
EAPI="8"
K_NOUSENAME="yes"
K_NOSETEXTRAVERSION="yes"
K_SECURITY_UNSUPPORTED="1"
ETYPE="sources"
inherit kernel-2
detect_version
DESCRIPTION="Inferencium Kernel source code."
HOMEPAGE="https://git.inferencium.net/Inferencium/inf-kernel/"
SRC_URI="https://git.inferencium.net/Inferencium/inf-kernel/archive/${P}.tar.gz"
S="${WORKDIR}/${PN}"
KEYWORDS="~amd64 ~arm64"
src_unpack() {
default
}
install_sources() {
local file
cd "${S}" || die
dodir /src/
einfo ">>> Copying source code ..."
file="$(find ${WORKDIR} -iname "docs" -type d)"
if [[ -n ${file} ]]; then
for file in $(find ${file} -type f); do
echo "${file//*docs\/}" >> "${S}"/patches.txt
echo "===================================================" >> "${S}"/patches.txt
cat ${file} >> "${S}"/patches.txt
echo "===================================================" >> "${S}"/patches.txt
echo "" >> "${S}"/patches.txt
done
fi
mv "${WORKDIR}"/inf-kernel* "${ED}"/src/${P} || die
if [[ -n ${UNIPATCH_DOCS} ]]; then
for i in ${UNIPATCH_DOCS}; do
dodoc "${T}"/${i}
done
fi
}