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/webpy/
Date: Tue, 14 Feb 2017 23:54:18
Message-Id: 1487116421.c11070a9685fbd0ddf82d157723b6b4e1156ab0b.mrueg@gentoo
1 commit: c11070a9685fbd0ddf82d157723b6b4e1156ab0b
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 14 23:53:41 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 14 23:53:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c11070a9
7
8 dev-python/webpy: Remove old
9
10 Package-Manager: portage-2.3.3
11
12 dev-python/webpy/webpy-0.37.ebuild | 41 --------------------------------------
13 1 file changed, 41 deletions(-)
14
15 diff --git a/dev-python/webpy/webpy-0.37.ebuild b/dev-python/webpy/webpy-0.37.ebuild
16 deleted file mode 100644
17 index 294152b981..0000000000
18 --- a/dev-python/webpy/webpy-0.37.ebuild
19 +++ /dev/null
20 @@ -1,41 +0,0 @@
21 -# Copyright 1999-2012 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI="3"
26 -PYTHON_DEPEND="2"
27 -SUPPORT_PYTHON_ABIS="1"
28 -RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-* *-jython"
29 -
30 -inherit distutils
31 -
32 -MY_PN="web.py"
33 -
34 -DESCRIPTION="A small and simple web framework for Python"
35 -HOMEPAGE="http://www.webpy.org https://pypi.python.org/pypi/web.py"
36 -SRC_URI="http://www.webpy.org/static/${MY_PN}-${PV}.tar.gz"
37 -
38 -LICENSE="public-domain"
39 -SLOT="0"
40 -KEYWORDS="amd64 hppa x86 ~amd64-linux ~x86-linux"
41 -IUSE=""
42 -
43 -DEPEND=""
44 -RDEPEND=""
45 -
46 -S="${WORKDIR}/web.py-${PV}"
47 -
48 -PYTHON_MODNAME="web"
49 -
50 -src_test() {
51 - testing() {
52 - local return_status="0" test tests="db http net template utils"
53 - for test in ${tests}; do
54 - echo "Running doctests in ${test}.py..."
55 - "$(PYTHON)" web/${test}.py || return_status="$?"
56 - done
57 -
58 - return "${return_status}"
59 - }
60 - python_execute_function testing
61 -}