* [gentoo-commits] gentoo-x86 commit in dev-python/scientificpython: scientificpython-2.9.ebuild
@ 2009-12-24 22:44 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 4+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2009-12-24 22:44 UTC (permalink / raw
To: gentoo-commits
arfrever 09/12/24 22:44:51
Modified: scientificpython-2.9.ebuild
Log:
Use nosetests for tests. Generate /usr/bin/mpipython wrapper script.
(Portage version: 15152-svn/cvs/Linux x86_64)
Revision Changes Path
1.3 dev-python/scientificpython/scientificpython-2.9.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild?r1=1.2&r2=1.3
Index: scientificpython-2.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- scientificpython-2.9.ebuild 5 Sep 2009 01:33:12 -0000 1.2
+++ scientificpython-2.9.ebuild 24 Dec 2009 22:44:51 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild,v 1.2 2009/09/05 01:33:12 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild,v 1.3 2009/12/24 22:44:51 arfrever Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
@@ -13,16 +13,17 @@
DESCRIPTION="Scientific Module for Python"
SRC_URI="http://sourcesup.cru.fr/frs/download.php/${DV}/${MY_PN}-${PV}.tar.gz"
HOMEPAGE="http://sourcesup.cru.fr/projects/scientific-py/"
-SLOT="0"
+
LICENSE="CeCILL-2"
+SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
+IUSE="doc mpi test"
-IUSE="doc mpi"
-
-DEPEND="dev-python/numpy
+RDEPEND="dev-python/numpy
sci-libs/netcdf
mpi? ( virtual/mpi )"
-RDEPEND="${DEPEND}"
+DEPEND="${RDEPEND}
+ test? ( dev-python/nose )"
RESTRICT_PYTHON_ABIS="3.*"
S="${WORKDIR}/${MY_PN}-${PV}.0"
@@ -49,9 +50,7 @@
src_test() {
cd Tests
testing() {
- for test in *tests.py; do
- PYTHONPATH="$(ls -d ../build-${PYTHON_ABI}/lib*)" "$(PYTHON)" "${test}" || die "test ${test} failed with Python ${PYTHON_ABI}"
- done
+ PYTHONPATH="$(ls -d ../build-${PYTHON_ABI}/lib.*)" nosetests-${PYTHON_ABI}
}
python_execute_function testing
}
@@ -62,13 +61,16 @@
dodoc README README.MPI Doc/CHANGELOG || die "dodoc failed"
insinto /usr/share/doc/${PF}
doins Examples/{demomodule.c,netcdf_demo.py} || die "doins examples failed"
+
if use mpi; then
installation_of_mpipython() {
dobin Src/MPI/mpipython-${PYTHON_ABI}
}
python_execute_function -q installation_of_mpipython
+ python_generate_wrapper_scripts "${D}usr/bin/mpipython"
doins Examples/mpi.py || die "doins mpi example failed failed"
fi
+
if use doc; then
dohtml Doc/Reference/* || die "dohtml failed"
fi
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/scientificpython: scientificpython-2.9.ebuild
@ 2010-02-02 21:45 Sebastien Fabbro (bicatali)
0 siblings, 0 replies; 4+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2010-02-02 21:45 UTC (permalink / raw
To: gentoo-commits
bicatali 10/02/02 21:45:29
Modified: scientificpython-2.9.ebuild
Log:
Added netcdf-3.6 without mpi dependency for stable profiles
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Revision Changes Path
1.9 dev-python/scientificpython/scientificpython-2.9.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild?r1=1.8&r2=1.9
Index: scientificpython-2.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- scientificpython-2.9.ebuild 2 Feb 2010 17:02:19 -0000 1.8
+++ scientificpython-2.9.ebuild 2 Feb 2010 21:45:29 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild,v 1.8 2010/02/02 17:02:19 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild,v 1.9 2010/02/02 21:45:29 bicatali Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
@@ -20,7 +20,7 @@
IUSE="doc mpi test"
RDEPEND="dev-python/numpy
- sci-libs/netcdf[mpi=]
+ || ( =sci-libs/netcdf-3.6* >=sci-libs/netcdf-4[mpi=] )
mpi? ( virtual/mpi )"
DEPEND="${RDEPEND}
test? ( dev-python/nose )"
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/scientificpython: scientificpython-2.9.ebuild
@ 2010-05-10 20:24 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 4+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-05-10 20:24 UTC (permalink / raw
To: gentoo-commits
arfrever 10/05/10 20:24:00
Modified: scientificpython-2.9.ebuild
Log:
Synchronize ebuilds.
(Portage version: HEAD/cvs/Linux x86_64)
Revision Changes Path
1.11 dev-python/scientificpython/scientificpython-2.9.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild?r1=1.10&r2=1.11
Index: scientificpython-2.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- scientificpython-2.9.ebuild 9 Mar 2010 08:17:46 -0000 1.10
+++ scientificpython-2.9.ebuild 10 May 2010 20:24:00 -0000 1.11
@@ -1,8 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild,v 1.10 2010/03/09 08:17:46 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/scientificpython/scientificpython-2.9.ebuild,v 1.11 2010/05/10 20:24:00 arfrever Exp $
-EAPI="2"
+EAPI="3"
SUPPORT_PYTHON_ABIS="1"
inherit distutils eutils
@@ -68,7 +68,7 @@
dobin Src/MPI/mpipython-${PYTHON_ABI}
}
python_execute_function -q installation_of_mpipython
- python_generate_wrapper_scripts "${D}usr/bin/mpipython"
+ python_generate_wrapper_scripts "${ED}usr/bin/mpipython"
doins Examples/mpi.py || die "doins mpi example failed failed"
fi
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/scientificpython: scientificpython-2.9.ebuild
@ 2010-12-31 20:09 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 4+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-12-31 20:09 UTC (permalink / raw
To: gentoo-commits
arfrever 10/12/31 20:09:29
Removed: scientificpython-2.9.ebuild
Log:
Delete older ebuild.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-12-31 20:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-31 20:09 [gentoo-commits] gentoo-x86 commit in dev-python/scientificpython: scientificpython-2.9.ebuild Arfrever Frehtes Taifersar Arahesis (arfrever)
-- strict thread matches above, loose matches on Subject: below --
2010-05-10 20:24 Arfrever Frehtes Taifersar Arahesis (arfrever)
2010-02-02 21:45 Sebastien Fabbro (bicatali)
2009-12-24 22:44 Arfrever Frehtes Taifersar Arahesis (arfrever)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox