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, 27 Nov 2022 23:19:32
Message-Id: 1669591159.a162bfe06a77b81a258a80cf4bbb79a5bd577c9b.mpagano@gentoo
1 commit: a162bfe06a77b81a258a80cf4bbb79a5bd577c9b
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 27 23:19:11 2022 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 27 23:19:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a162bfe0
7
8 sys-kernel/git-sources: add 6.1_rc7
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.1_rc7.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 70cbce02ec32..4a6a8bea9cd2 100644
18 --- a/sys-kernel/git-sources/Manifest
19 +++ b/sys-kernel/git-sources/Manifest
20 @@ -5,3 +5,4 @@ DIST patch-6.1-rc3.patch 51538717 BLAKE2B 3dae85a6363655d534bd1f87eedc9711280484
21 DIST patch-6.1-rc4.patch 51927243 BLAKE2B 168125d2afe15679f55f77bf2509bf38f1c20d5f742430febe0fa53c069b1460b81dca3eb4382ecf47450926bce9f033c1c2370709b93eb4da31ef87900161a0 SHA512 75e2dd8a3a587f9c9027e7d3b007de00e1d142c54405e94f2b36202b47624fbbc89c2a60d9c16f92ef16e317062c2af82356c888b35b1b5007756218dbce69ef
22 DIST patch-6.1-rc5.patch 52243147 BLAKE2B 0bdc2ebcf322114ea05fb020ac5b8322bd61eb2b391b6cb27b14f2d6867089e921d02fdce8e54575e5b13832a6f3bec055adddda3d68fcf5b5ef3031a7815724 SHA512 2583fa29bbbdf1dd667843a816c58c0a6537038dc8cc66aa3509d34897f68bfe21f7107005db71c5eab5b9de034341bb00508bec89d562759baf5305c816877e
23 DIST patch-6.1-rc6.patch 52490549 BLAKE2B 6719479fa42521d1247f14f9c807b1b79d380f67c3c34ad025d5ea98414aa76eac888543f71b0433b6abffdd3222ad57f95ff3a14625c57919f6058ef268a4e6 SHA512 4dbefa1a2d622c1b6427c349631b039e13da6b0a1c92711d930c5b5f58075970a40b6b4f7119a877888f06d6cd2f3155f19c839ab5d8b7980ce55a2b6b652cd9
24 +DIST patch-6.1-rc7.patch 52798420 BLAKE2B c7ab0b3ca3a893a669fb50979d4d5a4b2d743176c91ddd1fb587bf5a9f9e2a62c0a971c1a40d919e091e2e6dbf0e4d5f0a418b8e6b22ecd96855ab8d3f5d0098 SHA512 eb0f3797c0dc4c304dcccb8a470564beb31e6661f77063fd484e8577377b654f1ea0578f264f5de5858b4ab29958756ca70033e9b3edafc396bab0992e1ff793
25
26 diff --git a/sys-kernel/git-sources/git-sources-6.1_rc7.ebuild b/sys-kernel/git-sources/git-sources-6.1_rc7.ebuild
27 new file mode 100644
28 index 000000000000..b91652186526
29 --- /dev/null
30 +++ b/sys-kernel/git-sources/git-sources-6.1_rc7.ebuild
31 @@ -0,0 +1,41 @@
32 +# Copyright 1999-2022 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.0"
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 ~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 +}