public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Aisha Tammy" <gentoo@aisha.cc>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/uek-sources/
Date: Sun, 16 Oct 2022 01:40:13 +0000 (UTC)	[thread overview]
Message-ID: <1665884404.476b5e9bb26d771bd058dd8f9212e0701cf9b8ed.epsilon-0@gentoo> (raw)

commit:     476b5e9bb26d771bd058dd8f9212e0701cf9b8ed
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sun Oct 16 01:39:43 2022 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Sun Oct 16 01:40:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=476b5e9b

sys-kernel/uek-sources: add 5.15.0.4.70.4

Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 sys-kernel/uek-sources/Manifest                    |  1 +
 .../uek-sources/uek-sources-5.15.0.4.70.4.ebuild   | 65 ++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/sys-kernel/uek-sources/Manifest b/sys-kernel/uek-sources/Manifest
index ac763211f..5e9ee6d79 100644
--- a/sys-kernel/uek-sources/Manifest
+++ b/sys-kernel/uek-sources/Manifest
@@ -2,3 +2,4 @@ DIST genpatches-5.15-72.base.tar.xz 2987972 BLAKE2B be108e6921f5a04605ab7c557e1e
 DIST genpatches-5.15-72.experimental.tar.xz 5424 BLAKE2B f26e3ebd164f39e1a2ad696f953a28576d081e195f0af7f63713281e6a0e18a6fce0a5f55320448003f835296a3203c1d7803addf58dc72f49e38018adf15972 SHA512 26589b45e58f9e56e1287aa100b1e5fbbc05f00cb128d7326a5c599b2725139a76c11a781ff45c504b749c0c9a589105a93620ad7d5069327d2749aa442d1854
 DIST genpatches-5.15-72.extras.tar.xz 3932 BLAKE2B 00c700eb5307d1834977c88e134fc2bea16f258d6eb374e6cb6d85c522cbf1730d6e2e937e7abb392350de8aa3cff6811f5ac0d3b93822fbd9a43c20abb525c2 SHA512 a08ba388711c30d3c101ebbdfb671c63f85ce3d07ba4545c3b01b70687d65f31fd9a1afadecdc49f0d9b113c5596df878acebd425b868ffd9111a555d4ced47d
 DIST linux-uek-5.15.0-3.60.4.tar.gz 200178510 BLAKE2B 594b8a359b3161962f07f923e697762dc82c5715688a51c4e612dc0955df179e36c874f0ada877e476e56d7aa96419748394c66615c6ec995447d17ef37f74fc SHA512 a10a49d2f0d8467695279796a0136dafa544a78d0d099626d35868ef53213a3ed5aca0c3529f26f9c8e9e36bf87ae5a3db9aa80aef58beac0b0fd043d2458a66
+DIST linux-uek-5.15.0-4.70.4.tar.gz 200243769 BLAKE2B 312914ab11ecaf3777773445d259e56cce9b16de7c16396c12abb4bbd65d9f5e61ee9432b1d51c74959a367d6ff378dcb98b335d5eba34fa559b75a8545b6189 SHA512 dd70dd7f02d9df4fce91a28638cb2702b1cc20f875c329601c22ff3a8dc3f6fcaca3aded1ffd8257d7ef98e54a2656cc5b5dccb70d5afe801ad56f3350546efc

diff --git a/sys-kernel/uek-sources/uek-sources-5.15.0.4.70.4.ebuild b/sys-kernel/uek-sources/uek-sources-5.15.0.4.70.4.ebuild
new file mode 100644
index 000000000..069fdc63c
--- /dev/null
+++ b/sys-kernel/uek-sources/uek-sources-5.15.0.4.70.4.ebuild
@@ -0,0 +1,65 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+KERNEL_VERSION=$(ver_cut 1-3)
+KERNEL_TRUNK=$(ver_cut 1-2)
+UEK_PATCH_VERSION=$(ver_cut 4-6)
+UEK_VERSION="${KERNEL_VERSION}-${UEK_PATCH_VERSION}"
+
+ETYPE="sources"
+
+K_GENPATCHES_VER="72"
+K_SECURITY_UNSUPPORTED="1"
+CKV="${KERNEL_VERSION}_p${UEK_PATCH_VERSION}"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+DESCRIPTION="Unbreakable Enterprise Kernel (UEK) sources built from Oracle"
+HOMEPAGE="https://github.com/oracle/linux-uek"
+SRC_URI="
+	https://github.com/oracle/linux-uek/archive/refs/tags/v${UEK_VERSION}.tar.gz
+		-> linux-uek-${UEK_VERSION}.tar.gz
+	mirror://gentoo/genpatches-${KERNEL_TRUNK}-${K_GENPATCHES_VER}.base.tar.xz
+	mirror://gentoo/genpatches-${KERNEL_TRUNK}-${K_GENPATCHES_VER}.experimental.tar.xz
+	mirror://gentoo/genpatches-${KERNEL_TRUNK}-${K_GENPATCHES_VER}.extras.tar.xz
+"
+S="${WORKDIR}/linux-uek-${UEK_VERSION}"
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64"
+IUSE="+gentoo experimental"
+
+PATCHES=(
+	"${FILESDIR}"/uek-sources-5.4.17.2136.303.2-O3.patch
+)
+
+src_unpack() {
+	default
+
+	# remove all backup files
+	find . -iname "*~" -print -exec rm {} \; 2>/dev/null
+
+	unpack_set_extraversion
+	unpack_fix_install_path
+
+	env_setup_xmakeopts
+}
+
+src_prepare() {
+	use gentoo && PATCHES+=(
+		"${WORKDIR}"/1500_XATTR_USER_PREFIX.patch
+		"${WORKDIR}"/1510_fs-enable-link-security-restrictions-by-default.patch
+		"${WORKDIR}"/2000_BT-Check-key-sizes-only-if-Secure-Simple-Pairing-enabled.patch
+		"${WORKDIR}"/2920_sign-file-patch-for-libressl.patch
+		"${WORKDIR}"/3000_Support-printing-firmware-info.patch
+		"${WORKDIR}"/4567_distro-Gentoo-Kconfig.patch
+	)
+	use experimental && PATCHES+=(
+		"${WORKDIR}"/5010_enable-cpu-optimizations-universal.patch
+	)
+	default
+}


             reply	other threads:[~2022-10-16  1:40 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-16  1:40 Aisha Tammy [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-10  1:35 [gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/uek-sources/ Aisha Tammy
2024-08-15 22:33 Aisha Tammy
2024-07-14 16:03 Aisha Tammy
2024-07-03 22:02 Aisha Tammy
2024-05-16 16:41 Aisha Tammy
2024-04-28  4:29 Aisha Tammy
2024-03-31  0:47 Aisha Tammy
2024-03-30 20:46 Aisha Tammy
2024-03-29 11:02 Aisha Tammy
2024-03-17 12:45 Aisha Tammy
2024-03-17 12:38 Aisha Tammy
2024-03-12  3:19 Aisha Tammy
2024-03-12  3:03 Aisha Tammy
2024-02-18  3:52 Aisha Tammy
2024-02-04  0:39 Aisha Tammy
2024-01-27 16:29 Aisha Tammy
2024-01-26  1:04 Aisha Tammy
2024-01-20  4:38 Aisha Tammy
2024-01-13  2:50 Aisha Tammy
2024-01-09  5:46 Aisha Tammy
2023-12-23 15:53 Aisha Tammy
2023-12-22 22:28 Aisha Tammy
2023-11-19 20:04 Aisha Tammy
2023-11-03  3:05 Aisha Tammy
2023-08-19 18:30 Aisha Tammy
2023-05-27 16:17 Rahul Sandhu
2023-02-24 13:43 Aisha Tammy
2023-01-14  2:58 Aisha Tammy
2022-10-29 14:30 Aisha Tammy
2022-10-29 14:30 Aisha Tammy
2022-10-29 14:30 Aisha Tammy
2022-09-17 15:27 Aisha Tammy
2022-09-17 15:27 Aisha Tammy
2022-09-03 16:24 Aisha Tammy
2022-09-03 16:24 Aisha Tammy
2022-08-13 22:54 Aisha Tammy
2022-08-12 23:48 Aisha Tammy
2022-07-27  0:14 Aisha Tammy
2022-07-21 18:16 Aisha Tammy
2022-07-21 18:12 Aisha Tammy
2022-07-03 13:26 Aisha Tammy
2022-07-03 13:14 Aisha Tammy
2022-06-17 15:15 Aisha Tammy
2022-06-09 12:34 Aisha Tammy
2022-05-14 16:30 Aisha Tammy
2022-04-26 18:18 Aisha Tammy
2022-03-31 13:23 Aisha Tammy
2022-03-06  1:39 Aisha Tammy
2022-03-05 18:26 Aisha Tammy
2022-02-25 18:01 Aisha Tammy
2022-02-25 18:01 Aisha Tammy
2022-02-23 19:51 Aisha Tammy
2022-02-20 11:53 Aisha Tammy
2022-01-23 20:44 Aisha Tammy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1665884404.476b5e9bb26d771bd058dd8f9212e0701cf9b8ed.epsilon-0@gentoo \
    --to=gentoo@aisha.cc \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox