Diff sysvinit-3.07 with a sysvinit-3.07-r2

/usr/portage/sys-apps/sysvinit/sysvinit-3.07-r2.ebuild 2023-10-09 14:52:35.412368499 +0300
21 21
LICENSE="GPL-2"
22 22
SLOT="0"
23 23
if [[ ${PV} != *beta* ]] ; then
24
	KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
24
	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
25 25
fi
26 26
IUSE="selinux ibm nls static"
27 27

  
......
47 47
	"${FILESDIR}/${PN}-2.86-kexec.patch"
48 48
	# bug #158615
49 49
	"${FILESDIR}/${PN}-2.94_beta-shutdown-single.patch"
50
	# bug 911257
51
	"${FILESDIR}/sysvinit-3.07-halt.patch"
50 52
)
51 53

  
52 54
src_prepare() {
......
185 187
	if [[ ! -e "${EROOT}/var/log/boot" ]] ; then
186 188
		touch "${EROOT}/var/log/boot"
187 189
	fi
190

  
191
	local ver
192
	for ver in ${REPLACING_VERSIONS}; do
193
		ver_test ${ver} -ge 3.07-r2 && continue
194
		ewarn "Previously, the 'halt' command caused the system to power off"
195
		ewarn "even if option -p was not given. This long-standing bug has"
196
		ewarn "been fixed, and the command now behaves as documented."
197
		break
198
	done
188 199
}
Thank you!