Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/mlpy/
Date: Sun, 12 Jan 2020 17:52:08
Message-Id: 1578851520.25c70122b1f67e934d5b1670ad4ab5764395a860.zlogene@gentoo
1 commit: 25c70122b1f67e934d5b1670ad4ab5764395a860
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 12 17:51:53 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 12 17:52:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25c70122
7
8 sci-mathematics/mlpy: remove last-rited pkg
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11
12 sci-mathematics/mlpy/Manifest | 1 -
13 sci-mathematics/mlpy/metadata.xml | 17 -----------------
14 sci-mathematics/mlpy/mlpy-3.5.0.ebuild | 34 ----------------------------------
15 3 files changed, 52 deletions(-)
16
17 diff --git a/sci-mathematics/mlpy/Manifest b/sci-mathematics/mlpy/Manifest
18 deleted file mode 100644
19 index ced499438f6..00000000000
20 --- a/sci-mathematics/mlpy/Manifest
21 +++ /dev/null
22 @@ -1 +0,0 @@
23 -DIST mlpy-3.5.0.tar.gz 1961206 BLAKE2B 11c72a660af7c8c0498884c2745e069f5752e49e4571bb1e103c3588bab99eda5da593ad50812b07f0cd320791677960da5b2e139551b7fe80770c11ecfc06e5 SHA512 b6b3cf6e1d47fe58d68da81752ce9324e78a97c9fc341c93db7b2ea0c5d1730fae9535b69671fda13cb012ab0173951768c1601f2b4ad678a6065c018b34eb0f
24
25 diff --git a/sci-mathematics/mlpy/metadata.xml b/sci-mathematics/mlpy/metadata.xml
26 deleted file mode 100644
27 index a878c2ab46a..00000000000
28 --- a/sci-mathematics/mlpy/metadata.xml
29 +++ /dev/null
30 @@ -1,17 +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 - mlpy provides a wide range of state-of-the-art machine learning
40 - methods for supervised and unsupervised problems and it is aimed at
41 - finding a reasonable compromise among modularity, maintainability,
42 - reproducibility, usability and efficiency.
43 -</longdescription>
44 - <upstream>
45 - <remote-id type="sourceforge">mlpy</remote-id>
46 - </upstream>
47 -</pkgmetadata>
48
49 diff --git a/sci-mathematics/mlpy/mlpy-3.5.0.ebuild b/sci-mathematics/mlpy/mlpy-3.5.0.ebuild
50 deleted file mode 100644
51 index c25423df83a..00000000000
52 --- a/sci-mathematics/mlpy/mlpy-3.5.0.ebuild
53 +++ /dev/null
54 @@ -1,34 +0,0 @@
55 -# Copyright 1999-2015 Gentoo Foundation
56 -# Distributed under the terms of the GNU General Public License v2
57 -
58 -EAPI=5
59 -
60 -PYTHON_COMPAT=( python2_7 )
61 -
62 -inherit distutils-r1
63 -
64 -DESCRIPTION="High-performance Python library for predictive modeling"
65 -HOMEPAGE="https://mlpy.fbk.eu/"
66 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
67 -
68 -LICENSE="GPL-3"
69 -SLOT="0"
70 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
71 -IUSE="doc"
72 -
73 -RDEPEND="
74 - >=sci-libs/gsl-1.11
75 - >=dev-python/numpy-1.3[${PYTHON_USEDEP}]
76 - >=sci-libs/scipy-0.7[${PYTHON_USEDEP}]"
77 -DEPEND="${RDEPEND}
78 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
79 -
80 -python_install_all() {
81 - distutils-r1_python_install_all
82 - if use doc; then
83 - pushd docs 2>/dev/null || die
84 - emake html
85 - dohtml -r build/html/*
86 - popd 2>/dev/null || die
87 - fi
88 -}