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: dev-python/pip/
Date: Wed, 09 Jun 2021 20:54:10
Message-Id: 1623272041.385cc41fa061321cca78342bc7bfe8b6a4af2f06.mgorny@gentoo
1 commit: 385cc41fa061321cca78342bc7bfe8b6a4af2f06
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 9 20:53:35 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 9 20:54:01 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=385cc41f
7
8 dev-python/pip: Correct pushd/popd redirects
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pip/pip-21.1.2-r1.ebuild | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/dev-python/pip/pip-21.1.2-r1.ebuild b/dev-python/pip/pip-21.1.2-r1.ebuild
16 index 69f4adb26c5..6dddd21d4f6 100644
17 --- a/dev-python/pip/pip-21.1.2-r1.ebuild
18 +++ b/dev-python/pip/pip-21.1.2-r1.ebuild
19 @@ -68,9 +68,9 @@ python_prepare_all() {
20 cp "${DISTDIR}"/{${SETUPTOOLS_WHL},${WHEEL_WHL}} \
21 tests/data/common_wheels/ || die
22
23 - pushd "${WORKDIR}/virtualenv-${VENV_PV}" 2>/dev/null || die
24 + pushd "${WORKDIR}/virtualenv-${VENV_PV}" >/dev/null || die
25 eapply "${FILESDIR}/virtualenv-${VENV_PV}-py310.patch"
26 - popd 2>/dev/null || die
27 + popd >/dev/null || die
28 fi
29 }
30
31 @@ -99,9 +99,9 @@ python_test() {
32 )
33
34 distutils_install_for_testing
35 - pushd "${WORKDIR}/virtualenv-${VENV_PV}" 2>/dev/null || die
36 + pushd "${WORKDIR}/virtualenv-${VENV_PV}" >/dev/null || die
37 distutils_install_for_testing
38 - popd 2>/dev/null || die
39 + popd >/dev/null || die
40
41 local -x GENTOO_PIP_TESTING=1 \
42 PATH="${TEST_DIR}/scripts:${PATH}" \