Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 927818 | Differences between
and this patch

Collapse All | Expand All

(-)a/eclass/distutils-r1.eclass (-2 / +5 lines)
Lines 1334-1340 distutils_wheel_install() { Link Here
1334
	printf '%s\n' "${cmd[*]}"
1334
	printf '%s\n' "${cmd[*]}"
1335
	"${cmd[@]}" || die "Wheel install failed"
1335
	"${cmd[@]}" || die "Wheel install failed"
1336
1336
1337
	# remove installed licenses
1337
	# remove installed:
1338
	# - licenses
1339
	# - RECORD, used solely by pip to know how to uninstall it
1340
	#   behind our back
1338
	find "${root}$(python_get_sitedir)" -depth \
1341
	find "${root}$(python_get_sitedir)" -depth \
1339
		\( -path '*.dist-info/COPYING*' \
1342
		\( -path '*.dist-info/COPYING*' \
1340
		-o -path '*.dist-info/LICENSE*' \
1343
		-o -path '*.dist-info/LICENSE*' \
Lines 1342-1347 distutils_wheel_install() { Link Here
1342
		-o -path '*.dist-info/license_files' \
1345
		-o -path '*.dist-info/license_files' \
1343
		-o -path '*.dist-info/licenses/*' \
1346
		-o -path '*.dist-info/licenses/*' \
1344
		-o -path '*.dist-info/licenses' \
1347
		-o -path '*.dist-info/licenses' \
1348
		-o -path '*.dist-info/RECORD' \
1345
		\) -delete || die
1349
		\) -delete || die
1346
}
1350
}
1347
1351
1348
- 

Return to bug 927818