Сравнение coreutils-9.10 с coreutils-9999
| /usr/portage/sys-apps/coreutils/coreutils-9999.ebuild 2026-01-08 10:18:06.755674801 +0300 | ||
|---|---|---|
| 1 |
# Copyright 1999-2026 Gentoo Authors |
|
| 1 |
# Copyright 1999-2025 Gentoo Authors |
|
| 2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 | |
| 4 | 4 |
EAPI=8 |
| ... | ... | |
| 118 | 118 |
local PATCHES=( |
| 119 | 119 |
"${FILESDIR}"/${PN}-9.5-skip-readutmp-test.patch
|
| 120 | 120 |
# Upstream patches |
| 121 |
"${FILESDIR}"/${PN}-9.10-dash-tests.patch
|
|
| 122 | 121 |
) |
| 123 | 122 | |
| 124 | 123 |
if ! use vanilla && [[ -d "${WORKDIR}"/${MY_PATCH} ]] ; then
|
| ... | ... | |
| 168 | 167 |
$(use_enable xattr) |
| 169 | 168 |
$(use_with gmp libgmp) |
| 170 | 169 |
$(use_with openssl) |
| 171 |
$(use_with selinux) |
|
| 172 | 170 |
) |
| 173 | 171 | |
| 174 | 172 |
if use gmp ; then |
| ... | ... | |
| 191 | 189 |
sed -i '/elf_sys=yes/s:yes:no:' configure || die |
| 192 | 190 |
fi |
| 193 | 191 | |
| 194 |
# TODO: Drop CONFIG_SHELL for bash after 9.10 |
|
| 195 |
# https://cgit.git.savannah.gnu.org/cgit/coreutils.git/commit/?id=a72ad1216d8cf96be542e2e7a4dd1d6151d6087b |
|
| 196 |
CONFIG_SHELL="${BROOT}"/bin/bash econf "${myconf[@]}"
|
|
| 192 |
if ! use selinux ; then |
|
| 193 |
# bug #301782 |
|
| 194 |
export ac_cv_{header_selinux_{context,flash,selinux}_h,search_setfilecon}=no
|
|
| 195 |
fi |
|
| 196 | ||
| 197 |
econf "${myconf[@]}"
|
|
| 197 | 198 |
} |
| 198 | 199 | |
| 199 | 200 |
src_test() {
|