Diff toybox-0.8.8 with a toybox-0.8.9
/usr/portage/sys-apps/toybox/toybox-0.8.9.ebuild 2023-10-09 14:52:35.412368499 +0300 | ||
---|---|---|
1 | 1 |
# Copyright 1999-2023 Gentoo Authors |
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 |
EAPI=7 |
|
4 |
EAPI=8 |
|
5 | 5 | |
6 | 6 |
inherit multiprocessing savedconfig toolchain-funcs |
7 | 7 | |
... | ... | |
22 | 22 |
DEPEND="virtual/libcrypt:=" |
23 | 23 |
RDEPEND="${DEPEND}" |
24 | 24 | |
25 |
PATCHES=( |
|
26 |
"${FILESDIR}"/${P}-verbose-build-fix.patch |
|
27 |
) |
|
28 | ||
25 | 29 |
src_prepare() { |
26 | 30 |
default |
27 | 31 |
restore_config .config |
... | ... | |
45 | 49 |
src_compile() { |
46 | 50 |
unset CROSS_COMPILE |
47 | 51 |
export CPUS=$(makeopts_jobs) |
48 |
emake V=1 |
|
52 |
emake V=1 NOSTRIP=1 |
|
49 | 53 |
} |
50 | 54 | |
51 | 55 |
src_test() { |
52 |
emake tests |
|
56 |
emake V=1 tests |
|
53 | 57 |
} |
54 | 58 | |
55 | 59 |
src_install() { |
56 | 60 |
save_config .config |
57 |
newbin toybox toybox |
|
61 |
dobin toybox |
|
58 | 62 |
} |