Сравнение coreutils-9.9-r12 с coreutils-9.10

/usr/portage/sys-apps/coreutils/coreutils-9.10.ebuild 2026-04-10 12:17:39.980732031 +0300
11 11

  
12 12
PYTHON_COMPAT=( python3_{11..13} )
13 13
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/coreutils.asc
14
inherit flag-o-matic python-any-r1 toolchain-funcs verify-sig
14
inherit branding flag-o-matic python-any-r1 toolchain-funcs verify-sig
15 15

  
16 16
MY_PATCH="${PN}-9.6-patches"
17 17
DESCRIPTION="Standard GNU utilities (chmod, cp, dd, ls, sort, tr, head, wc, who,...)"
......
33 33
		verify-sig? ( mirror://gnu/${PN}/${P}.tar.xz.sig )
34 34
	"
35 35

  
36
	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
36
	KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
37 37
fi
38 38

  
39 39
SRC_URI+=" !vanilla? ( https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${MY_PATCH}.tar.xz )"
......
118 118
	local PATCHES=(
119 119
		"${FILESDIR}"/${PN}-9.5-skip-readutmp-test.patch
120 120
		# Upstream patches
121
		"${FILESDIR}"/${PN}-9.9-cp-SEEK_HOLE-loop.patch
122
		"${FILESDIR}"/${PN}-9.9-glibc-2.43-c23.patch
121
		"${FILESDIR}"/${PN}-9.10-dash-tests.patch
123 122
	)
124 123

  
125 124
	if ! use vanilla && [[ -d "${WORKDIR}"/${MY_PATCH} ]] ; then
......
157 156
	# still experimental at the moment, but:
158 157
	# https://git.savannah.gnu.org/cgit/coreutils.git/commit/?id=85edb4afbd119fb69a0d53e1beb71f46c9525dd0
159 158
	local myconf=(
160
		--with-packager="Gentoo"
161 159
		--with-packager-version="${PVR} (p${PATCH_VER:-0})"
162
		--with-packager-bug-reports="https://bugs.gentoo.org/"
163 160
		# kill/uptime - procps
164 161
		# hostname    - net-tools
165 162
		--enable-install-program="arch,$(usev hostname),$(usev kill)"
......
171 168
		$(use_enable xattr)
172 169
		$(use_with gmp libgmp)
173 170
		$(use_with openssl)
171
		$(use_with selinux)
174 172
	)
175 173

  
176 174
	if use gmp ; then
......
193 191
		sed -i '/elf_sys=yes/s:yes:no:' configure || die
194 192
	fi
195 193

  
196
	if ! use selinux ; then
197
		# bug #301782
198
		export ac_cv_{header_selinux_{context,flash,selinux}_h,search_setfilecon}=no
199
	fi
200

  
201
	econf "${myconf[@]}"
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[@]}"
202 197
}
203 198

  
204 199
src_test() {
Спасибо!