Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Mon, 29 May 2017 21:54:11
Message-Id: 1496094815.b003a0e3df0d7e65a9123bf3d723bd8f9aef7f4e.mgorny@gentoo
1 commit: b003a0e3df0d7e65a9123bf3d723bd8f9aef7f4e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 20 11:42:59 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 29 21:53:35 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b003a0e3
7
8 distutils-r1.eclass: Remove QA-warning for DISTUTILS_NO_PARALLEL_BUILD
9
10 The variable was deprecated and the warning put in place in Dec 2014. It
11 is no longer used in any ebuild in ::gentoo.
12
13 eclass/distutils-r1.eclass | 9 ---------
14 1 file changed, 9 deletions(-)
15
16 diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
17 index 6078fb6d52b..e79f86bab12 100644
18 --- a/eclass/distutils-r1.eclass
19 +++ b/eclass/distutils-r1.eclass
20 @@ -696,15 +696,6 @@ _distutils-r1_run_common_phase() {
21 _distutils-r1_run_foreach_impl() {
22 debug-print-function ${FUNCNAME} "${@}"
23
24 - if [[ ${DISTUTILS_NO_PARALLEL_BUILD} ]]; then
25 - [[ ${EAPI} == [45] ]] || die "DISTUTILS_NO_PARALLEL_BUILD is banned in EAPI ${EAPI}"
26 -
27 - eqawarn "DISTUTILS_NO_PARALLEL_BUILD is no longer meaningful. Now all builds"
28 - eqawarn "are non-parallel. Please remove it from the ebuild."
29 -
30 - unset DISTUTILS_NO_PARALLEL_BUILD # avoid repeated warnings
31 - fi
32 -
33 # store for restoring after distutils-r1_run_phase.
34 local _DISTUTILS_INITIAL_CWD=${PWD}
35 set -- distutils-r1_run_phase "${@}"