summaryrefslogtreecommitdiff
path: root/dev-python/pyml
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-python/pyml
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-python/pyml')
-rw-r--r--dev-python/pyml/Manifest5
-rw-r--r--dev-python/pyml/metadata.xml15
-rw-r--r--dev-python/pyml/pyml-0.7.13.2-r1.ebuild34
-rw-r--r--dev-python/pyml/pyml-0.7.13.3.ebuild34
4 files changed, 0 insertions, 88 deletions
diff --git a/dev-python/pyml/Manifest b/dev-python/pyml/Manifest
deleted file mode 100644
index 4e94d2e6bfda..000000000000
--- a/dev-python/pyml/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-DIST PyML-0.7.13.2.tar.gz 5880930 BLAKE2B 1fdf929ff8d2d86206e214c10064fd744d1c7890550e489b38a7eadc1ae790cc4a8ec6acc88b341dc6cab74f31afdba57edeac427abe104dbcc3f25b532a3fa8 SHA512 8a642cfc8744098e145cf6940c606f53034c3a04aa9665e23bfd30bbd4098bcceaf10508ea9c3b3be40f1b9d964aea793c7e20d4b48eb66656b5fd6b200fca5c
-DIST PyML-0.7.13.3.tar.gz 5896911 BLAKE2B 740ee900fe2feb5105ae5f892c5def74881c45863e06dd3f17b9ef0c4b7052c42a3b854aa808dcbe2129c7ecef1bb956982853f5071abf288564c07ca7b29628 SHA512 9933be07122e6fc7ece017b28fbc895cd2ef2778d8d5144c7f084ddd2090e054e37a581341371450fd7c28713ed4c725e229a81daad571150f476945750a51ae
-EBUILD pyml-0.7.13.2-r1.ebuild 780 BLAKE2B 4d6eda34685f01e9c23b503cb75f340ad6a6d7ba4b16b5290de71c61804b3cd0ac49e75e28a4fbc9c9248bc3d188a9c41eaff227cfed845627465548c8e15f6b SHA512 6883925d901ce3fa38b53b673894dc7ec9f239d94cb4f0cf218293fe29175733bd3b087af7c498766de51eb8512cd95e309051e9428e3a9013c6e3674b18f680
-EBUILD pyml-0.7.13.3.ebuild 780 BLAKE2B 4d6eda34685f01e9c23b503cb75f340ad6a6d7ba4b16b5290de71c61804b3cd0ac49e75e28a4fbc9c9248bc3d188a9c41eaff227cfed845627465548c8e15f6b SHA512 6883925d901ce3fa38b53b673894dc7ec9f239d94cb4f0cf218293fe29175733bd3b087af7c498766de51eb8512cd95e309051e9428e3a9013c6e3674b18f680
-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.2-r1.ebuild b/dev-python/pyml/pyml-0.7.13.2-r1.ebuild
deleted file mode 100644
index 04dbc22b1f09..000000000000
--- a/dev-python/pyml/pyml-0.7.13.2-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-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
- "${PYTHON}" -c "from PyML.demo import pyml_test; pyml_test.test('svm')" || die "tests failed"
- popd > /dev/null
-}
-
-python_install_all() {
- use doc && dodoc doc/tutorial.pdf && dohtml -r doc/autodoc/*
-}
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 04dbc22b1f09..000000000000
--- a/dev-python/pyml/pyml-0.7.13.3.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-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
- "${PYTHON}" -c "from PyML.demo import pyml_test; pyml_test.test('svm')" || die "tests failed"
- popd > /dev/null
-}
-
-python_install_all() {
- use doc && dodoc doc/tutorial.pdf && dohtml -r doc/autodoc/*
-}