From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-python+bounces-338-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A753C138408 for <garchives@archives.gentoo.org>; Fri, 11 Jan 2013 21:03:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E349EE02FB; Fri, 11 Jan 2013 21:03:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 182C5E02FB for <gentoo-python@lists.gentoo.org>; Fri, 11 Jan 2013 21:03:52 +0000 (UTC) Received: from pomiocik.lan (77-253-148-103.adsl.inetia.pl [77.253.148.103]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: mgorny) by smtp.gentoo.org (Postfix) with ESMTPSA id 8ABEA33DA02; Fri, 11 Jan 2013 21:03:49 +0000 (UTC) From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org> To: gentoo-python@lists.gentoo.org Cc: python@gentoo.org, hasufell@gentoo.org, =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org> Subject: [gentoo-python] [PATCH 1/2] Pass custom arguments to esetup.py before the 'build' set. Date: Fri, 11 Jan 2013 22:03:52 +0100 Message-Id: <1357938233-1810-1-git-send-email-mgorny@gentoo.org> X-Mailer: git-send-email 1.8.1 Precedence: bulk List-Post: <mailto:gentoo-python@lists.gentoo.org> List-Help: <mailto:gentoo-python+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-python+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-python+subscribe@lists.gentoo.org> List-Id: Discussions centering around the Python ecosystem in Gentoo Linux <gentoo-python.gentoo.org> X-BeenThere: gentoo-python@gentoo.org X-BeenThere: gentoo-python@lists.gentoo.org X-Archives-Salt: b7a7aba9-4a18-4a84-ab1b-2a69e804416d X-Archives-Hash: c5d0d138ba3cb466d4e94bdd3648e05f This is cleaner, and also permits passing global setup.py options. --- gx86/eclass/distutils-r1.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gx86/eclass/distutils-r1.eclass b/gx86/eclass/distutils-r1.eclass index 8156a36..1958b1a 100644 --- a/gx86/eclass/distutils-r1.eclass +++ b/gx86/eclass/distutils-r1.eclass @@ -175,13 +175,13 @@ DEPEND=${PYTHON_DEPS} esetup.py() { debug-print-function ${FUNCNAME} "${@}" - local args=() + local add_args=() if [[ ! ${DISTUTILS_IN_SOURCE_BUILD} ]]; then if [[ ! ${BUILD_DIR} ]]; then die 'Out-of-source build requested, yet BUILD_DIR unset.' fi - args+=( + add_args+=( build --build-base "${BUILD_DIR}" # using a single directory for them helps us export ${PYTHONPATH} @@ -192,7 +192,7 @@ esetup.py() { fi set -- "${PYTHON:-python}" setup.py \ - "${args[@]}" "${mydistutilsargs[@]}" "${@}" + "${mydistutilsargs[@]}" "${@}" "${add_args[@]}" echo "${@}" >&2 "${@}" || die -- 1.8.1