summaryrefslogtreecommitdiff
path: root/dev-python/pyml
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
commit21435953e16cda318a82334ddbadb3b5c36d9ea7 (patch)
treee1810a4b135afce04b34862ef0fab2bfaeb8aeca /dev-python/pyml
parent7bc9c63c9da678a7e6fceb095d56c634afd22c56 (diff)
gentoo resync : 15.01.2020
Diffstat (limited to 'dev-python/pyml')
-rw-r--r--dev-python/pyml/Manifest3
-rw-r--r--dev-python/pyml/metadata.xml15
-rw-r--r--dev-python/pyml/pyml-0.7.13.3.ebuild40
3 files changed, 0 insertions, 58 deletions
diff --git a/dev-python/pyml/Manifest b/dev-python/pyml/Manifest
deleted file mode 100644
index 15ba64c412e8..000000000000
--- a/dev-python/pyml/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST PyML-0.7.13.3.tar.gz 5896911 BLAKE2B 740ee900fe2feb5105ae5f892c5def74881c45863e06dd3f17b9ef0c4b7052c42a3b854aa808dcbe2129c7ecef1bb956982853f5071abf288564c07ca7b29628 SHA512 9933be07122e6fc7ece017b28fbc895cd2ef2778d8d5144c7f084ddd2090e054e37a581341371450fd7c28713ed4c725e229a81daad571150f476945750a51ae
-EBUILD pyml-0.7.13.3.ebuild 840 BLAKE2B 66b942d26db7a410cdab0f7dbe0991ccf288b545be946aa33137b1079aedddf051e3203d27e695845af45ed6555a205d4a1a80a1f97d172fdb14734edd5baf40 SHA512 2ad21004ed4defb3c61ff63fa5430ef47c1d044b0097787234473c8a811274e4314cfbe3e85e75041977ce3e56f2cfeaca02be3874f47e4129fb34cc0756fedb
-MISC metadata.xml 498 BLAKE2B f5dbaca4fbaa5296de8dcdf0eac3e995b1a21d7b64b660ba093237b8912a4d0cb4f56753680f53f42ccef6b22f29622ceaadd1dc71241ed220a7c15fffbb8c69 SHA512 d549cc55fc1415a6bc7df6f078d279a9ede673f74b8bfe1867627a40d205ac91e343dae803a6b154e6fccdd11d788c78b76a87fc04dd32043f192992778a91ec
diff --git a/dev-python/pyml/metadata.xml b/dev-python/pyml/metadata.xml
deleted file mode 100644
index 16161c4accf0..000000000000
--- a/dev-python/pyml/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci@gentoo.org</email>
- <name>Gentoo Science Project</name>
- </maintainer>
- <longdescription lang="en">
- PyML is a flexible Python framework for using various classification
- methods including Support Vector Machines (SVM).
- </longdescription>
- <upstream>
- <remote-id type="sourceforge">pyml</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pyml/pyml-0.7.13.3.ebuild b/dev-python/pyml/pyml-0.7.13.3.ebuild
deleted file mode 100644
index 5c72d12d6990..000000000000
--- a/dev-python/pyml/pyml-0.7.13.3.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-MYP=PyML-${PV}
-
-DESCRIPTION="Python machine learning package"
-HOMEPAGE="http://pyml.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${MYP}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc"
-
-RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]"
-
-S="${WORKDIR}/${MYP}"
-
-python_test() {
- pushd data >/dev/null || die
- "${EPYTHON}" -c "from PyML.demo import pyml_test; pyml_test.test('svm')" || die "tests failed"
- popd >/dev/null || die
-}
-
-python_install_all() {
- if use doc; then
- dodoc doc/tutorial.pdf
- HTML_DOCS=( doc/autodoc/. )
- fi
-
- distutils-r1_python_install_all
-}