Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/winpdb/
Date: Sat, 03 Sep 2016 15:52:30
Message-Id: 1472917937.a3dd76f80f60c9718e3ae93020e886b7d62c8d61.floppym@gentoo
1 commit: a3dd76f80f60c9718e3ae93020e886b7d62c8d61
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 3 15:52:17 2016 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 3 15:52:17 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3dd76f8
7
8 dev-python/winpdb: remove old
9
10 Package-Manager: portage-2.3.0_p24
11
12 dev-python/winpdb/winpdb-1.4.8.ebuild | 40 -----------------------------------
13 1 file changed, 40 deletions(-)
14
15 diff --git a/dev-python/winpdb/winpdb-1.4.8.ebuild b/dev-python/winpdb/winpdb-1.4.8.ebuild
16 deleted file mode 100644
17 index 0ca7554..00000000
18 --- a/dev-python/winpdb/winpdb-1.4.8.ebuild
19 +++ /dev/null
20 @@ -1,40 +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 -PYTHON_DEPEND="*"
27 -SUPPORT_PYTHON_ABIS="1"
28 -RESTRICT_PYTHON_ABIS="*-jython"
29 -
30 -inherit distutils
31 -
32 -DESCRIPTION="Graphical Python debugger"
33 -HOMEPAGE="http://winpdb.org/ https://code.google.com/p/winpdb/ https://pypi.python.org/pypi/winpdb"
34 -SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz"
35 -
36 -LICENSE="GPL-2"
37 -SLOT="0"
38 -KEYWORDS="amd64 ~ia64 x86"
39 -IUSE="+wxwidgets"
40 -
41 -DEPEND=">=dev-python/pycrypto-2.0.1
42 - wxwidgets? ( dev-python/wxpython:2.8 )"
43 -RDEPEND="${DEPEND}"
44 -
45 -src_install() {
46 - distutils_src_install
47 -
48 - if use wxwidgets; then
49 - PYTHON_MODNAME="rpdb2.py winpdb.py"
50 - else
51 - PYTHON_MODNAME="rpdb2.py"
52 -
53 - rm -f "${ED}usr/bin/winpdb"*
54 -
55 - delete_winpdb() {
56 - rm -f "${ED}$(python_get_sitedir)/winpdb.py"
57 - }
58 - python_execute_function -q delete_winpdb
59 - fi
60 -}