From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 327EE138350 for ; Sun, 12 Jan 2020 17:52:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63FF5E097A; Sun, 12 Jan 2020 17:52:07 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3CC8DE097A for ; Sun, 12 Jan 2020 17:52:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2D79A34DFCB for ; Sun, 12 Jan 2020 17:52:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 934568E for ; Sun, 12 Jan 2020 17:52:04 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1578851520.25c70122b1f67e934d5b1670ad4ab5764395a860.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/mlpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/mlpy/Manifest sci-mathematics/mlpy/metadata.xml sci-mathematics/mlpy/mlpy-3.5.0.ebuild X-VCS-Directories: sci-mathematics/mlpy/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 25c70122b1f67e934d5b1670ad4ab5764395a860 X-VCS-Branch: master Date: Sun, 12 Jan 2020 17:52:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8cd20150-d71c-45c6-aa37-7b79267b0fc8 X-Archives-Hash: 063bc6721947c8d11f55f4fae960fb5b commit: 25c70122b1f67e934d5b1670ad4ab5764395a860 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Jan 12 17:51:53 2020 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sun Jan 12 17:52:00 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25c70122 sci-mathematics/mlpy: remove last-rited pkg Signed-off-by: Mikle Kolyada gentoo.org> sci-mathematics/mlpy/Manifest | 1 - sci-mathematics/mlpy/metadata.xml | 17 ----------------- sci-mathematics/mlpy/mlpy-3.5.0.ebuild | 34 ---------------------------------- 3 files changed, 52 deletions(-) diff --git a/sci-mathematics/mlpy/Manifest b/sci-mathematics/mlpy/Manifest deleted file mode 100644 index ced499438f6..00000000000 --- a/sci-mathematics/mlpy/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST mlpy-3.5.0.tar.gz 1961206 BLAKE2B 11c72a660af7c8c0498884c2745e069f5752e49e4571bb1e103c3588bab99eda5da593ad50812b07f0cd320791677960da5b2e139551b7fe80770c11ecfc06e5 SHA512 b6b3cf6e1d47fe58d68da81752ce9324e78a97c9fc341c93db7b2ea0c5d1730fae9535b69671fda13cb012ab0173951768c1601f2b4ad678a6065c018b34eb0f diff --git a/sci-mathematics/mlpy/metadata.xml b/sci-mathematics/mlpy/metadata.xml deleted file mode 100644 index a878c2ab46a..00000000000 --- a/sci-mathematics/mlpy/metadata.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - sci@gentoo.org - Gentoo Science Project - - - mlpy provides a wide range of state-of-the-art machine learning - methods for supervised and unsupervised problems and it is aimed at - finding a reasonable compromise among modularity, maintainability, - reproducibility, usability and efficiency. - - - mlpy - - diff --git a/sci-mathematics/mlpy/mlpy-3.5.0.ebuild b/sci-mathematics/mlpy/mlpy-3.5.0.ebuild deleted file mode 100644 index c25423df83a..00000000000 --- a/sci-mathematics/mlpy/mlpy-3.5.0.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 - -DESCRIPTION="High-performance Python library for predictive modeling" -HOMEPAGE="https://mlpy.fbk.eu/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc" - -RDEPEND=" - >=sci-libs/gsl-1.11 - >=dev-python/numpy-1.3[${PYTHON_USEDEP}] - >=sci-libs/scipy-0.7[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" - -python_install_all() { - distutils-r1_python_install_all - if use doc; then - pushd docs 2>/dev/null || die - emake html - dohtml -r build/html/* - popd 2>/dev/null || die - fi -}