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

/usr/portage/sys-devel/binutils/binutils-2.34-r2.ebuild 2024-12-25 14:59:52.791270183 +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() {
......
235 232
		# Change SONAME to avoid conflict across
236 233
		# {native,cross}/binutils, binutils-libs. #666100
237 234
		--with-extra-soversion-suffix=gentoo-${CATEGORY}-${PN}-$(usex multitarget mt st)
235

  
236
		# avoid automagic dependency on (currently prefix) systems
237
		# systems with debuginfod library, bug #754753
238
		--without-debuginfod
238 239
	)
239 240
	echo ./configure "${myconf[@]}"
240 241
	"${S}"/configure "${myconf[@]}" || die
Thank you!