Gentoo Archives: gentoo-commits

From: Mike Pagano <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/git-sources/
Date: Sun, 19 Mar 2023 23:17:31
Message-Id: 1679267830.a61cae85086657418491fde39972638c1852fb10.mpagano@gentoo
1 commit: a61cae85086657418491fde39972638c1852fb10
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 19 23:17:10 2023 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 19 23:17:10 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a61cae85
7
8 sys-kernel/git-sources: add 6.3_rc3
9
10 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
11
12 sys-kernel/git-sources/Manifest | 1 +
13 sys-kernel/git-sources/git-sources-6.3_rc3.ebuild | 41 +++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
17 index 151a069145c1..388e42c7e23a 100644
18 --- a/sys-kernel/git-sources/Manifest
19 +++ b/sys-kernel/git-sources/Manifest
20 @@ -1,3 +1,4 @@
21 DIST linux-6.2.tar.xz 136430892 BLAKE2B 05b63254734ea685db437cb1c00a6da63eee74d7e99f4ed2d074aaa01ac4487813ab297d337a6855cdbcbb33346b631c4256ee3b06191adfb1be3615a56bdd6d SHA512 a01bee0b968b95183934fe3504516be7ef5811944a061f5aed05ecebaa27b5eb64e33232fd0a8dd622b3c8743bfe462ef7e464d381734d111a0ad6a6d9f66ddd
22 DIST patch-6.3-rc1.patch 75751420 BLAKE2B 6e3cddb5397bea144a14b2b1efb1816841d81fa44030066a0196d97493121edfa451310dcb023d2feea45f17c43a8e3d1ecac63cf2a1b8c759c42bec5529d528 SHA512 f5f3240508ba1a0b5fef3a88ba781b7b76502eb242dbc670217f4c599d8394781d8fd8f05a24a831b25c18951e2a3278d1a89e99f2ef818d865c588371527e01
23 DIST patch-6.3-rc2.patch 77506749 BLAKE2B 827dfc8da94ee33d4c0ff93f9fc1595d87ef94e0fd4bf50c4d493f9e4762e7b5678385b5af07198e8b018ffa9dc64474899e818ba359b18ed6cf61aeaba48c86 SHA512 a1d4fa8346f71159bc767ba85ab6970d20fb5ca7e31a635b6a793c28a504f276c95dd7f5bb4f76eb20c781c7e25ac0c9ed3e2c6f449e3ea8da89b9868fc826ee
24 +DIST patch-6.3-rc3.patch 77958099 BLAKE2B 5e459202c7e77ec1cb977cd6e7d49b014e9ca0fdaef9edf69fe425e2326fd89efae0a278570834691b523a5c3d69276da5b391c6dea2f87fb17f3dd1b55190e9 SHA512 9ff7f62ba90d2e37f50398538ee25f03e520763f0a7bd41d5bc2187b7bcc9512aa52599786246660ab3daf465888c6e17ba0588c907c01810a4572e9afbad246
25
26 diff --git a/sys-kernel/git-sources/git-sources-6.3_rc3.ebuild b/sys-kernel/git-sources/git-sources-6.3_rc3.ebuild
27 new file mode 100644
28 index 000000000000..ae9a3401cdd2
29 --- /dev/null
30 +++ b/sys-kernel/git-sources/git-sources-6.3_rc3.ebuild
31 @@ -0,0 +1,41 @@
32 +# Copyright 1999-2023 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="8"
36 +UNIPATCH_STRICTORDER="yes"
37 +K_NOUSENAME="yes"
38 +K_NOSETEXTRAVERSION="yes"
39 +K_NOUSEPR="yes"
40 +K_SECURITY_UNSUPPORTED="1"
41 +K_BASE_VER="6.2"
42 +K_EXP_GENPATCHES_NOUSE="1"
43 +K_FROM_GIT="yes"
44 +K_NODRYRUN="yes"
45 +ETYPE="sources"
46 +CKV="${PVR/-r/-git}"
47 +
48 +# only use this if it's not an _rc/_pre release
49 +[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
50 +inherit kernel-2
51 +detect_version
52 +
53 +DESCRIPTION="The very latest -git version of the Linux kernel"
54 +HOMEPAGE="https://www.kernel.org"
55 +SRC_URI="${KERNEL_URI}"
56 +
57 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~s390 ~sparc ~x86"
58 +IUSE=""
59 +
60 +K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
61 +experimental nature. If you have any issues, try a matching vanilla-sources
62 +ebuild -- if the problem is not there, please contact the upstream kernel
63 +developers at https://bugzilla.kernel.org and on the linux-kernel mailing list to
64 +report the problem so it can be fixed in time for the next kernel release."
65 +
66 +RDEPEND=""
67 +DEPEND="${RDEPEND}
68 + >=sys-devel/patch-2.7.6-r4"
69 +
70 +pkg_postinst() {
71 + postinst_sources
72 +}