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/pygsl/
Date: Mon, 05 Sep 2016 16:37:41
Message-Id: 1473093443.ef15b860e7bfd03396ee4e5bee5991ac310bf00e.mrueg@gentoo
1 commit: ef15b860e7bfd03396ee4e5bee5991ac310bf00e
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 5 16:37:23 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 5 16:37:23 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef15b860
7
8 dev-python/pygsl: Remove old
9
10 Package-Manager: portage-2.3.0
11
12 dev-python/pygsl/pygsl-0.9.5.ebuild | 38 -------------------------------------
13 1 file changed, 38 deletions(-)
14
15 diff --git a/dev-python/pygsl/pygsl-0.9.5.ebuild b/dev-python/pygsl/pygsl-0.9.5.ebuild
16 deleted file mode 100644
17 index 4af265c..00000000
18 --- a/dev-python/pygsl/pygsl-0.9.5.ebuild
19 +++ /dev/null
20 @@ -1,38 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=4
26 -SUPPORT_PYTHON_ABIS="1"
27 -RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-* *-jython"
28 -
29 -inherit distutils
30 -
31 -DESCRIPTION="Python interface for the GNU scientific library (gsl)"
32 -HOMEPAGE="http://pygsl.sourceforge.net/"
33 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
34 -
35 -SLOT="0"
36 -LICENSE="GPL-2"
37 -KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
38 -IUSE="examples"
39 -
40 -DEPEND="sci-libs/gsl
41 - dev-python/numpy"
42 -RDEPEND="${DEPEND}"
43 -
44 -src_test() {
45 - testing() {
46 - cd "${S}/tests"
47 - PYTHONPATH=$(ls -d ../build-${PYTHON_ABI}/lib*) "$(PYTHON)" run_test.py
48 - }
49 - python_execute_function testing
50 -}
51 -
52 -src_install() {
53 - distutils_src_install
54 - if use examples; then
55 - insinto /usr/share/doc/${PF}
56 - doins -r examples || die "install examples failed"
57 - fi
58 -}