Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/scimath/
Date: Mon, 15 Apr 2019 07:37:25
Message-Id: 1555313835.7ade47f671250261925de5741892d1f0ed1450aa.zlogene@gentoo
1 commit: 7ade47f671250261925de5741892d1f0ed1450aa
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 15 07:37:15 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 15 07:37:15 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ade47f6
7
8 dev-python/scimath: remove last rited package
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11
12 dev-python/scimath/Manifest | 1 -
13 dev-python/scimath/metadata.xml | 16 ----------
14 dev-python/scimath/scimath-4.1.2-r1.ebuild | 47 ------------------------------
15 3 files changed, 64 deletions(-)
16
17 diff --git a/dev-python/scimath/Manifest b/dev-python/scimath/Manifest
18 deleted file mode 100644
19 index c1465226631..00000000000
20 --- a/dev-python/scimath/Manifest
21 +++ /dev/null
22 @@ -1 +0,0 @@
23 -DIST scimath-4.1.2.tar.gz 119399 BLAKE2B 8f316ac90ec167d9563dafcdb0acbe2dae8ecea92a5c9c2dd126a0278bf3820c7bb87d7e9e597ed5a0c9ed8d154b7883cf31a6360adbb41c3654c8b3c10d5be8 SHA512 2ceeeca5402da2b8745e0af5dac6a470c47b80529ec56aeb758cea815785be8a38b4ee3a052780c532b474acc4bf36474dd67c802a94971f3010148987c24257
24
25 diff --git a/dev-python/scimath/metadata.xml b/dev-python/scimath/metadata.xml
26 deleted file mode 100644
27 index 80c1e798f10..00000000000
28 --- a/dev-python/scimath/metadata.xml
29 +++ /dev/null
30 @@ -1,16 +0,0 @@
31 -<?xml version="1.0" encoding="UTF-8"?>
32 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 -<pkgmetadata>
34 - <maintainer type="project">
35 - <email>sci@g.o</email>
36 - <name>Gentoo Science Project</name>
37 - </maintainer>
38 - <longdescription lang="en">
39 - The SciMath project from the Enthought Tool Suite includes
40 - packages to support scientific and mathematical calculations,
41 - beyond the capabilities offered by SciPy:
42 - * enthought.interpolate
43 - * enthought.mathematics
44 - * enthought.units
45 - </longdescription>
46 -</pkgmetadata>
47
48 diff --git a/dev-python/scimath/scimath-4.1.2-r1.ebuild b/dev-python/scimath/scimath-4.1.2-r1.ebuild
49 deleted file mode 100644
50 index c67376ac54e..00000000000
51 --- a/dev-python/scimath/scimath-4.1.2-r1.ebuild
52 +++ /dev/null
53 @@ -1,47 +0,0 @@
54 -# Copyright 1999-2018 Gentoo Foundation
55 -# Distributed under the terms of the GNU General Public License v2
56 -
57 -EAPI=5
58 -
59 -PYTHON_COMPAT=( python2_7 )
60 -
61 -inherit distutils-r1 virtualx
62 -
63 -DESCRIPTION="Enthought Tool Suite: Scientific and mathematical tools"
64 -HOMEPAGE="http://docs.enthought.com/scimath/
65 - https://github.com/enthought/scimath
66 - https://pypi.org/project/scimath/"
67 -SRC_URI="http://www.enthought.com/repo/ets/${P}.tar.gz"
68 -
69 -LICENSE="BSD"
70 -SLOT="0"
71 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
72 -IUSE="doc test"
73 -DISTUTILS_IN_SOURCE_BUILD=1
74 -
75 -RDEPEND=">=dev-python/traits-4.1[${PYTHON_USEDEP}]
76 - >=dev-python/traitsui-4.1[${PYTHON_USEDEP}]
77 - sci-libs/scipy[${PYTHON_USEDEP}]"
78 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
79 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
80 - test? (
81 - ${RDEPEND}
82 - media-fonts/font-cursor-misc
83 - media-fonts/font-misc-misc
84 - x11-apps/xhost
85 - )"
86 -
87 -python_compile_all() {
88 - use doc && emake -C docs html
89 -}
90 -
91 -python_test() {
92 - # ONE test assumes PYTHONPATH in its own dir!!!
93 - PYTHONPATH=build/lib/:build/lib/scimath/interpolate/
94 - VIRTUALX_COMMAND="nosetests" virtualmake
95 -}
96 -
97 -python_install_all() {
98 - use doc && HTML_DOCS=( docs/build/html/. )
99 - distutils-r1_python_install_all
100 -}