public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-mathematics/mdp/
@ 2011-04-13 17:26 Justin Lecher
  0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2011-04-13 17:26 UTC (permalink / raw
  To: gentoo-commits

commit:     60866b405cf8d79201afbcdbb44c07d379ac73ed
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 13 17:11:31 2011 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Apr 13 17:11:31 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=60866b40

Fix for python ABI stuff

(Portage version: 2.2.0_alpha29/git/Linux x86_64, signed Manifest commit with key 70EB7916)

---
 sci-mathematics/mdp/ChangeLog                      |    8 +++++++-
 .../mdp/{mdp-2.6.ebuild => mdp-2.6-r1.ebuild}      |   14 +++++++++-----
 2 files changed, 16 insertions(+), 6 deletions(-)

diff --git a/sci-mathematics/mdp/ChangeLog b/sci-mathematics/mdp/ChangeLog
index ed53395..08288ff 100644
--- a/sci-mathematics/mdp/ChangeLog
+++ b/sci-mathematics/mdp/ChangeLog
@@ -1,7 +1,13 @@
 # ChangeLog for sci-mathematics/mdp
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*mdp-2.6-r1 (13 Apr 2011)
+
+  13 Apr 2011; Justin Lecher <jlec@gentoo.org> -mdp-2.6.ebuild,
+  +mdp-2.6-r1.ebuild:
+  Fix for python ABI stuff
+
   29 Jun 2010; Justin Lecher <jlec@gentoo.org> -mdp-2.4.ebuild,
   -mdp-2.5.ebuild, mdp-2.6.ebuild:
   Python ABI fixes

diff --git a/sci-mathematics/mdp/mdp-2.6.ebuild b/sci-mathematics/mdp/mdp-2.6-r1.ebuild
similarity index 72%
rename from sci-mathematics/mdp/mdp-2.6.ebuild
rename to sci-mathematics/mdp/mdp-2.6-r1.ebuild
index 1e84ddc..8099301 100644
--- a/sci-mathematics/mdp/mdp-2.6.ebuild
+++ b/sci-mathematics/mdp/mdp-2.6-r1.ebuild
@@ -1,9 +1,12 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
+EAPI="3"
+
 PYTHON_DEPEND="2"
 SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="3.*"
 
 inherit distutils
 
@@ -16,16 +19,17 @@ SRC_URI="mirror://sourceforge/mdp-toolkit/${MY_P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~x86 ~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 DEPEND=""
 RDEPEND="|| ( >=dev-python/numpy-1.1 >=sci-libs/scipy-0.5.2 )"
 
-RESTRICT_PYTHON_ABIS="3.*"
-
 S="${WORKDIR}/${MY_P}"
 
 src_test() {
-	PYTHONPATH="${S}/src" "${python}" -c "import mdp;mdp.test()" || die "tests failed"
+	testing() {
+		PYTHONPATH="build-${PYTHON_ABI}/src" "$(PYTHON)" -c "import mdp;mdp.test()"
+	}
+	python_execute_function testing
 }



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-mathematics/mdp/
@ 2011-07-16  1:06 Tim Cera
  0 siblings, 0 replies; 6+ messages in thread
From: Tim Cera @ 2011-07-16  1:06 UTC (permalink / raw
  To: gentoo-commits

commit:     87f6b41816083f2e9fdb30fda22438f05c1bd835
Author:     timcera <timcera <AT> earthlink <DOT> net>
AuthorDate: Fri Jul 15 20:48:39 2011 +0000
Commit:     Tim Cera <timcera <AT> earthlink <DOT> net>
CommitDate: Fri Jul 15 20:48:39 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=87f6b418

sci-mathematics/mdp: Version bump and added all supported Python versions.

---
 sci-mathematics/mdp/ChangeLog      |    6 ++++++
 sci-mathematics/mdp/mdp-3.1.ebuild |   35 +++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+), 0 deletions(-)

diff --git a/sci-mathematics/mdp/ChangeLog b/sci-mathematics/mdp/ChangeLog
index 08288ff..21b97f5 100644
--- a/sci-mathematics/mdp/ChangeLog
+++ b/sci-mathematics/mdp/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*mdp-3.1 (15 Jul 2011)
+
+  15 Jul 2011; Tim Cera <timcera@earthlink.net> -mdp-2.6-r1.ebuild,
+  +mdp-3.1.ebuild:
+  Version bump. Added Python 3 support.
+
 *mdp-2.6-r1 (13 Apr 2011)
 
   13 Apr 2011; Justin Lecher <jlec@gentoo.org> -mdp-2.6.ebuild,

diff --git a/sci-mathematics/mdp/mdp-3.1.ebuild b/sci-mathematics/mdp/mdp-3.1.ebuild
new file mode 100644
index 0000000..704be41
--- /dev/null
+++ b/sci-mathematics/mdp/mdp-3.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="3"
+
+PYTHON_DEPEND="2:2.5:2.7 3:3.1:3.2"
+SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="2.4"
+
+inherit distutils
+
+MY_P="${P/mdp/MDP}"
+MY_P="${MY_P/_rc/RC}"
+
+DESCRIPTION="Data processing framework in python"
+HOMEPAGE="http://mdp-toolkit.sourceforge.net/index.html"
+SRC_URI="mirror://sourceforge/mdp-toolkit/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="|| ( >=dev-python/numpy-1.1 >=sci-libs/scipy-0.5.2 )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_test() {
+	testing() {
+		PYTHONPATH="build-${PYTHON_ABI}/src" "$(PYTHON)" -c "import mdp;mdp.test()"
+	}
+	python_execute_function testing
+}



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-mathematics/mdp/
@ 2011-07-16  2:05 Tim Cera
  0 siblings, 0 replies; 6+ messages in thread
From: Tim Cera @ 2011-07-16  2:05 UTC (permalink / raw
  To: gentoo-commits

commit:     443b3b7bbdac94959d1f26a527d21d4fdf8fc9ff
Author:     timcera <timcera <AT> earthlink <DOT> net>
AuthorDate: Fri Jul 15 22:06:24 2011 +0000
Commit:     Tim Cera <timcera <AT> earthlink <DOT> net>
CommitDate: Fri Jul 15 22:06:24 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=443b3b7b

Clean up - old version that I renamed, but git didn't delete.

---
 sci-mathematics/mdp/mdp-2.6-r1.ebuild |   35 ---------------------------------
 1 files changed, 0 insertions(+), 35 deletions(-)

diff --git a/sci-mathematics/mdp/mdp-2.6-r1.ebuild b/sci-mathematics/mdp/mdp-2.6-r1.ebuild
deleted file mode 100644
index 8099301..0000000
--- a/sci-mathematics/mdp/mdp-2.6-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="3"
-
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-
-inherit distutils
-
-MY_P="${P/mdp/MDP}"
-MY_P="${MY_P/_rc/RC}"
-
-DESCRIPTION="Data processing framework in python"
-HOMEPAGE="http://mdp-toolkit.sourceforge.net/index.html"
-SRC_URI="mirror://sourceforge/mdp-toolkit/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="|| ( >=dev-python/numpy-1.1 >=sci-libs/scipy-0.5.2 )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_test() {
-	testing() {
-		PYTHONPATH="build-${PYTHON_ABI}/src" "$(PYTHON)" -c "import mdp;mdp.test()"
-	}
-	python_execute_function testing
-}



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-mathematics/mdp/
@ 2011-11-23  4:14 Tim Cera
  0 siblings, 0 replies; 6+ messages in thread
From: Tim Cera @ 2011-11-23  4:14 UTC (permalink / raw
  To: gentoo-commits

commit:     705d52cf1fb067056ffc941f678c04bcdfa4f67e
Author:     timcera <tim <AT> cerazone <DOT> net>
AuthorDate: Wed Nov 23 04:12:55 2011 +0000
Commit:     Tim Cera <timcera <AT> earthlink <DOT> net>
CommitDate: Wed Nov 23 04:12:55 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=705d52cf

sci-mathematics/mdp: Version bump.

---
 sci-mathematics/mdp/ChangeLog                      |    5 +++++
 .../mdp/{mdp-3.1.ebuild => mdp-3.2.ebuild}         |    0
 2 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/sci-mathematics/mdp/ChangeLog b/sci-mathematics/mdp/ChangeLog
index 21b97f5..16fc901 100644
--- a/sci-mathematics/mdp/ChangeLog
+++ b/sci-mathematics/mdp/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*mdp-3.2 (23 Nov 2011)
+
+  23 Nov 2011; Tim Cera <tim@cerazone.net> -mdp-3.1.ebuild, +mdp-3.2.ebuild:
+  Version bump.
+
 *mdp-3.1 (15 Jul 2011)
 
   15 Jul 2011; Tim Cera <timcera@earthlink.net> -mdp-2.6-r1.ebuild,

diff --git a/sci-mathematics/mdp/mdp-3.1.ebuild b/sci-mathematics/mdp/mdp-3.2.ebuild
similarity index 100%
rename from sci-mathematics/mdp/mdp-3.1.ebuild
rename to sci-mathematics/mdp/mdp-3.2.ebuild



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-mathematics/mdp/
@ 2013-12-04 15:00 Justin Lecher
  0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2013-12-04 15:00 UTC (permalink / raw
  To: gentoo-commits

commit:     bb71e6df208df90cff5540e115b5bd2c0f21999d
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  4 14:49:28 2013 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Dec  4 14:49:28 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=bb71e6df

sci-mathematics/mdp: Version BUmp; Bump to distutils-r1 eclass

Package-Manager: portage-2.2.7

---
 sci-mathematics/mdp/ChangeLog                      |  4 ++++
 .../mdp/{mdp-3.2.ebuild => mdp-3.3.ebuild}         | 25 +++++++++++-----------
 sci-mathematics/mdp/mdp-9999.ebuild                | 25 +++++++++++++---------
 3 files changed, 32 insertions(+), 22 deletions(-)

diff --git a/sci-mathematics/mdp/ChangeLog b/sci-mathematics/mdp/ChangeLog
index d86c6ba..005f815 100644
--- a/sci-mathematics/mdp/ChangeLog
+++ b/sci-mathematics/mdp/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  04 Dec 2013; Justin Lecher <jlec@gentoo.org> -mdp-3.2.ebuild,
+  +mdp-3.3.ebuild, mdp-9999.ebuild:
+  Version BUmp; Bump to distutils-r1 eclass
+
   03 Mar 2013; Justin Lecher <jlec@gentoo.org> mdp-9999.ebuild, metadata.xml:
   Clean wrong space and blank lines
 

diff --git a/sci-mathematics/mdp/mdp-3.2.ebuild b/sci-mathematics/mdp/mdp-3.3.ebuild
similarity index 51%
rename from sci-mathematics/mdp/mdp-3.2.ebuild
rename to sci-mathematics/mdp/mdp-3.3.ebuild
index 704be41..2a63003 100644
--- a/sci-mathematics/mdp/mdp-3.2.ebuild
+++ b/sci-mathematics/mdp/mdp-3.3.ebuild
@@ -1,14 +1,13 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI="3"
+EAPI=5
 
-PYTHON_DEPEND="2:2.5:2.7 3:3.1:3.2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="2.4"
+PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
+PYTHON_COMPAT=( python3_3 )
 
-inherit distutils
+inherit distutils-r1
 
 MY_P="${P/mdp/MDP}"
 MY_P="${MY_P/_rc/RC}"
@@ -23,13 +22,15 @@ KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 DEPEND=""
-RDEPEND="|| ( >=dev-python/numpy-1.1 >=sci-libs/scipy-0.5.2 )"
+RDEPEND="|| (
+			>=dev-python/numpy-1.1[${PYTHON_USEDEP}]
+			>=sci-libs/scipy-0.5.2[${PYTHON_USEDEP}]
+			)"
 
 S="${WORKDIR}/${MY_P}"
 
-src_test() {
-	testing() {
-		PYTHONPATH="build-${PYTHON_ABI}/src" "$(PYTHON)" -c "import mdp;mdp.test()"
-	}
-	python_execute_function testing
+python_test() {
+	distutils_install_for_testing
+	cd "${BUILD_DIR}" || die
+	"${PYTHON}" -c "import mdp;mdp.test()" || die
 }

diff --git a/sci-mathematics/mdp/mdp-9999.ebuild b/sci-mathematics/mdp/mdp-9999.ebuild
index 73620f0..b344746 100644
--- a/sci-mathematics/mdp/mdp-9999.ebuild
+++ b/sci-mathematics/mdp/mdp-9999.ebuild
@@ -2,28 +2,33 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI="3"
+EAPI=5
 
-inherit distutils git-2
+PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
+
+inherit distutils-r1 git-r3
 
 MY_P="${P/mdp/MDP}"
 MY_P="${MY_P/_rc/RC}"
 
 DESCRIPTION="Modular data processing framework for python"
 HOMEPAGE="http://mdp-toolkit.sourceforge.net/index.html"
+SRC_URI=""
 EGIT_REPO_URI="git://github.com/mdp-toolkit/mdp-toolkit.git"
+
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
+IUSE=""
 
 DEPEND=""
-RDEPEND="|| ( >=dev-python/numpy-1.1 >=sci-libs/scipy-0.5.2 )"
-
-S="${WORKDIR}/${MY_P}"
+RDEPEND="|| (
+			>=dev-python/numpy-1.1[${PYTHON_USEDEP}]
+			>=sci-libs/scipy-0.5.2[${PYTHON_USEDEP}]
+			)"
 
-src_test() {
-	testing() {
-		PYTHONPATH="build-${PYTHON_ABI}/src" "$(PYTHON)" -c "import mdp;mdp.test()"
-	}
-	python_execute_function testing
+python_test() {
+	distutils_install_for_testing
+	cd "${BUILD_DIR}" || die
+	"${PYTHON}" -c "import mdp;mdp.test()" || die
 }


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-mathematics/mdp/
@ 2020-02-03  4:02 Benda XU
  0 siblings, 0 replies; 6+ messages in thread
From: Benda XU @ 2020-02-03  4:02 UTC (permalink / raw
  To: gentoo-commits

commit:     5e5957838e87a4a97682cebea339f682650cf380
Author:     Benda Xu <heroxbd <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  3 03:59:59 2020 +0000
Commit:     Benda XU <heroxbd <AT> gentoo <DOT> org>
CommitDate: Mon Feb  3 04:02:36 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=5e595783

sci-mathematics/mdp: remove from tree.

  No maintenance since 2011.  No updates since Python target 3.3.

Bug: https://bugs.gentoo.org/707558
Signed-off-by: Benda Xu <heroxbd <AT> gentoo.org>

 sci-mathematics/mdp/mdp-3.3.ebuild  | 35 -----------------------------------
 sci-mathematics/mdp/mdp-3.5.ebuild  | 34 ----------------------------------
 sci-mathematics/mdp/mdp-9999.ebuild | 33 ---------------------------------
 sci-mathematics/mdp/metadata.xml    | 23 -----------------------
 4 files changed, 125 deletions(-)

diff --git a/sci-mathematics/mdp/mdp-3.3.ebuild b/sci-mathematics/mdp/mdp-3.3.ebuild
deleted file mode 100644
index 509639188..000000000
--- a/sci-mathematics/mdp/mdp-3.3.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{4,5} )
-
-inherit distutils-r1
-
-MY_P="${P/mdp/MDP}"
-MY_P="${MY_P/_rc/RC}"
-
-DESCRIPTION="Data processing framework in python"
-HOMEPAGE="http://mdp-toolkit.sourceforge.net/index.html"
-SRC_URI="mirror://sourceforge/mdp-toolkit/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="
-	|| (
-		>=dev-python/numpy-1.1[${PYTHON_USEDEP}]
-		>=sci-libs/scipy-0.5.2[${PYTHON_USEDEP}]
-)"
-
-S="${WORKDIR}/${MY_P}"
-
-python_test() {
-	distutils_install_for_testing
-	cd "${BUILD_DIR}" || die
-	"${PYTHON}" -c "import mdp;mdp.test()" || die
-}

diff --git a/sci-mathematics/mdp/mdp-3.5.ebuild b/sci-mathematics/mdp/mdp-3.5.ebuild
deleted file mode 100644
index 6136fc36d..000000000
--- a/sci-mathematics/mdp/mdp-3.5.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-MY_P="${P/mdp/MDP}"
-MY_P="${MY_P/_rc/RC}"
-
-DESCRIPTION="Data processing framework in python"
-HOMEPAGE="http://mdp-toolkit.sourceforge.net/index.html"
-SRC_URI="mirror://sourceforge/mdp-toolkit/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="|| (
-	>=dev-python/numpy-1.1[${PYTHON_USEDEP}]
-	>=sci-libs/scipy-0.5.2[${PYTHON_USEDEP}]
-	)"
-
-S="${WORKDIR}/${MY_P}"
-
-python_test() {
-	distutils_install_for_testing
-	cd "${BUILD_DIR}" || die
-	"${PYTHON}" -c "import mdp;mdp.test()" || die
-}

diff --git a/sci-mathematics/mdp/mdp-9999.ebuild b/sci-mathematics/mdp/mdp-9999.ebuild
deleted file mode 100644
index 9be3d648a..000000000
--- a/sci-mathematics/mdp/mdp-9999.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3} )
-
-inherit distutils-r1 git-r3
-
-MY_P="${P/mdp/MDP}"
-MY_P="${MY_P/_rc/RC}"
-
-DESCRIPTION="Modular data processing framework for python"
-HOMEPAGE="http://mdp-toolkit.sourceforge.net/index.html"
-SRC_URI=""
-EGIT_REPO_URI="git://github.com/mdp-toolkit/mdp-toolkit.git"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-DEPEND=""
-RDEPEND="|| (
-			>=dev-python/numpy-1.1[${PYTHON_USEDEP}]
-			>=sci-libs/scipy-0.5.2[${PYTHON_USEDEP}]
-			)"
-
-python_test() {
-	distutils_install_for_testing
-	cd "${BUILD_DIR}" || die
-	"${PYTHON}" -c "import mdp;mdp.test()" || die
-}

diff --git a/sci-mathematics/mdp/metadata.xml b/sci-mathematics/mdp/metadata.xml
deleted file mode 100644
index 4a8c55d36..000000000
--- a/sci-mathematics/mdp/metadata.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="person">
-		<email>tim@cerazone.net</email>
-		<name>Tim Cera</name>
-	</maintainer>
-	<maintainer type="project">
-		<email>sci-mathematics@gentoo.org</email>
-		<name>Gentoo Mathematics Project</name>
-	</maintainer>
-	<longdescription lang="en">
-Modular toolkit for Data Processing (MDP) is a Python data processing
-framework. Implemented algorithms include: Principal Component Analysis
-(PCA), Independent Component Analysis (ICA), Slow Feature Analysis (SFA),
-Independent Slow Feature Analysis (ISFA), Growing Neural Gas (GNG), Factor
-Analysis, Fisher Discriminant Analysis (FDA), Gaussian Classifiers, and
-Restricted Boltzmann Machines.
-</longdescription>
-	<upstream>
-		<remote-id type="sourceforge">mdp-toolkit</remote-id>
-	</upstream>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-02-03  4:02 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-13 17:26 [gentoo-commits] proj/sci:master commit in: sci-mathematics/mdp/ Justin Lecher
  -- strict thread matches above, loose matches on Subject: below --
2011-07-16  1:06 Tim Cera
2011-07-16  2:05 Tim Cera
2011-11-23  4:14 Tim Cera
2013-12-04 15:00 Justin Lecher
2020-02-03  4:02 Benda XU

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox