Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-dsv/, dev-python/python-dsv/files/
Date: Tue, 29 Nov 2016 20:45:51
Message-Id: 1480452333.b276ca040171efcc6ff1f707f071cb6afe9e8826.pacho@gentoo
1 commit: b276ca040171efcc6ff1f707f071cb6afe9e8826
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 29 20:34:31 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 29 20:45:33 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b276ca04
7
8 dev-python/python-dsv: Drop old
9
10 Package-Manager: portage-2.3.2
11
12 .../files/python-dsv-1.4.1-wxversion.patch | 16 ------------
13 dev-python/python-dsv/python-dsv-1.4.1-r1.ebuild | 29 ----------------------
14 2 files changed, 45 deletions(-)
15
16 diff --git a/dev-python/python-dsv/files/python-dsv-1.4.1-wxversion.patch b/dev-python/python-dsv/files/python-dsv-1.4.1-wxversion.patch
17 deleted file mode 100644
18 index cadc569..00000000
19 --- a/dev-python/python-dsv/files/python-dsv-1.4.1-wxversion.patch
20 +++ /dev/null
21 @@ -1,16 +0,0 @@
22 ---- a/DSV/DSV.py
23 -+++ b/DSV/DSV.py
24 -@@ -134,6 +134,13 @@
25 - os.putenv('LANG', 'C')
26 -
27 - try:
28 -+ import wxversion
29 -+ wxversion.select("2.8")
30 -+except Exception, e:
31 -+ print >> sys.stderr, "%s: wxPython 2.8 not installed." %e
32 -+ sys.exit(1)
33 -+
34 -+try:
35 - from wxPython import wx, grid
36 - except ImportError:
37 - wx = None
38
39 diff --git a/dev-python/python-dsv/python-dsv-1.4.1-r1.ebuild b/dev-python/python-dsv/python-dsv-1.4.1-r1.ebuild
40 deleted file mode 100644
41 index 4501ca7..00000000
42 --- a/dev-python/python-dsv/python-dsv-1.4.1-r1.ebuild
43 +++ /dev/null
44 @@ -1,29 +0,0 @@
45 -# Copyright 1999-2014 Gentoo Foundation
46 -# Distributed under the terms of the GNU General Public License v2
47 -# $Id$
48 -
49 -EAPI=5
50 -
51 -PYTHON_COMPAT=( python2_7 )
52 -
53 -inherit distutils-r1 eutils
54 -
55 -DESCRIPTION="Python module for importing and exporting DSV files"
56 -HOMEPAGE="http://python-dsv.sourceforge.net/"
57 -SRC_URI="mirror://sourceforge/${PN}/DSV-${PV}.tar.gz"
58 -
59 -LICENSE="CNRI"
60 -SLOT="0"
61 -KEYWORDS="~amd64 ~x86"
62 -IUSE=""
63 -
64 -RDEPEND="dev-python/wxpython:2.8[${PYTHON_USEDEP}]"
65 -DEPEND="${RDEPEND}"
66 -
67 -S=${WORKDIR}/DSV-${PV}
68 -
69 -python_prepare_all() {
70 - epatch "${FILESDIR}"/${P}-wxversion.patch
71 -
72 - distutils-r1_python_prepare_all
73 -}