public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/sci:master commit in: dev-python/gammapy/
Date: Sun, 10 Aug 2014 08:05:06 +0000 (UTC)	[thread overview]
Message-ID: <1407527182.773e53e9b8d574181ee5f1939735648bcb987f14.jlec@gentoo> (raw)

commit:     773e53e9b8d574181ee5f1939735648bcb987f14
Author:     Joseph Jon Booker <joe <AT> neoturbine <DOT> net>
AuthorDate: Fri Aug  8 19:46:22 2014 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Aug  8 19:46:22 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=773e53e9

dev-python/gammapy: Add gammapy package

Package-Manager: portage-2.2.11-r1

---
 dev-python/gammapy/ChangeLog           |  9 ++++
 dev-python/gammapy/gammapy-9999.ebuild | 75 ++++++++++++++++++++++++++++++++++
 dev-python/gammapy/metadata.xml        | 10 +++++
 3 files changed, 94 insertions(+)

diff --git a/dev-python/gammapy/ChangeLog b/dev-python/gammapy/ChangeLog
new file mode 100644
index 0000000..b4b52fa
--- /dev/null
+++ b/dev-python/gammapy/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for dev-python/gammapy
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*gammapy-9999 (08 Aug 2014)
+
+  08 Aug 2014; Joseph Jon Booker <joe@neoturbine.net> +gammapy-9999.ebuild,
+  +metadata.xml:
+  dev-python/gammapy: Add gammapy package

diff --git a/dev-python/gammapy/gammapy-9999.ebuild b/dev-python/gammapy/gammapy-9999.ebuild
new file mode 100644
index 0000000..56e435b
--- /dev/null
+++ b/dev-python/gammapy/gammapy-9999.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} )
+inherit distutils-r1 eutils
+
+if [ ${PV} == "9999" ] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/gammapy/${PN}.git"
+else
+	SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="A Python package for gamma-ray astronomy"
+HOMEPAGE="https://github.com/gammapy/gammapy"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="doc"
+DOCS=( README.rst )
+
+RDEPEND="
+	>=dev-python/astropy-0.4[${PYTHON_USEDEP}]
+	dev-python/astropy-helpers[${PYTHON_USEDEP}]
+	dev-python/numpy[${PYTHON_USEDEP}]"
+
+DEPEND="${RDEPEND}"
+
+python_prepare_all() {
+	distutils-r1_python_prepare_all
+	sed -e '/import ah_bootstrap/d' -i setup.py || die "Removing ah_bootstrap failed"
+}
+
+python_compile_all() {
+	if use doc; then
+		python_export_best
+		VARTEXFONTS="${T}"/fonts \
+			MPLCONFIGDIR="${BUILD_DIR}" \
+			PYTHONPATH="${BUILD_DIR}"/lib \
+			esetup.py build_sphinx
+	fi
+}
+
+python_test() {
+	distutils_install_for_testing
+	cd "${TEST_DIR}" || die
+	"${EPYTHON}" -c "import ${PN}, sys;r = ${PN}.test(verbose=True);sys.exit(r)" \
+		|| die "tests fail with ${EPYTHON}"
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/_build/html/. )
+	distutils-r1_python_install_all
+}
+
+pkg_postinst() {
+	elog "To get additional features, a number of optional runtime"
+	elog "dependencies may be installed:"
+	elog ""
+	optfeature "Numerical Methods" sci-libs/scipy
+	optfeature "Plotting" dev-python/matplotlib
+	optfeature "Plotting Astronomical Images" dev-python/aplpy
+	optfeature "Read/write CVS files" dev-python/pandas
+	optfeature "Image Processing" sci-libs/scikits_image
+	# Gammalib, ctools, sherpa
+	optfeature "Conversion helper functions" dev-python/rootpy
+	#optfeature "Image photometry" dev-python/photutils
+	# imfun, uncertainties
+	#optfeature "Image Utility Functions" dev-python/imageutils
+	# reproject
+}

diff --git a/dev-python/gammapy/metadata.xml b/dev-python/gammapy/metadata.xml
new file mode 100644
index 0000000..1370ffd
--- /dev/null
+++ b/dev-python/gammapy/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">
+		Gammapy is a package for simulating and analysing gamma-ray sky data.
+		It is currently designed to support users of telescopes such as Fermi,
+		H.E.S.S, and CTA in primarily Galactic plane survey studies.
+	</longdescription>
+</pkgmetadata>


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

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-10  8:05 Justin Lecher [this message]
  -- strict thread matches above, loose matches on Subject: below --
2014-08-19 21:51 [gentoo-commits] proj/sci:master commit in: dev-python/gammapy/ Christoph Junghans
2014-08-29 19:28 Christoph Junghans
2016-04-13 10:47 Marius Brehler
2021-01-05 16:16 Andrew Ammerlaan
2024-02-16  2:17 Horea Christian
2024-09-23 14:22 Andrew Ammerlaan

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=1407527182.773e53e9b8d574181ee5f1939735648bcb987f14.jlec@gentoo \
    --to=jlec@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