diff options
author | Sarah White <kuzetsa@poindexter.ovh> | 2018-11-14 14:29:09 -0500 |
---|---|---|
committer | Göktürk Yüksek <gokturk@gentoo.org> | 2018-11-14 14:45:02 -0500 |
commit | a9240e9aa05b5f5973c8dd22515efd6905d75b1a (patch) | |
tree | d919443920f3c41616f623012e32e04ae726e3f0 /sys-kernel/ck-sources/ck-sources-4.14.81.ebuild | |
parent | sys-kernel/ck-sources: version 4.9.137 (diff) | |
download | gentoo-a9240e9aa05b5f5973c8dd22515efd6905d75b1a.tar.gz gentoo-a9240e9aa05b5f5973c8dd22515efd6905d75b1a.tar.bz2 gentoo-a9240e9aa05b5f5973c8dd22515efd6905d75b1a.zip |
sys-kernel/ck-sources: version 4.14.81
updated to genpatches-4.14-88
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Sarah White <kuzetsa@poindexter.ovh>
Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
Diffstat (limited to 'sys-kernel/ck-sources/ck-sources-4.14.81.ebuild')
-rw-r--r-- | sys-kernel/ck-sources/ck-sources-4.14.81.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/sys-kernel/ck-sources/ck-sources-4.14.81.ebuild b/sys-kernel/ck-sources/ck-sources-4.14.81.ebuild new file mode 100644 index 000000000000..4f941a9fef31 --- /dev/null +++ b/sys-kernel/ck-sources/ck-sources-4.14.81.ebuild @@ -0,0 +1,57 @@ +# Copyright 2018 kuzetsa℠ and others +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +ETYPE="sources" +KEYWORDS="~amd64 ~x86" + +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches/ + http://kernel.kolivas.org/" + +IUSE="experimental" + +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="88" +K_SECURITY_UNSUPPORTED="1" +K_DEBLOB_AVAILABLE="1" + +PYTHON_COMPAT=( python2_7 ) +inherit python-any-r1 kernel-2 +detect_version +detect_arch + +DEPEND="deblob? ( ${PYTHON_DEPS} )" + +K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}" + +DESCRIPTION="Gentoo's genpatches for Linux ${K_BRANCH_ID}, with Con Kolivas' MuQSS process scheduler." + +MUQSS_VERSION="162" +MUQSS_FILE="${K_BRANCH_ID}-sched-MuQSS_${MUQSS_VERSION}.patch" +MUQSS_BASE_URL="http://ck.kolivas.org/patches/muqss/4.0" + +# clearly identify package name in distdir +MUQSS_DISTNAME="${PN}-${K_BRANCH_ID}-muqss.patch" + +CK_LVER_URL="${MUQSS_BASE_URL}/${K_BRANCH_ID}" +CK_URI="${CK_LVER_URL}/${MUQSS_FILE} -> ${MUQSS_DISTNAME}" + +# Fix for: https://github.com/gentoo/gentoo/pull/6942 +BLKIO_HASH="25849740d77dfc089fdbfb53623e50d38a972aff" +BLKIO_FILE="${PN}-4.14-blkio-fix.patch" +BLKIO_URI="https://github.com/ckolivas/linux/commit/${BLKIO_HASH}.patch -> ${BLKIO_FILE}" + +# Upstream: https://github.com/ckolivas/linux/pull/9/ +IRQREGS_HASH="7bb09fbdf490f5de8eafc635ab858b1f38dca84c" +IRQREGS_FILE="${PN}-4.14-irqregsdeclaration-fix.patch" +IRQREGS_URI="https://github.com/ckolivas/linux/commit/${IRQREGS_HASH}.patch -> ${IRQREGS_FILE}" + +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI} ${CK_URI} ${BLKIO_URI} ${IRQREGS_URI}" + +UNIPATCH_LIST="${DISTDIR}/${MUQSS_DISTNAME} ${DISTDIR}/${BLKIO_FILE} ${DISTDIR}/${IRQREGS_FILE}" +UNIPATCH_STRICTORDER="yes" + +pkg_setup() { + use deblob && python-any-r1_pkg_setup + kernel-2_pkg_setup +} |