Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/kexec-tools/
Date: Fri, 23 Sep 2022 02:15:03
Message-Id: 1663899217.f5a51ebe55162d2cddcf40cb36204fde4ffa3d2b.sam@gentoo
1 commit: f5a51ebe55162d2cddcf40cb36204fde4ffa3d2b
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 23 02:10:57 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 23 02:13:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5a51ebe
7
8 sys-apps/kexec-tools: drop 2.0.23
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sys-apps/kexec-tools/Manifest | 1 -
13 sys-apps/kexec-tools/kexec-tools-2.0.23.ebuild | 124 -------------------------
14 2 files changed, 125 deletions(-)
15
16 diff --git a/sys-apps/kexec-tools/Manifest b/sys-apps/kexec-tools/Manifest
17 index 3f1cd08e7ece..c9011dde6bd8 100644
18 --- a/sys-apps/kexec-tools/Manifest
19 +++ b/sys-apps/kexec-tools/Manifest
20 @@ -1,3 +1,2 @@
21 DIST kexec-tools-2.0.22.tar.xz 303564 BLAKE2B 977c741eabf9b6b882550713ba59b18289b4f997fb382e96338efce6d04a9390fea952fc46ca72fd0a0b782261841ab2002da84b1819f955e63996eac900b0f7 SHA512 7580860f272eee5af52139809f12961e5a5d3a65f4e191183ca9c845410425d25818945ac14ed04a60e6ce474dc2656fc6a14041177b0bf703f450820c7d6aba
22 -DIST kexec-tools-2.0.23.tar.xz 304024 BLAKE2B 0150985093dc0012d3870c127ac5eab81d4cc839c0a79ff20224d1a409462a194d7e304f54ed8f0952e4d325dbff11bcbe1565b2c57c45c212302810dc06ed62 SHA512 b6e3b967cacc31c434b185d25da4d53c822ae4bbcec26ef9d6cb171f294fdcc80913d381e686a0a41e025187835f4dc088052ff88efe75a021d7624c8b1a1ed8
23 DIST kexec-tools-2.0.24.tar.xz 303808 BLAKE2B 8188602f1b843c1dccc0307131f8c9ec0426c6cb3de898040352c1fed5f6d4bd7c58a0c2bf54290b91c8fe3401180df682959ee6c41693d07acc199c087c7db2 SHA512 ef7cf78246e2d729d81a3649791a5a23c385353cc75cbe8ef279616329fdaccc876d614c7f51e1456822a13a11520296070d9897467d24310399909e049c3822
24
25 diff --git a/sys-apps/kexec-tools/kexec-tools-2.0.23.ebuild b/sys-apps/kexec-tools/kexec-tools-2.0.23.ebuild
26 deleted file mode 100644
27 index b69a3c09e13d..000000000000
28 --- a/sys-apps/kexec-tools/kexec-tools-2.0.23.ebuild
29 +++ /dev/null
30 @@ -1,124 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit libtool linux-info systemd
37 -
38 -if [[ ${PV} == "9999" ]] ; then
39 - inherit git-r3 autotools
40 - EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git"
41 -else
42 - SRC_URI="https://www.kernel.org/pub/linux/utils/kernel/kexec/${P/_/-}.tar.xz"
43 - [[ "${PV}" == *_rc* ]] || \
44 - KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
45 -fi
46 -
47 -DESCRIPTION="Load another kernel from the currently executing Linux kernel"
48 -HOMEPAGE="https://kernel.org/pub/linux/utils/kernel/kexec/"
49 -
50 -LICENSE="GPL-2"
51 -SLOT="0"
52 -IUSE="booke lzma xen zlib"
53 -
54 -REQUIRED_USE="lzma? ( zlib )"
55 -
56 -DEPEND="
57 - lzma? ( app-arch/xz-utils )
58 - zlib? ( sys-libs/zlib )"
59 -RDEPEND="${DEPEND}"
60 -
61 -S="${WORKDIR}/${P/_/-}"
62 -
63 -CONFIG_CHECK="~KEXEC"
64 -
65 -PATCHES=(
66 - "${FILESDIR}"/${PN}-2.0.4-disable-kexec-test.patch
67 - "${FILESDIR}"/${PN}-2.0.4-out-of-source.patch
68 -)
69 -
70 -pkg_setup() {
71 - # GNU Make's $(COMPILE.S) passes ASFLAGS to $(CCAS), CCAS=$(CC)
72 - export ASFLAGS="${CCASFLAGS}"
73 -}
74 -
75 -src_prepare() {
76 - default
77 -
78 - # Append PURGATORY_EXTRA_CFLAGS flags set by configure, instead of overriding them completely.
79 - sed -e "/^PURGATORY_EXTRA_CFLAGS =/s/=/+=/" -i Makefile.in || die
80 -
81 - if [[ "${PV}" == 9999 ]] ; then
82 - eautoreconf
83 - else
84 - elibtoolize
85 - fi
86 -}
87 -
88 -src_configure() {
89 - local myeconfargs=(
90 - $(use_with booke)
91 - $(use_with lzma)
92 - $(use_with xen)
93 - $(use_with zlib)
94 - )
95 - econf "${myeconfargs[@]}"
96 -}
97 -
98 -src_compile() {
99 - # Respect CFLAGS for purgatory.
100 - # purgatory/Makefile uses PURGATORY_EXTRA_CFLAGS variable.
101 - # -mfunction-return=thunk and -mindirect-branch=thunk conflict with
102 - # -mcmodel=large which is added by build system.
103 - # Replace them with -mfunction-return=thunk-inline and -mindirect-branch=thunk-inline.
104 - local flag flags=()
105 - for flag in ${CFLAGS}; do
106 - [[ ${flag} == -mfunction-return=thunk ]] && flag="-mfunction-return=thunk-inline"
107 - [[ ${flag} == -mindirect-branch=thunk ]] && flag="-mindirect-branch=thunk-inline"
108 - flags+=("${flag}")
109 - done
110 - local -x PURGATORY_EXTRA_CFLAGS="${flags[*]}"
111 -
112 - default
113 -}
114 -
115 -src_install() {
116 - default
117 -
118 - dodoc "${FILESDIR}"/README.Gentoo
119 -
120 - newinitd "${FILESDIR}"/kexec-r2.init kexec
121 - newconfd "${FILESDIR}"/kexec.conf-2.0.4 kexec
122 -
123 - insinto /etc
124 - doins "${FILESDIR}"/kexec.conf
125 -
126 - insinto /etc/kernel/postinst.d
127 - doins "${FILESDIR}"/90_kexec
128 -
129 - systemd_dounit "${FILESDIR}"/kexec.service
130 -}
131 -
132 -pkg_postinst() {
133 - if systemd_is_booted || has_version sys-apps/systemd; then
134 - elog "For systemd support the new config file is"
135 - elog " /etc/kexec.conf"
136 - elog "Please adopt it to your needs as there is no autoconfig anymore"
137 - fi
138 -
139 - local n_root_args=$(grep -o -- '\<root=' /proc/cmdline 2>/dev/null | wc -l)
140 - local has_rootpart_set=no
141 - if [[ -f "${EROOT}/etc/conf.d/kexec" ]]; then
142 - if grep -q -E -- '^ROOTPART=' "${EROOT}/etc/conf.d/kexec" 2>/dev/null; then
143 - has_rootpart_set=yes
144 - fi
145 - fi
146 -
147 - if [[ ${n_root_args} -gt 1 && "${has_rootpart_set}" == "no" ]]; then
148 - ewarn "WARNING: Multiple root arguments (root=) on kernel command-line detected!"
149 - ewarn "This was probably caused by a previous version of ${PN}."
150 - ewarn "Please reboot system once *without* kexec to avoid boot problems"
151 - ewarn "in case running system and initramfs do not agree on detected"
152 - ewarn "root device name!"
153 - fi
154 -}