Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyfltk/
Date: Wed, 23 Sep 2015 13:04:37
Message-Id: 1443013470.b37aca6a9ca8a3ee051f2ecd7e1c7e5f7e63657c.jlec@gentoo
1 commit: b37aca6a9ca8a3ee051f2ecd7e1c7e5f7e63657c
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 23 13:00:58 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 23 13:04:30 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b37aca6a
7
8 dev-python/pyfltk: Drop old
9
10 Package-Manager: portage-2.2.21
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/pyfltk/pyfltk-1.3.0-r1.ebuild | 46 --------------------------------
14 1 file changed, 46 deletions(-)
15
16 diff --git a/dev-python/pyfltk/pyfltk-1.3.0-r1.ebuild b/dev-python/pyfltk/pyfltk-1.3.0-r1.ebuild
17 deleted file mode 100644
18 index 6cbe1a8..0000000
19 --- a/dev-python/pyfltk/pyfltk-1.3.0-r1.ebuild
20 +++ /dev/null
21 @@ -1,46 +0,0 @@
22 -# Copyright 1999-2015 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -# FIXME: MakeSwig.py execution should be made work from pyfltk-1.1.5.ebuild
27 -
28 -EAPI=5
29 -PYTHON_COMPAT=( python2_7 )
30 -
31 -inherit distutils-r1 flag-o-matic
32 -
33 -MY_P=pyFltk-${PV}
34 -
35 -DESCRIPTION="Python interface to Fltk library"
36 -HOMEPAGE="http://pyfltk.sourceforge.net/"
37 -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
38 -
39 -LICENSE="LGPL-2"
40 -SLOT="0"
41 -KEYWORDS="amd64 arm ppc ppc64 x86"
42 -IUSE="doc"
43 -
44 -DEPEND=">=x11-libs/fltk-1.3.0:1[opengl]"
45 -RDEPEND="${DEPEND}"
46 -
47 -S=${WORKDIR}/${MY_P}
48 -
49 -python_prepare_all() {
50 - local PATCHES=(
51 - "${FILESDIR}"/${P}-linux-3.x-detection.patch
52 - )
53 -
54 - # Disable installation of documentation and tests.
55 - sed -i -e '/package_data=/d' setup.py || die
56 -
57 - distutils-r1_python_prepare_all
58 -}
59 -
60 -python_configure_all() {
61 - append-flags -fno-strict-aliasing
62 -}
63 -
64 -python_install_all() {
65 - use doc && local HTML_DOCS=( fltk/docs/. )
66 - distutils-r1_python_install_all
67 -}