Gentoo Archives: gentoo-commits

From: Alice Ferrazzi <alicef@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/kpatch/
Date: Sun, 02 Jun 2019 18:46:03
Message-Id: 1559501143.2a3a57780d75651c95f1ccab154ae42db1598767.alicef@gentoo
1 commit: 2a3a57780d75651c95f1ccab154ae42db1598767
2 Author: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 2 18:44:52 2019 +0000
4 Commit: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 2 18:45:43 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a3a5778
7
8 sys-kernel/kpatch: bump 0.6.3
9
10 Package-Manager: Portage-2.3.67, Repoman-2.3.13
11 Signed-off-by: Alice Ferrazzi <alicef <AT> gentoo.org>
12
13 sys-kernel/kpatch/Manifest | 1 +
14 sys-kernel/kpatch/kpatch-0.6.3.ebuild | 84 +++++++++++++++++++++++++++++++++++
15 sys-kernel/kpatch/metadata.xml | 6 +++
16 3 files changed, 91 insertions(+)
17
18 diff --git a/sys-kernel/kpatch/Manifest b/sys-kernel/kpatch/Manifest
19 index c6d912899b9..750a99bcfda 100644
20 --- a/sys-kernel/kpatch/Manifest
21 +++ b/sys-kernel/kpatch/Manifest
22 @@ -1,3 +1,4 @@
23 DIST kpatch-0.4.0.tar.gz 124433 BLAKE2B 6ea18c4d590426f9db95e16d555307e264d1b7db362d421f72eaaf897703f7883c44cc49bd98b48d8789453962259d0b0e301aca325c94be6c21061d0621a9cf SHA512 0bbb49a06d02e9eb026be458eb904cf50f50461a67f16835a306bb3a4a57ef88b86ecf6bca6dfc91b921ba87b4c8b9d532e2a77e987e7c71583b8cb53520a1d7
24 DIST kpatch-0.6.0.tar.gz 153337 BLAKE2B 5c132b885f9f8bc3c7b514997a0b8b77280d0387431dd3eb73f45da4678b281961a03452b0ec590b37fc9568192135528a9a42bd5005530bd8b9175fe652f7b1 SHA512 7ac27639773a851ad6689743100ff973b4e3a30efc386bdf413c8f6167068d93c2d18820d87e1f1e96405fa3545dcb80a72db0011f07218a692f91f1f3c3655a
25 DIST kpatch-0.6.2.tar.gz 148110 BLAKE2B 9903c9423ee6268a0d87c55336e418a964474a3d7f35dd1ad613be7645a932cd09991652cd4a3af0b08a686f39e7c6c7f4b12d80c20c7ecd663aa703821503f8 SHA512 65098195330a2dbea4f8648c87c41f3a7751ffcb83b4e4c5f0a1146f91a8ae8c305d8f111a69304b31f1f12dd26da788af31a5477899bda098b7391cd0a32eca
26 +DIST kpatch-0.6.3.tar.gz 153100 BLAKE2B e95d1880ffc9ff6038bba98902d0f1e97c9f7f8d0f90eedc281c4bf0570217668cf7b701d038d6f06e9885ebdbb4407cc554d5175cf17eb8fd5051381f75deb3 SHA512 0d266dd837ad651d7f46047cf2c8de527d08274a885a154c53354f4b3c5679d91c766d7d42294ffe71cc548e5ee865c7555f24001882b806f2fb48825f9b0c06
27
28 diff --git a/sys-kernel/kpatch/kpatch-0.6.3.ebuild b/sys-kernel/kpatch/kpatch-0.6.3.ebuild
29 new file mode 100644
30 index 00000000000..763ccbeac5d
31 --- /dev/null
32 +++ b/sys-kernel/kpatch/kpatch-0.6.3.ebuild
33 @@ -0,0 +1,84 @@
34 +# Copyright 1999-2019 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI="7"
38 +
39 +inherit flag-o-matic linux-mod
40 +
41 +if [[ "${PV}" == "9999" ]]; then
42 + inherit git-r3
43 + EGIT_REPO_URI="https://github.com/dynup/${PN}.git"
44 +else
45 + SRC_URI="https://github.com/dynup/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 + KEYWORDS="~amd64"
47 +fi
48 +
49 +DESCRIPTION="Dynamic kernel patching for Linux"
50 +HOMEPAGE="https://github.com/dynup/kpatch"
51 +
52 +LICENSE="GPL-2+"
53 +SLOT="0"
54 +IUSE="+kpatch-build +kpatch kmod doc contrib test"
55 +
56 +RDEPEND="
57 + app-crypt/pesign
58 + dev-libs/openssl:0=
59 + sys-libs/zlib
60 + sys-apps/pciutils
61 +"
62 +
63 +DEPEND="
64 + ${RDEPEND}
65 + dev-libs/elfutils
66 + sys-devel/bison
67 + test? ( dev-util/shellcheck-bin )
68 +"
69 +
70 +pkg_setup() {
71 + if use kmod; then
72 + if kernel_is gt 3 9 0; then
73 + if ! linux_config_exists; then
74 + eerror "Unable to check the currently running kernel for kpatch support"
75 + eerror "Please be sure a .config file is available in the kernel src dir"
76 + eerror "and ensure the kernel has been built."
77 + else
78 + # Fail to build if these kernel options are not enabled (see kpatch/kmod/core/Makefile)
79 + CONFIG_CHECK="FUNCTION_TRACER HAVE_FENTRY MODULES SYSFS KALLSYMS_ALL"
80 + ERROR_FUNCTION_TRACER="CONFIG_FUNCTION_TRACER must be enabled in the kernel's config file"
81 + ERROR_HAVE_FENTRY="CONFIG_HAVE_FENTRY must be enabled in the kernel's config file"
82 + ERROR_MODULES="CONFIG_MODULES must be enabled in the kernel's config file"
83 + ERROR_SYSFS="CONFIG_SYSFS must be enabled in the kernel's config file"
84 + ERROR_KALLSYMS_ALL="CONFIG_KALLSYMS_ALL must be enabled in the kernel's config file"
85 + fi
86 + else
87 + eerror
88 + eerror "kpatch is not available for Linux kernels below 4.0.0"
89 + eerror
90 + die "Upgrade the kernel sources before installing kpatch."
91 + fi
92 + check_extra_config
93 + fi
94 +
95 +}
96 +
97 +src_prepare() {
98 + replace-flags '-O?' '-O1'
99 + default
100 +}
101 +
102 +src_compile() {
103 + use kpatch-build && emake -C kpatch-build
104 + use kpatch && emake -C kpatch
105 + use kmod && set_arch_to_kernel && emake -C kmod
106 + use doc && emake -C doc
107 + use contrib && emake -C contrib
108 + use test && emake check
109 +}
110 +
111 +src_install() {
112 + use kpatch-build && emake DESTDIR="${D}" PREFIX="/usr" install -C kpatch-build
113 + use kpatch && emake DESTDIR="${D}" PREFIX="/usr" install -C kpatch
114 + use kmod && set_arch_to_kernel && emake DESTDIR="${D}" PREFIX="/usr" install -C kmod
115 + use contrib && emake DESTDIR="${D}" PREFIX="/usr" install -C contrib
116 + use doc && einstalldocs
117 +}
118
119 diff --git a/sys-kernel/kpatch/metadata.xml b/sys-kernel/kpatch/metadata.xml
120 index b393adbecca..7e000f09b13 100644
121 --- a/sys-kernel/kpatch/metadata.xml
122 +++ b/sys-kernel/kpatch/metadata.xml
123 @@ -5,4 +5,10 @@
124 <email>alicef@g.o</email>
125 </maintainer>
126 <longdescription lang="en">Dynamic kernel patching for the Linux kernel</longdescription>
127 +<use>
128 + <flag name="kpatch-build">Enable tools which convert a source diff patch to a patch module.</flag>
129 + <flag name="kpatch">Enable a command-line tool which allows a user to manage a collection of patch modules.</flag>
130 + <flag name="kmod">Enable a kernel module (.ko file) which provides an interface for the patch modules to register new functions for replacement.</flag>
131 + <flag name="contrib">Enable contrib kpatch services files.</flag>
132 +</use>
133 </pkgmetadata>