public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: dev-python/healpy/
@ 2013-06-17  1:07 Sebastien Fabbro
  0 siblings, 0 replies; 5+ messages in thread
From: Sebastien Fabbro @ 2013-06-17  1:07 UTC (permalink / raw
  To: gentoo-commits

commit:     92de11722bf7f8626d6c2c3cb87962c8bbc05cc7
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 17 01:06:01 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Mon Jun 17 01:06:01 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=92de1172

dev-python/healpy: Initial import

Package-Manager: portage-2.2.01.22013-prefix
RepoMan-Options: --force

---
 dev-python/healpy/ChangeLog           |  9 +++++++++
 dev-python/healpy/healpy-1.6.2.ebuild | 34 ++++++++++++++++++++++++++++++++++
 dev-python/healpy/metadata.xml        | 10 ++++++++++
 3 files changed, 53 insertions(+)

diff --git a/dev-python/healpy/ChangeLog b/dev-python/healpy/ChangeLog
new file mode 100644
index 0000000..aec23ab
--- /dev/null
+++ b/dev-python/healpy/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for dev-python/healpy
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*healpy-1.6.2 (17 Jun 2013)
+
+  17 Jun 2013; Sébastien Fabbro <bicatali@gentoo.org> +healpy-1.6.2.ebuild,
+  +metadata.xml:
+  dev-python/healpy: Initial import

diff --git a/dev-python/healpy/healpy-1.6.2.ebuild b/dev-python/healpy/healpy-1.6.2.ebuild
new file mode 100644
index 0000000..485c1b8
--- /dev/null
+++ b/dev-python/healpy/healpy-1.6.2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_6,2_7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python wrapper for healpix"
+HOMEPAGE="https://github.com/healpy"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="
+	dev-python/matplotlib[${PYTHON_USEDEP}]
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-python/pyfits[${PYTHON_USEDEP}]
+	sci-astronomy/healpix_cxx
+	sci-libs/cfitsio"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+python_test() {
+	cd "${BUILD_DIR}"/lib*
+	echo "backend: Agg" > matplotlibrc
+	MPLCONFIGDIR=. PYTHONPATH=. nosetests-"${EPYTHON}" || die
+	rm matplotlibrc
+}

diff --git a/dev-python/healpy/metadata.xml b/dev-python/healpy/metadata.xml
new file mode 100644
index 0000000..044ede5
--- /dev/null
+++ b/dev-python/healpy/metadata.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci-astronomy</herd>
+<longdescription lang='en'>
+  Healpy provides a python package to manipulate healpix maps. It is
+  based on the standard numeric and visualisation tools for Python,
+  Numpy and matplotlib.
+</longdescription>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/healpy/
@ 2013-09-17  9:07 Kacper Kowalik
  0 siblings, 0 replies; 5+ messages in thread
From: Kacper Kowalik @ 2013-09-17  9:07 UTC (permalink / raw
  To: gentoo-commits

commit:     035cafa836b75610fd097eb70ea79d9c012aff10
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 17 08:35:27 2013 +0000
Commit:     Kacper Kowalik <xarthisius <AT> gentoo <DOT> org>
CommitDate: Tue Sep 17 08:35:27 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=035cafa8

dev-python/healpy: Clean up python_test(). Bug #484426.

Package-Manager: portage-2.2.6

---
 dev-python/healpy/ChangeLog           | 3 +++
 dev-python/healpy/healpy-1.6.2.ebuild | 8 ++++----
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-python/healpy/ChangeLog b/dev-python/healpy/ChangeLog
index aec23ab..2aa801e 100644
--- a/dev-python/healpy/ChangeLog
+++ b/dev-python/healpy/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  17 Sep 2013; Michał Górny <mgorny@gentoo.org> healpy-1.6.2.ebuild:
+  dev-python/healpy: Clean up python_test(). Bug #484426.
+
 *healpy-1.6.2 (17 Jun 2013)
 
   17 Jun 2013; Sébastien Fabbro <bicatali@gentoo.org> +healpy-1.6.2.ebuild,

diff --git a/dev-python/healpy/healpy-1.6.2.ebuild b/dev-python/healpy/healpy-1.6.2.ebuild
index 485c1b8..c90bd7b 100644
--- a/dev-python/healpy/healpy-1.6.2.ebuild
+++ b/dev-python/healpy/healpy-1.6.2.ebuild
@@ -27,8 +27,8 @@ DEPEND="${RDEPEND}
 	virtual/pkgconfig"
 
 python_test() {
-	cd "${BUILD_DIR}"/lib*
-	echo "backend: Agg" > matplotlibrc
-	MPLCONFIGDIR=. PYTHONPATH=. nosetests-"${EPYTHON}" || die
-	rm matplotlibrc
+	cd "${BUILD_DIR}"/lib || die
+	echo "backend: Agg" > matplotlibrc || die
+	MPLCONFIGDIR=. nosetests || die
+	rm matplotlibrc || die
 }


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/healpy/
@ 2014-02-03  1:39 Sebastien Fabbro
  0 siblings, 0 replies; 5+ messages in thread
From: Sebastien Fabbro @ 2014-02-03  1:39 UTC (permalink / raw
  To: gentoo-commits

commit:     511b622a7f3dee7aeb9aea34f07766fb163218e5
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  3 01:32:49 2014 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Mon Feb  3 01:32:49 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=511b622a

dev-python/healpy: Version bump

Package-Manager: portage-2.2.8-prefix

---
 dev-python/healpy/ChangeLog                                    | 8 +++++++-
 dev-python/healpy/{healpy-1.6.2.ebuild => healpy-1.7.3.ebuild} | 2 +-
 dev-python/healpy/metadata.xml                                 | 3 +++
 3 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/dev-python/healpy/ChangeLog b/dev-python/healpy/ChangeLog
index 2aa801e..ce3ba10 100644
--- a/dev-python/healpy/ChangeLog
+++ b/dev-python/healpy/ChangeLog
@@ -1,7 +1,13 @@
 # ChangeLog for dev-python/healpy
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*healpy-1.7.3 (03 Feb 2014)
+
+  03 Feb 2014; Sébastien Fabbro <bicatali@gentoo.org> +healpy-1.7.3.ebuild,
+  -healpy-1.6.2.ebuild, metadata.xml:
+  dev-python/healpy: Version bump
+
   17 Sep 2013; Michał Górny <mgorny@gentoo.org> healpy-1.6.2.ebuild:
   dev-python/healpy: Clean up python_test(). Bug #484426.
 

diff --git a/dev-python/healpy/healpy-1.6.2.ebuild b/dev-python/healpy/healpy-1.7.3.ebuild
similarity index 95%
rename from dev-python/healpy/healpy-1.6.2.ebuild
rename to dev-python/healpy/healpy-1.7.3.ebuild
index 27d58c5..3208f74 100644
--- a/dev-python/healpy/healpy-1.6.2.ebuild
+++ b/dev-python/healpy/healpy-1.7.3.ebuild
@@ -20,7 +20,7 @@ IUSE=""
 RDEPEND="
 	dev-python/matplotlib[${PYTHON_USEDEP}]
 	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-python/pyfits[${PYTHON_USEDEP}]
+	virtual/pyfits[${PYTHON_USEDEP}]
 	sci-astronomy/healpix_cxx
 	sci-libs/cfitsio"
 DEPEND="${RDEPEND}

diff --git a/dev-python/healpy/metadata.xml b/dev-python/healpy/metadata.xml
index 044ede5..bd104d9 100644
--- a/dev-python/healpy/metadata.xml
+++ b/dev-python/healpy/metadata.xml
@@ -7,4 +7,7 @@
   based on the standard numeric and visualisation tools for Python,
   Numpy and matplotlib.
 </longdescription>
+<upstream>
+  <remote-id type="pypi">healpy</remote-id>
+</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/healpy/
@ 2014-03-03 20:37 Sebastien Fabbro
  0 siblings, 0 replies; 5+ messages in thread
From: Sebastien Fabbro @ 2014-03-03 20:37 UTC (permalink / raw
  To: gentoo-commits

commit:     e81cf38987b0b61d845df5887a8a9cdf8911edeb
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  3 20:35:21 2014 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Mon Mar  3 20:35:21 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=e81cf389

dev-python/healpy: Version bump

Package-Manager: portage-2.2.8-prefix

---
 dev-python/healpy/ChangeLog                                    | 6 ++++++
 dev-python/healpy/{healpy-1.7.3.ebuild => healpy-1.7.4.ebuild} | 0
 2 files changed, 6 insertions(+)

diff --git a/dev-python/healpy/ChangeLog b/dev-python/healpy/ChangeLog
index ce3ba10..5251a63 100644
--- a/dev-python/healpy/ChangeLog
+++ b/dev-python/healpy/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*healpy-1.7.4 (03 Mar 2014)
+
+  03 Mar 2014; Sébastien Fabbro <bicatali@gentoo.org> +healpy-1.7.4.ebuild,
+  -healpy-1.7.3.ebuild:
+  dev-python/healpy: Version bump
+
 *healpy-1.7.3 (03 Feb 2014)
 
   03 Feb 2014; Sébastien Fabbro <bicatali@gentoo.org> +healpy-1.7.3.ebuild,

diff --git a/dev-python/healpy/healpy-1.7.3.ebuild b/dev-python/healpy/healpy-1.7.4.ebuild
similarity index 100%
rename from dev-python/healpy/healpy-1.7.3.ebuild
rename to dev-python/healpy/healpy-1.7.4.ebuild


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/healpy/
@ 2015-10-22 10:25 Justin Lecher
  0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2015-10-22 10:25 UTC (permalink / raw
  To: gentoo-commits

commit:     1630019f0cfd81ea3e6060ca937c8ed8f33c8cb5
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 22 10:24:39 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Oct 22 10:24:39 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=1630019f

dev-python/healpy: Fix broken dependency for pyfits

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/healpy/healpy-1.7.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/healpy/healpy-1.7.4.ebuild b/dev-python/healpy/healpy-1.7.4.ebuild
index 8ed47d8..0118949 100644
--- a/dev-python/healpy/healpy-1.7.4.ebuild
+++ b/dev-python/healpy/healpy-1.7.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$
 
@@ -20,7 +20,7 @@ IUSE=""
 RDEPEND="
 	dev-python/matplotlib[${PYTHON_USEDEP}]
 	dev-python/numpy[${PYTHON_USEDEP}]
-	virtual/pyfits[${PYTHON_USEDEP}]
+	dev-python/pyfits[${PYTHON_USEDEP}]
 	sci-astronomy/healpix_cxx
 	sci-libs/cfitsio"
 DEPEND="${RDEPEND}


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

end of thread, other threads:[~2015-10-22 10:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-17  1:07 [gentoo-commits] proj/sci:master commit in: dev-python/healpy/ Sebastien Fabbro
  -- strict thread matches above, loose matches on Subject: below --
2013-09-17  9:07 Kacper Kowalik
2014-02-03  1:39 Sebastien Fabbro
2014-03-03 20:37 Sebastien Fabbro
2015-10-22 10:25 Justin Lecher

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