summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2019-04-08 21:16:15 +0200
committerDavid Seifert <soap@gentoo.org>2019-04-08 21:16:15 +0200
commitf8c3aafd6707d568ea198a8f4c7fa49ead91fbb8 (patch)
tree873fc2ee297cdba7c4017e2c54ae6dbbeeb446c0
parentdev-python/pyml: [QA] Call distutils-r1_python_install_all (diff)
downloadgentoo-f8c3aafd.tar.gz
gentoo-f8c3aafd.tar.bz2
gentoo-f8c3aafd.zip
dev-python/pyml: Remove old
Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: David Seifert <soap@gentoo.org>
-rw-r--r--dev-python/pyml/Manifest1
-rw-r--r--dev-python/pyml/pyml-0.7.13.2-r1.ebuild34
2 files changed, 0 insertions, 35 deletions
diff --git a/dev-python/pyml/Manifest b/dev-python/pyml/Manifest
index 7beaab67509e..aaabcca735c8 100644
--- a/dev-python/pyml/Manifest
+++ b/dev-python/pyml/Manifest
@@ -1,2 +1 @@
-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
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/*
-}