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/cbor/
Date: Tue, 01 Dec 2020 10:32:12
Message-Id: 1606818714.735795bc8860ec7e29c56990792464c74cc287dc.mgorny@gentoo
1 commit: 735795bc8860ec7e29c56990792464c74cc287dc
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 30 20:00:24 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 1 10:31:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=735795bc
7
8 dev-python/cbor: Remove unnecessary dift
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/cbor/cbor-1.0.0-r1.ebuild | 13 ++++---------
13 1 file changed, 4 insertions(+), 9 deletions(-)
14
15 diff --git a/dev-python/cbor/cbor-1.0.0-r1.ebuild b/dev-python/cbor/cbor-1.0.0-r1.ebuild
16 index 28ec5ba34fc..cb0dcf6748e 100644
17 --- a/dev-python/cbor/cbor-1.0.0-r1.ebuild
18 +++ b/dev-python/cbor/cbor-1.0.0-r1.ebuild
19 @@ -28,13 +28,8 @@ PATCHES=(
20 )
21
22 python_test() {
23 - distutils_install_for_testing
24 - PYTHONPATH="${BUILD_DIR}/lib" \
25 - "${PYTHON:-python}" cbor/tests/test_cbor.py || die "Testsuite failed under ${EPYTHON}"
26 - PYTHONPATH="${BUILD_DIR}/lib" \
27 - "${PYTHON:-python}" cbor/tests/test_objects.py || die "Testsuite failed under ${EPYTHON}"
28 - PYTHONPATH="${BUILD_DIR}/lib" \
29 - "${PYTHON:-python}" cbor/tests/test_usage.py || die "Testsuite failed under ${EPYTHON}"
30 - PYTHONPATH="${BUILD_DIR}/lib" \
31 - "${PYTHON:-python}" cbor/tests/test_vectors.py || die "Testsuite failed under ${EPYTHON}"
32 + "${EPYTHON}" cbor/tests/test_cbor.py || die "Testsuite failed under ${EPYTHON}"
33 + "${EPYTHON}" cbor/tests/test_objects.py || die "Testsuite failed under ${EPYTHON}"
34 + "${EPYTHON}" cbor/tests/test_usage.py || die "Testsuite failed under ${EPYTHON}"
35 + "${EPYTHON}" cbor/tests/test_vectors.py || die "Testsuite failed under ${EPYTHON}"
36 }