Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sancho/
Date: Tue, 14 Feb 2017 23:53:19
Message-Id: 1487116348.ece6b2ad9c6e4a0705d0b06dce1143c03f02d6cb.mrueg@gentoo
1 commit: ece6b2ad9c6e4a0705d0b06dce1143c03f02d6cb
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 14 23:52:28 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 14 23:52:28 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ece6b2ad
7
8 dev-python/sancho: Remove old
9
10 Package-Manager: portage-2.3.3
11
12 dev-python/sancho/sancho-2.4.ebuild | 49 -------------------------------------
13 1 file changed, 49 deletions(-)
14
15 diff --git a/dev-python/sancho/sancho-2.4.ebuild b/dev-python/sancho/sancho-2.4.ebuild
16 deleted file mode 100644
17 index 4fb69f347f..0000000000
18 --- a/dev-python/sancho/sancho-2.4.ebuild
19 +++ /dev/null
20 @@ -1,49 +0,0 @@
21 -# Copyright 1999-2010 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI="3"
26 -SUPPORT_PYTHON_ABIS="1"
27 -
28 -inherit distutils
29 -
30 -MY_P="Sancho-${PV}"
31 -
32 -DESCRIPTION="Sancho is a unit testing framework"
33 -HOMEPAGE="http://www.mems-exchange.org/software/sancho/"
34 -SRC_URI="http://www.mems-exchange.org/software/files/${PN}/${MY_P}.tar.gz"
35 -
36 -LICENSE="CNRI"
37 -SLOT="0"
38 -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
39 -IUSE=""
40 -
41 -DEPEND=""
42 -RDEPEND=""
43 -
44 -S="${WORKDIR}/${MY_P}"
45 -
46 -DOCS="CHANGES.txt"
47 -
48 -src_test() {
49 - cd test
50 - testing() {
51 - local test test_failure test_failure_count=0
52 - for test in *.py; do
53 - test_failure="0"
54 - ebegin "Testing ${test}"
55 - PYTHONPATH="../build-${PYTHON_ABI}/lib" "$(PYTHON)" "${test}" > "${test}.output"
56 - grep -Eqv "^${test}: .*:$" "${test}.output" && test_failure="1"
57 - eend "${test_failure}"
58 - if [[ "${test_failure}" == "1" ]]; then
59 - ((test_failure_count++))
60 - eerror "Failure output for ${test}"
61 - cat "${test}.output"
62 - fi
63 - done
64 - if [[ "${test_failure_count}" -gt "0" ]]; then
65 - die "${test_failure_count} tests failed with Python ${PYTHON_ABI}"
66 - fi
67 - }
68 - python_execute_function testing
69 -}