Diff binutils-2.33.1-r1 with a binutils-2.34-r2

/usr/portage/sys-devel/binutils/binutils-2.34-r2.ebuild 2023-10-09 14:52:35.476368501 +0300
19 19
# PATCH_DEV          - Use download URI https://dev.gentoo.org/~{PATCH_DEV}/distfiles/...
20 20
#                      for the patchsets
21 21

  
22
PATCH_VER=2
23
PATCH_DEV=slyfox
22
PATCH_VER=6
23
PATCH_DEV=dilfridge
24 24

  
25 25
case ${PV} in
26 26
	9999)
......
64 64
	>=sys-devel/binutils-config-3
65 65
	sys-libs/zlib
66 66
"
67
DEPEND="${RDEPEND}
67
DEPEND="${RDEPEND}"
68
BDEPEND="
68 69
	doc? ( sys-apps/texinfo )
69 70
	test? ( dev-util/dejagnu )
70 71
	nls? ( sys-devel/gettext )
......
74 75

  
75 76
RESTRICT="!test? ( test )"
76 77

  
77
PATCHES=(
78
	"${FILESDIR}"/${PN}-2.33-gcc-10.patch
79
)
80

  
81 78
MY_BUILDDIR=${WORKDIR}/build
82 79

  
83 80
src_unpack() {
......
249 246
		# Change SONAME to avoid conflict across
250 247
		# {native,cross}/binutils, binutils-libs. #666100
251 248
		--with-extra-soversion-suffix=gentoo-${CATEGORY}-${PN}-$(usex multitarget mt st)
249

  
250
		# avoid automagic dependency on (currently prefix) systems
251
		# systems with debuginfod library, bug #754753
252
		--without-debuginfod
252 253
	)
253 254
	echo ./configure "${myconf[@]}"
254 255
	"${S}"/configure "${myconf[@]}" || die
Thank you!