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 6C88A13877A for ; Tue, 19 Aug 2014 21:52:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F938E08F0; Tue, 19 Aug 2014 21:51:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C4434E08F0 for ; Tue, 19 Aug 2014 21:51:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CC25D340225 for ; Tue, 19 Aug 2014 21:51:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DDE973964 for ; Tue, 19 Aug 2014 21:51:35 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1407528563.ee14f2ab1333b59ae63b627c33fa8d93af362b92.ottxor@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/specutils/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/specutils/ChangeLog dev-python/specutils/metadata.xml dev-python/specutils/specutils-9999.ebuild X-VCS-Directories: dev-python/specutils/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: ee14f2ab1333b59ae63b627c33fa8d93af362b92 X-VCS-Branch: master Date: Tue, 19 Aug 2014 21:51:35 +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: 8f2507b6-ff45-4a20-9bfd-83b4a930b4fe X-Archives-Hash: 167b4491eaed869f875aac2bd863c364 commit: ee14f2ab1333b59ae63b627c33fa8d93af362b92 Author: Joseph Jon Booker neoturbine net> AuthorDate: Fri Aug 8 20:09:23 2014 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Fri Aug 8 20:09:23 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=ee14f2ab dev-python/specutils: Add specutils package Package-Manager: portage-2.2.11-r1 --- dev-python/specutils/ChangeLog | 9 +++++ dev-python/specutils/metadata.xml | 10 +++++ dev-python/specutils/specutils-9999.ebuild | 59 ++++++++++++++++++++++++++++++ 3 files changed, 78 insertions(+) diff --git a/dev-python/specutils/ChangeLog b/dev-python/specutils/ChangeLog new file mode 100644 index 0000000..6447cd6 --- /dev/null +++ b/dev-python/specutils/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-python/specutils +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*specutils-9999 (08 Aug 2014) + + 08 Aug 2014; Joseph Jon Booker +metadata.xml, + +specutils-9999.ebuild: + dev-python/specutils: Add specutils package diff --git a/dev-python/specutils/metadata.xml b/dev-python/specutils/metadata.xml new file mode 100644 index 0000000..91594d0 --- /dev/null +++ b/dev-python/specutils/metadata.xml @@ -0,0 +1,10 @@ + + + + sci-astronomy + + specutils is a package to implement utilities and data structures to + analyse astronomical spectra within python. It extends NDData from Astropy + into a class with special handling of 1D spectra. + + diff --git a/dev-python/specutils/specutils-9999.ebuild b/dev-python/specutils/specutils-9999.ebuild new file mode 100644 index 0000000..f8cfd5c --- /dev/null +++ b/dev-python/specutils/specutils-9999.ebuild @@ -0,0 +1,59 @@ +# 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 + +if [ ${PV} == "9999" ] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/astropy/${PN}.git" +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="Affiliated package for 1D spectral operations" +HOMEPAGE="https://github.com/astropy/specutils" + +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/matplotlib[${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 +}