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/subunit/
Date: Wed, 03 May 2017 07:38:00
Message-Id: 1493797052.bc8fe70d53f045b283ab1e2706eca66f68b91d39.mgorny@gentoo
1 commit: bc8fe70d53f045b283ab1e2706eca66f68b91d39
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 3 06:26:57 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 3 07:37:32 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc8fe70d
7
8 dev-python/subunit: Clean old versions up
9
10 dev-python/subunit/Manifest | 1 -
11 dev-python/subunit/subunit-1.1.0.ebuild | 90 ---------------------------------
12 2 files changed, 91 deletions(-)
13
14 diff --git a/dev-python/subunit/Manifest b/dev-python/subunit/Manifest
15 index 8b829ad899c..5221657f749 100644
16 --- a/dev-python/subunit/Manifest
17 +++ b/dev-python/subunit/Manifest
18 @@ -1,2 +1 @@
19 -DIST subunit-1.1.0.tar.gz 441946 SHA256 4869a5bec96b7b4e760d053f842d80548008740cda1a7efbb9053063ee818a51 SHA512 11aaa8f2ae04232623fbfb7b9561aa15bddbc55201a3a16eea1319a076de3417977590c57bb7ab0bbd86b321b203241ba5ea8050932759aeb3f3ed71b723a98b WHIRLPOOL 2705fcb98d0b67b5d2cddff87095a9b65782467f3e9b84f956ac29c85c2995881dcd63468a144277fb76b7adfdbbb2ecdc36eae8413886a72028e3565edbdf47
20 DIST subunit-1.2.0.tar.gz 460532 SHA256 27f0561297a7d56d85a8f5491f47e44303d0bb1d99c5627486774ea1bcb3d5c3 SHA512 f6559fd771ad0732985230d11a9a8326ef35c817b62d1f50dc332f0032f7b08559a46d2534983b7d3964e45682ac49b3e348581ee0983861390abcd4ec20459c WHIRLPOOL c30b4a2c9ab17f49f87e206fe5833ae564452b99af447f8c4cbf969b2f2dd96e482fc583e84264be815b051b1bd12e6c132cd779c88d0d68da53956fef0b25b7
21
22 diff --git a/dev-python/subunit/subunit-1.1.0.ebuild b/dev-python/subunit/subunit-1.1.0.ebuild
23 deleted file mode 100644
24 index fcd0955cc05..00000000000
25 --- a/dev-python/subunit/subunit-1.1.0.ebuild
26 +++ /dev/null
27 @@ -1,90 +0,0 @@
28 -# Copyright 1999-2016 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=5
32 -
33 -PYTHON_COMPAT=( python2_7 python3_{4,5} pypy pypy3 )
34 -
35 -inherit distutils-r1 eutils multilib-minimal
36 -
37 -DESCRIPTION="A streaming protocol for test results"
38 -HOMEPAGE="https://launchpad.net/subunit https://pypi.python.org/pypi/python-subunit"
39 -SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
40 -
41 -LICENSE="Apache-2.0 BSD"
42 -SLOT="0"
43 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
44 -IUSE="static-libs test"
45 -
46 -RDEPEND="
47 - >=dev-python/testtools-0.9.34[${PYTHON_USEDEP}]
48 - dev-python/extras[${PYTHON_USEDEP}]
49 - dev-lang/perl:=
50 -"
51 -DEPEND="${RDEPEND}
52 - dev-python/setuptools[${PYTHON_USEDEP}]
53 - >=dev-libs/check-0.9.11[${MULTILIB_USEDEP}]
54 - >=dev-util/cppunit-1.13.2[${MULTILIB_USEDEP}]
55 - >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
56 - test? ( dev-python/testscenarios[${PYTHON_USEDEP}] )"
57 -
58 -# Take out rogue & trivial failing tests that exit the suite before it even gets started
59 -# The removed class in fact works fine in py3 and fails with py2.7 & pupu
60 -# The setu to restrict this patch is just those 2 is not worth it.
61 -PATCHES=( "${FILESDIR}"/1.0.0-tests.patch )
62 -
63 -src_prepare() {
64 - sed -i -e 's/os.chdir(os.path.dirname(__file__))//' setup.py || die
65 -
66 - # Install perl modules in vendor_perl, bug 534654.
67 - export INSTALLDIRS=vendor
68 -
69 - # needed for perl modules
70 - distutils-r1_src_prepare
71 - multilib_copy_sources
72 -}
73 -
74 -multilib_src_configure() {
75 - ECONF_SOURCE=${S} \
76 - econf \
77 - --enable-shared \
78 - $(use_enable static-libs static)
79 -}
80 -
81 -multilib_src_compile() {
82 - default
83 - multilib_is_native_abi && distutils-r1_src_compile
84 -}
85 -
86 -python_test() {
87 - local -x PATH="${PWD}/shell/share:${PATH}"
88 - local -x PYTHONPATH=python
89 - # Following tests are known to fail in py2.7 & pypy. They pass under py3.
90 - # DO NOT re-file
91 - # test_add_error test_add_error_details test_add_expected_failure
92 - # test_add_expected_failure_details test_add_failure test_add_failure
93 - # https://bugs.launchpad.net/subunit/+bug/1436686
94 -
95 - "${PYTHON}" -m testtools.run all_tests.test_suite || die "Testing failed with ${EPYTHON}"
96 -}
97 -
98 -multilib_src_test() {
99 - multilib_is_native_abi && distutils-r1_src_test
100 -}
101 -
102 -multilib_src_install() {
103 - local targets=(
104 - install-include_subunitHEADERS
105 - install-pcdataDATA
106 - install-exec-local
107 - install-libLTLIBRARIES
108 - )
109 - emake DESTDIR="${D}" "${targets[@]}"
110 -
111 - multilib_is_native_abi && distutils-r1_src_install
112 -}
113 -
114 -multilib_src_install_all() {
115 - einstalldocs
116 - prune_libtool_files
117 -}