public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Christoph Junghans" <ottxor@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/sci:master commit in: dev-python/astropy/
Date: Mon, 11 Aug 2014 21:38:57 +0000 (UTC)	[thread overview]
Message-ID: <1407725377.03f0ac0214812dc3069c4347a02c4213fecd16b3.ottxor@gentoo> (raw)

commit:     03f0ac0214812dc3069c4347a02c4213fecd16b3
Author:     Joseph Jon Booker <joe <AT> neoturbine <DOT> net>
AuthorDate: Mon Aug 11 02:40:22 2014 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Mon Aug 11 02:49:37 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=03f0ac02

dev-python/astropy: Update astropy live ebuild deps and python support

Package-Manager: portage-2.2.11-r1

---
 dev-python/astropy/ChangeLog           |  4 ++-
 dev-python/astropy/astropy-9999.ebuild | 52 ++++++++++++++++++++++++----------
 2 files changed, 40 insertions(+), 16 deletions(-)

diff --git a/dev-python/astropy/ChangeLog b/dev-python/astropy/ChangeLog
index 725b1d1..231b56e 100644
--- a/dev-python/astropy/ChangeLog
+++ b/dev-python/astropy/ChangeLog
@@ -2,10 +2,12 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  11 Aug 2014; Joseph Jon Booker <joe@neoturbine.net> astropy-9999.ebuild:
+  dev-python/astropy: Update astropy live ebuild deps and python support
+
   06 Jan 2014; Justin Lecher <jlec@gentoo.org> astropy-9999.ebuild:
   Switch from git-2 to git-r3
 
   13 Jun 2013; Justin Lecher <jlec@gentoo.org> astropy-9999.ebuild,
   metadata.xml:
   Bump to EAPI=5 and distutils-r1.eclass
-

diff --git a/dev-python/astropy/astropy-9999.ebuild b/dev-python/astropy/astropy-9999.ebuild
index ac26d82..6cfdc67 100644
--- a/dev-python/astropy/astropy-9999.ebuild
+++ b/dev-python/astropy/astropy-9999.ebuild
@@ -4,12 +4,12 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_6,2_7} )
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
 
 inherit distutils-r1 git-r3
 
-DESCRIPTION="Python routines and common tools needed for performing astronomy and astrophysics"
-HOMEPAGE="http://astropy.org/ http://github.com/astropy/astropy"
+DESCRIPTION="Core functionality for performing astrophysics with Python"
+HOMEPAGE="http://astropy.org/"
 SRC_URI=""
 EGIT_REPO_URI="git://github.com/${PN}/${PN}.git"
 
@@ -18,32 +18,54 @@ SLOT="0"
 KEYWORDS=""
 IUSE="doc test"
 
-RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+RDEPEND="
+	dev-libs/expat:0=
+	dev-python/numpy[${PYTHON_USEDEP}]
+	sci-astronomy/erfa:0=
+	sci-astronomy/wcslib:0=
+	>=sci-libs/cfitsio-3.350:0=
+	sys-libs/zlib:0="
 DEPEND="${RDEPEND}
+	dev-python/astropy-helpers[${PYTHON_USEDEP}]
+	dev-python/cython[${PYTHON_USEDEP}]
 	dev-python/setuptools[${PYTHON_USEDEP}]
-	sys-devel/flex
+	virtual/pkgconfig
 	doc? (
-		dev-python/sphinx[${PYTHON_USEDEP}]
+		dev-python/matplotlib
+		dev-python/sphinx
 		media-gfx/graphviz
 	)
-	test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+	test? (
+		dev-libs/libxml2
+		dev-python/h5py[${PYTHON_USEDEP}]
+		dev-python/matplotlib[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+		sci-libs/scipy[${PYTHON_USEDEP}]
+	)"
 
 python_prepare_all() {
-	sed \
-		-e '/use_system_pytest/ s/False/True/' \
-		-i astropy/tests/helper.py || die
 	distutils-r1_python_prepare_all
+	sed -e '/import ah_bootstrap/d' -i setup.py || die "Removing ah_bootstrap failed"
+}
+
+python_compile() {
+	distutils-r1_python_compile --use-system-libraries
 }
 
 python_compile_all() {
-	if use doc ; then
-		pushd docs &> /dev/null
-		PYTHONPATH="$(ls -d ${BUILD_DIR}/lib.*)" \
-			sphinx-build -b html -d _build/doctrees . _build/html || die
-		popd &> /dev/null
+	if use doc; then
+		python_export_best
+		VARTEXFONTS="${T}"/fonts \
+			MPLCONFIGDIR="${BUILD_DIR}" \
+			PYTHONPATH="${BUILD_DIR}"/lib \
+			esetup.py build_sphinx
 	fi
 }
 
+python_test() {
+	esetup.py test
+}
+
 python_install_all() {
 	use doc && HTML_DOCS=( docs/_build/html/. )
 	distutils-r1_src_install_all


WARNING: multiple messages have this Message-ID (diff)
From: "Christoph Junghans" <ottxor@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/sci:master commit in: dev-python/astropy/
Date: Tue, 19 Aug 2014 21:51:36 +0000 (UTC)	[thread overview]
Message-ID: <1407725377.03f0ac0214812dc3069c4347a02c4213fecd16b3.ottxor@gentoo> (raw)
Message-ID: <20140819215136.JnngFucwHmspA0FBKNrK5XqlgohG2LQiEz4IkWlwilI@z> (raw)

commit:     03f0ac0214812dc3069c4347a02c4213fecd16b3
Author:     Joseph Jon Booker <joe <AT> neoturbine <DOT> net>
AuthorDate: Mon Aug 11 02:40:22 2014 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Mon Aug 11 02:49:37 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=03f0ac02

dev-python/astropy: Update astropy live ebuild deps and python support

Package-Manager: portage-2.2.11-r1

---
 dev-python/astropy/ChangeLog           |  4 ++-
 dev-python/astropy/astropy-9999.ebuild | 52 ++++++++++++++++++++++++----------
 2 files changed, 40 insertions(+), 16 deletions(-)

diff --git a/dev-python/astropy/ChangeLog b/dev-python/astropy/ChangeLog
index 725b1d1..231b56e 100644
--- a/dev-python/astropy/ChangeLog
+++ b/dev-python/astropy/ChangeLog
@@ -2,10 +2,12 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  11 Aug 2014; Joseph Jon Booker <joe@neoturbine.net> astropy-9999.ebuild:
+  dev-python/astropy: Update astropy live ebuild deps and python support
+
   06 Jan 2014; Justin Lecher <jlec@gentoo.org> astropy-9999.ebuild:
   Switch from git-2 to git-r3
 
   13 Jun 2013; Justin Lecher <jlec@gentoo.org> astropy-9999.ebuild,
   metadata.xml:
   Bump to EAPI=5 and distutils-r1.eclass
-

diff --git a/dev-python/astropy/astropy-9999.ebuild b/dev-python/astropy/astropy-9999.ebuild
index ac26d82..6cfdc67 100644
--- a/dev-python/astropy/astropy-9999.ebuild
+++ b/dev-python/astropy/astropy-9999.ebuild
@@ -4,12 +4,12 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_6,2_7} )
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
 
 inherit distutils-r1 git-r3
 
-DESCRIPTION="Python routines and common tools needed for performing astronomy and astrophysics"
-HOMEPAGE="http://astropy.org/ http://github.com/astropy/astropy"
+DESCRIPTION="Core functionality for performing astrophysics with Python"
+HOMEPAGE="http://astropy.org/"
 SRC_URI=""
 EGIT_REPO_URI="git://github.com/${PN}/${PN}.git"
 
@@ -18,32 +18,54 @@ SLOT="0"
 KEYWORDS=""
 IUSE="doc test"
 
-RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+RDEPEND="
+	dev-libs/expat:0=
+	dev-python/numpy[${PYTHON_USEDEP}]
+	sci-astronomy/erfa:0=
+	sci-astronomy/wcslib:0=
+	>=sci-libs/cfitsio-3.350:0=
+	sys-libs/zlib:0="
 DEPEND="${RDEPEND}
+	dev-python/astropy-helpers[${PYTHON_USEDEP}]
+	dev-python/cython[${PYTHON_USEDEP}]
 	dev-python/setuptools[${PYTHON_USEDEP}]
-	sys-devel/flex
+	virtual/pkgconfig
 	doc? (
-		dev-python/sphinx[${PYTHON_USEDEP}]
+		dev-python/matplotlib
+		dev-python/sphinx
 		media-gfx/graphviz
 	)
-	test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+	test? (
+		dev-libs/libxml2
+		dev-python/h5py[${PYTHON_USEDEP}]
+		dev-python/matplotlib[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+		sci-libs/scipy[${PYTHON_USEDEP}]
+	)"
 
 python_prepare_all() {
-	sed \
-		-e '/use_system_pytest/ s/False/True/' \
-		-i astropy/tests/helper.py || die
 	distutils-r1_python_prepare_all
+	sed -e '/import ah_bootstrap/d' -i setup.py || die "Removing ah_bootstrap failed"
+}
+
+python_compile() {
+	distutils-r1_python_compile --use-system-libraries
 }
 
 python_compile_all() {
-	if use doc ; then
-		pushd docs &> /dev/null
-		PYTHONPATH="$(ls -d ${BUILD_DIR}/lib.*)" \
-			sphinx-build -b html -d _build/doctrees . _build/html || die
-		popd &> /dev/null
+	if use doc; then
+		python_export_best
+		VARTEXFONTS="${T}"/fonts \
+			MPLCONFIGDIR="${BUILD_DIR}" \
+			PYTHONPATH="${BUILD_DIR}"/lib \
+			esetup.py build_sphinx
 	fi
 }
 
+python_test() {
+	esetup.py test
+}
+
 python_install_all() {
 	use doc && HTML_DOCS=( docs/_build/html/. )
 	distutils-r1_src_install_all


             reply	other threads:[~2014-08-11 21:51 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-11 21:38 Christoph Junghans [this message]
2014-08-19 21:51 ` [gentoo-commits] proj/sci:master commit in: dev-python/astropy/ Christoph Junghans
  -- strict thread matches above, loose matches on Subject: below --
2023-05-22 13:12 Andrew Ammerlaan
2023-02-10 11:35 Andrew Ammerlaan
2022-01-23 11:21 Andrew Ammerlaan
2021-01-05  7:39 Horea Christian
2015-01-15  6:53 Justin Lecher
2014-08-19 21:51 Christoph Junghans
2014-08-11 21:38 ` Christoph Junghans
2014-01-06 19:27 Justin Lecher
2013-06-13 11:31 Justin Lecher
2012-05-06 13:08 Kacper Kowalik
2012-05-06 13:05 Kacper Kowalik

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1407725377.03f0ac0214812dc3069c4347a02c4213fecd16b3.ottxor@gentoo \
    --to=ottxor@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox