* [gentoo-commits] proj/sci:master commit in: dev-python/inference/
@ 2011-06-21 11:54 Justin Lecher
0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2011-06-21 11:54 UTC (permalink / raw
To: gentoo-commits
commit: 3454b7a4f7de8aca5619fd69f593accd3d08343b
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 21 10:50:27 2011 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Jun 21 10:50:27 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=3454b7a4
commit
(Portage version: 2.2.0_alpha41/git/Linux x86_64, signed Manifest commit with key 70EB7916)
---
dev-python/inference/ChangeLog | 8 +++++++-
dev-python/inference/inference-0.4.ebuild | 15 +++++++--------
2 files changed, 14 insertions(+), 9 deletions(-)
diff --git a/dev-python/inference/ChangeLog b/dev-python/inference/ChangeLog
index a720355..612cdd6 100644
--- a/dev-python/inference/ChangeLog
+++ b/dev-python/inference/ChangeLog
@@ -1,7 +1,13 @@
# ChangeLog for dev-python/inference
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 21 Jun 2011; Justin Lecher <jlec@gentoo.org> inference-0.4.ebuild:
+ Added fortran-2.eclass support
+
+ 21 Jun 2011; Justin Lecher <jlec@gentoo.org> inference-0.4.ebuild:
+ Added fortran-2.eclass support
+
*inference-0.4 (19 Jul 2010)
19 Jul 2010; Sébastien Fabbro <bicatali@gentoo.org>
diff --git a/dev-python/inference/inference-0.4.ebuild b/dev-python/inference/inference-0.4.ebuild
index c2d30b7..fb6bffd 100644
--- a/dev-python/inference/inference-0.4.ebuild
+++ b/dev-python/inference/inference-0.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
@@ -8,18 +8,18 @@ PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
DISTUTILS_SRC_TEST="nosetests"
-inherit distutils toolchain-funcs flag-o-matic
+inherit distutils fortran-2 toolchain-funcs flag-o-matic
DESCRIPTION="Collection of Python modules for statistical inference"
HOMEPAGE="http://inference.astro.cornell.edu/"
SRC_URI="${HOMEPAGE}/${P}.tar.gz"
-IUSE=""
SLOT="0"
+LICENSE="as-is"
KEYWORDS="~amd64 ~x86"
-LICENSE="mixed"
+IUSE=""
-DEPEND="dev-python/scipy"
+DEPEND="sci-libs/scipy"
RDEPEND="${DEPEND}
dev-python/matplotlib"
@@ -29,11 +29,10 @@ RESTRICT_PYTHON_ABIS="3.*"
RESTRICT="test"
pkg_setup() {
+ fortran-2_pkg_setup
# The usual numpy.distutils hacks when fortran is used
append-ldflags -shared
- [[ -z ${FC} ]] && export FC=$(tc-getFC)
- [[ -z ${F77} ]] && export F77=$(tc-getFC)
- export FFLAGS="${FFLAGS} -fPIC"
+ append-fflags -fPIC
export NUMPY_FCONFIG="config_fc --noopt --noarch"
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/inference/
@ 2011-06-23 9:31 Justin Lecher
0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2011-06-23 9:31 UTC (permalink / raw
To: gentoo-commits
commit: 8151753bc6149a099b7319829d39043878097695
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 23 08:46:37 2011 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Jun 23 08:46:37 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=8151753b
Streamlined fortran-2 eclass usage
(Portage version: 2.2.0_alpha41/git/Linux x86_64, signed Manifest commit with key 70EB7916)
---
dev-python/inference/ChangeLog | 3 +++
dev-python/inference/inference-0.4.ebuild | 9 +++++----
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/dev-python/inference/ChangeLog b/dev-python/inference/ChangeLog
index 612cdd6..a1dad06 100644
--- a/dev-python/inference/ChangeLog
+++ b/dev-python/inference/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 23 Jun 2011; Justin Lecher <jlec@gentoo.org> inference-0.4.ebuild:
+ Streamlined fortran-2 eclass usage
+
21 Jun 2011; Justin Lecher <jlec@gentoo.org> inference-0.4.ebuild:
Added fortran-2.eclass support
diff --git a/dev-python/inference/inference-0.4.ebuild b/dev-python/inference/inference-0.4.ebuild
index fb6bffd..1c4917f 100644
--- a/dev-python/inference/inference-0.4.ebuild
+++ b/dev-python/inference/inference-0.4.ebuild
@@ -6,9 +6,10 @@ EAPI=3
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="3.*"
DISTUTILS_SRC_TEST="nosetests"
-inherit distutils fortran-2 toolchain-funcs flag-o-matic
+inherit distutils flag-o-matic fortran-2 toolchain-funcs
DESCRIPTION="Collection of Python modules for statistical inference"
HOMEPAGE="http://inference.astro.cornell.edu/"
@@ -19,12 +20,12 @@ LICENSE="as-is"
KEYWORDS="~amd64 ~x86"
IUSE=""
-DEPEND="sci-libs/scipy"
+DEPEND="
+ sci-libs/scipy
+ virtual/fortran"
RDEPEND="${DEPEND}
dev-python/matplotlib"
-RESTRICT_PYTHON_ABIS="3.*"
-
# buggy tests
RESTRICT="test"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/inference/
@ 2012-10-29 11:00 Justin Lecher
0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2012-10-29 11:00 UTC (permalink / raw
To: gentoo-commits
commit: fcbf5a92ea1ce81ce0fbf53d15163fe35ec86713
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 25 16:19:06 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Oct 25 16:19:06 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=fcbf5a92
dev-python/inference: Move to EAPI=5; correct usage of fortran-2.eclass
Package-Manager: portage-2.2.0_alpha141
---
dev-python/inference/ChangeLog | 6 +++++-
dev-python/inference/inference-0.4.ebuild | 12 +++++++-----
dev-python/inference/metadata.xml | 4 ++--
3 files changed, 14 insertions(+), 8 deletions(-)
diff --git a/dev-python/inference/ChangeLog b/dev-python/inference/ChangeLog
index a1dad06..e8bfcaf 100644
--- a/dev-python/inference/ChangeLog
+++ b/dev-python/inference/ChangeLog
@@ -1,7 +1,11 @@
# ChangeLog for dev-python/inference
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 25 Oct 2012; Justin Lecher <jlec@gentoo.org> inference-0.4.ebuild,
+ metadata.xml:
+ Move to EAPI=5; correct usage of fortran-2.eclass
+
23 Jun 2011; Justin Lecher <jlec@gentoo.org> inference-0.4.ebuild:
Streamlined fortran-2 eclass usage
diff --git a/dev-python/inference/inference-0.4.ebuild b/dev-python/inference/inference-0.4.ebuild
index 1c4917f..bb508aa 100644
--- a/dev-python/inference/inference-0.4.ebuild
+++ b/dev-python/inference/inference-0.4.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=3
+EAPI=5
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
@@ -20,9 +20,7 @@ LICENSE="as-is"
KEYWORDS="~amd64 ~x86"
IUSE=""
-DEPEND="
- sci-libs/scipy
- virtual/fortran"
+DEPEND="sci-libs/scipy"
RDEPEND="${DEPEND}
dev-python/matplotlib"
@@ -31,10 +29,14 @@ RESTRICT="test"
pkg_setup() {
fortran-2_pkg_setup
+}
+
+src_prepare() {
# The usual numpy.distutils hacks when fortran is used
append-ldflags -shared
append-fflags -fPIC
export NUMPY_FCONFIG="config_fc --noopt --noarch"
+ distutils_src_prepare
}
src_compile() {
diff --git a/dev-python/inference/metadata.xml b/dev-python/inference/metadata.xml
index cd773ad..b6797a7 100644
--- a/dev-python/inference/metadata.xml
+++ b/dev-python/inference/metadata.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>sci</herd>
-<longdescription lang="en">
+ <herd>sci</herd>
+ <longdescription lang="en">
The inference package is a collection of Python modules implementing
a variety of methods targeting the statistical inference
problems—and the statistical modeling style—of the physical
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/inference/
@ 2013-06-13 7:05 Justin Lecher
0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2013-06-13 7:05 UTC (permalink / raw
To: gentoo-commits
commit: 574ac2e9dffc4cbcac9a478d5034c14151a5bd8c
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 13 06:32:58 2013 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Jun 13 06:32:58 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=574ac2e9
dev-python/inference: Bump to EAPI=5 and distutils-r1.eclass; make license more restrictive as we cannot check it right now
Package-Manager: portage-2.2.0_alpha179
---
dev-python/inference/ChangeLog | 7 ++++++-
dev-python/inference/inference-0.4.ebuild | 31 ++++++++++++++++---------------
dev-python/inference/metadata.xml | 4 ++--
3 files changed, 24 insertions(+), 18 deletions(-)
diff --git a/dev-python/inference/ChangeLog b/dev-python/inference/ChangeLog
index e8bfcaf..bf5440d 100644
--- a/dev-python/inference/ChangeLog
+++ b/dev-python/inference/ChangeLog
@@ -1,7 +1,12 @@
# ChangeLog for dev-python/inference
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 13 Jun 2013; Justin Lecher <jlec@gentoo.org> inference-0.4.ebuild,
+ metadata.xml:
+ Bump to EAPI=5 and distutils-r1.eclass; make license more restrictive as we
+ cannot check it right now
+
25 Oct 2012; Justin Lecher <jlec@gentoo.org> inference-0.4.ebuild,
metadata.xml:
Move to EAPI=5; correct usage of fortran-2.eclass
diff --git a/dev-python/inference/inference-0.4.ebuild b/dev-python/inference/inference-0.4.ebuild
index bb508aa..4b41fa3 100644
--- a/dev-python/inference/inference-0.4.ebuild
+++ b/dev-python/inference/inference-0.4.ebuild
@@ -1,28 +1,25 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-DISTUTILS_SRC_TEST="nosetests"
+PYTHON_COMPAT=( python{2_6,2_7} )
-inherit distutils flag-o-matic fortran-2 toolchain-funcs
+inherit distutils-r1 flag-o-matic fortran-2
DESCRIPTION="Collection of Python modules for statistical inference"
HOMEPAGE="http://inference.astro.cornell.edu/"
SRC_URI="${HOMEPAGE}/${P}.tar.gz"
SLOT="0"
-LICENSE="as-is"
+LICENSE="all-rights-reserved"
KEYWORDS="~amd64 ~x86"
IUSE=""
-DEPEND="sci-libs/scipy"
+DEPEND="sci-libs/scipy[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}
- dev-python/matplotlib"
+ dev-python/matplotlib[${PYTHON_USEDEP}]"
# buggy tests
RESTRICT="test"
@@ -31,18 +28,22 @@ pkg_setup() {
fortran-2_pkg_setup
}
-src_prepare() {
+python_prepare_all() {
# The usual numpy.distutils hacks when fortran is used
append-ldflags -shared
append-fflags -fPIC
export NUMPY_FCONFIG="config_fc --noopt --noarch"
- distutils_src_prepare
+ distutils-r1_python_prepare_all
}
-src_compile() {
- distutils_src_compile ${NUMPY_CONFIG}
+python_compile() {
+ distutils-r1_python_compile ${NUMPY_CONFIG}
}
-src_install() {
- distutils_src_install ${NUMPY_FCONFIG}
+python_test() {
+ nosetests --verbose --verbosity=3
+}
+
+python_install() {
+ distutils-r1_python_install ${NUMPY_FCONFIG}
}
diff --git a/dev-python/inference/metadata.xml b/dev-python/inference/metadata.xml
index b6797a7..2c89b5d 100644
--- a/dev-python/inference/metadata.xml
+++ b/dev-python/inference/metadata.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <herd>sci</herd>
- <longdescription lang="en">
+ <herd>sci</herd>
+ <longdescription lang="en">
The inference package is a collection of Python modules implementing
a variety of methods targeting the statistical inference
problems—and the statistical modeling style—of the physical
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/inference/
@ 2015-09-21 14:04 Justin Lecher
0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2015-09-21 14:04 UTC (permalink / raw
To: gentoo-commits
commit: 4435edace0bfa8d5be0b7bf9cfc977a50219e92d
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 21 12:25:10 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Sep 21 12:25:10 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=4435edac
dev-python/inference: Put it on my devspace
Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
dev-python/inference/inference-0.4.ebuild | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/dev-python/inference/inference-0.4.ebuild b/dev-python/inference/inference-0.4.ebuild
index aebb7de..fd797ec 100644
--- a/dev-python/inference/inference-0.4.ebuild
+++ b/dev-python/inference/inference-0.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -10,7 +10,7 @@ inherit distutils-r1 flag-o-matic fortran-2
DESCRIPTION="Collection of Python modules for statistical inference"
HOMEPAGE="http://inference.astro.cornell.edu/"
-SRC_URI="${HOMEPAGE}/${P}.tar.gz"
+SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz"
SLOT="0"
LICENSE="all-rights-reserved"
@@ -24,6 +24,8 @@ RDEPEND="${DEPEND}
# buggy tests
RESTRICT="test"
+S="${WORKDIR}"/${P}/package
+
pkg_setup() {
fortran-2_pkg_setup
}
@@ -41,7 +43,7 @@ python_compile() {
}
python_test() {
- nosetests --verbose --verbosity=3
+ nosetests --verbose --verbosity=3 || die
}
python_install() {
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/inference/
@ 2020-09-22 19:47 Aisha Tammy
0 siblings, 0 replies; 6+ messages in thread
From: Aisha Tammy @ 2020-09-22 19:47 UTC (permalink / raw
To: gentoo-commits
commit: b9bd4cdf0fbf1191aa3ab1ca413a4bf1815d02cb
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Sep 22 19:47:32 2020 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Tue Sep 22 19:47:44 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b9bd4cdf
dev-python/inference: drop dead package
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-python/inference/inference-0.4.ebuild | 50 -------------------------------
dev-python/inference/metadata.xml | 16 ----------
2 files changed, 66 deletions(-)
diff --git a/dev-python/inference/inference-0.4.ebuild b/dev-python/inference/inference-0.4.ebuild
deleted file mode 100644
index faf123a18..000000000
--- a/dev-python/inference/inference-0.4.ebuild
+++ /dev/null
@@ -1,50 +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 flag-o-matic fortran-2
-
-DESCRIPTION="Collection of Python modules for statistical inference"
-HOMEPAGE="http://inference.astro.cornell.edu/"
-SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz"
-
-SLOT="0"
-LICENSE="all-rights-reserved"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="sci-libs/scipy[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}
- dev-python/matplotlib[${PYTHON_USEDEP}]"
-
-# buggy tests
-RESTRICT="test"
-
-S="${WORKDIR}"/${P}/package
-
-pkg_setup() {
- fortran-2_pkg_setup
-}
-
-python_prepare_all() {
- # The usual numpy.distutils hacks when fortran is used
- append-ldflags -shared
- append-fflags -fPIC
- export NUMPY_FCONFIG="config_fc --noopt --noarch"
- distutils-r1_python_prepare_all
-}
-
-python_compile() {
- distutils-r1_python_compile ${NUMPY_CONFIG}
-}
-
-python_test() {
- nosetests --verbose --verbosity=3 || die
-}
-
-python_install() {
- distutils-r1_python_install ${NUMPY_FCONFIG}
-}
diff --git a/dev-python/inference/metadata.xml b/dev-python/inference/metadata.xml
deleted file mode 100644
index 9e0d8673e..000000000
--- a/dev-python/inference/metadata.xml
+++ /dev/null
@@ -1,16 +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">
-The inference package is a collection of Python modules implementing
-a variety of methods targeting the statistical inference
-problems—and the statistical modeling style—of the physical
-sciences. The target discipline is astronomy, and the choice of
-problems and methods most directly targets the needs of astronomers,
-but many tools here may be of use to other physical scientists.
-</longdescription>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-09-22 19:47 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-29 11:00 [gentoo-commits] proj/sci:master commit in: dev-python/inference/ Justin Lecher
-- strict thread matches above, loose matches on Subject: below --
2020-09-22 19:47 Aisha Tammy
2015-09-21 14:04 Justin Lecher
2013-06-13 7:05 Justin Lecher
2011-06-23 9:31 Justin Lecher
2011-06-21 11:54 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox