From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6EC3A59CA5 for ; Fri, 18 Mar 2016 19:18:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 47E8221C126; Fri, 18 Mar 2016 19:18:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C7E1021C121 for ; Fri, 18 Mar 2016 19:18:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B9617340CB1 for ; Fri, 18 Mar 2016 19:18:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6484B869 for ; Fri, 18 Mar 2016 19:18:14 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <1458331831.a18c5fc23cb2b9f578d1618bc829e15ff8eff12f.bicatali@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/gammapy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/gammapy/Manifest dev-python/gammapy/gammapy-0.3.ebuild dev-python/gammapy/metadata.xml X-VCS-Directories: dev-python/gammapy/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: a18c5fc23cb2b9f578d1618bc829e15ff8eff12f X-VCS-Branch: master Date: Fri, 18 Mar 2016 19:18:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 330be88e-2fec-479e-b1e9-f0e16e115f6a X-Archives-Hash: c29365e9baabecd06ebcf3fff5b7e422 commit: a18c5fc23cb2b9f578d1618bc829e15ff8eff12f Author: Sébastien Fabbro gentoo org> AuthorDate: Thu Mar 17 18:33:30 2016 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Fri Mar 18 20:10:31 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a18c5fc2 dev-python/gammapy: initial import Package-Manager: portage-2.2.28 dev-python/gammapy/Manifest | 1 + dev-python/gammapy/gammapy-0.3.ebuild | 52 +++++++++++++++++++++++++++++++++++ dev-python/gammapy/metadata.xml | 17 ++++++++++++ 3 files changed, 70 insertions(+) diff --git a/dev-python/gammapy/Manifest b/dev-python/gammapy/Manifest new file mode 100644 index 0000000..96e2b7c --- /dev/null +++ b/dev-python/gammapy/Manifest @@ -0,0 +1 @@ +DIST gammapy-0.3.tar.gz 1108360 SHA256 49d56320c34d6d0d16d2f847cbb3a538a81b1bcefdb851e163ae02ceb24205de SHA512 95a37e54c8e4fdcae52ac96185587a881d610269a26f595a08ccf92310678b6c81b2bae65a063907af773cf4bfe1a74ffa07314f879f818268f91762e2c55614 WHIRLPOOL 513e05873c5cef1fd83ca3aa8d6f3ccca3500be6d27512fa35692d41d716d675f6ce0ba284aec4d595004cefaf863d6ed238892d067bc692de013dc99fa7c4dd diff --git a/dev-python/gammapy/gammapy-0.3.ebuild b/dev-python/gammapy/gammapy-0.3.ebuild new file mode 100644 index 0000000..59e84aa --- /dev/null +++ b/dev-python/gammapy/gammapy-0.3.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) +inherit distutils-r1 eutils + +DESCRIPTION="Python package for gamma-ray astronomy" +HOMEPAGE="https://gammapy.readthedocs.org/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +LICENSE="BSD" +SLOT="0" +IUSE="doc test" +DOCS=( README.rst ) + +RDEPEND=" + dev-python/astropy[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}]" + +DEPEND="${RDEPEND} + dev-python/astropy-helpers[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" + +python_prepare_all() { + sed -i -e '/auto_use/s/True/False/' setup.cfg || die + distutils-r1_python_prepare_all +} + +python_compile_all() { + if use doc; then + python_setup + 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 && local HTML_DOCS=( docs/_build/html/ ) + distutils-r1_python_install_all +} diff --git a/dev-python/gammapy/metadata.xml b/dev-python/gammapy/metadata.xml new file mode 100644 index 0000000..a1fa597 --- /dev/null +++ b/dev-python/gammapy/metadata.xml @@ -0,0 +1,17 @@ + + + + + sci-astronomy@gentoo.org + Gentoo Astronomy Project + + + 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. + + + gammapy + gammapy/gammapy + +