commit:     1547d59ec87ab4af25af8d57aa9172956a0d97e9
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 16 23:58:03 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Wed Mar 16 23:59:55 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=1547d59e

dev-python/astroquery: now in main tree

 dev-python/astroquery/astroquery-0.2.ebuild | 69 -----------------------------
 dev-python/ccdproc/ccdproc-0.2.1.ebuild     | 59 ------------------------
 dev-python/ccdproc/ccdproc-0.2.ebuild       | 59 ------------------------
 3 files changed, 187 deletions(-)

diff --git a/dev-python/astroquery/astroquery-0.2.ebuild 
b/dev-python/astroquery/astroquery-0.2.ebuild
deleted file mode 100644
index 8692501..0000000
--- a/dev-python/astroquery/astroquery-0.2.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-inherit distutils-r1
-
-MY_PV=${PV/_/-}
-
-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="A collection of packages to access online astronomical resources"
-HOMEPAGE="https://github.com/astropy/astroquery";
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="doc"
-DOCS=( README.rst )
-
-RDEPEND="
-       >=dev-python/astropy-0.2[${PYTHON_USEDEP}]
-       dev-python/astropy-helpers[${PYTHON_USEDEP}]
-       dev-python/requests[${PYTHON_USEDEP}]
-       dev-python/numpy[${PYTHON_USEDEP}]
-       dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
-       dev-python/html5lib[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${PN}-${MY_PV}
-
-python_prepare_all() {
-       distutils-r1_python_prepare_all
-       sed -e '/import ah_bootstrap/d' -i setup.py || die "Removing 
ah_bootstrap failed"
-}
-
-python_test() {
-       distutils_install_for_testing
-       cd "${TEST_DIR}" || die
-       "${EPYTHON}" -c "import astroquery, sys;r = 
astroquery.test();sys.exit(r)" \
-               || die "tests fail with ${EPYTHON}"
-}
-
-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_install_all() {
-       use doc && local HTML_DOCS=( docs/_build/html/. )
-       distutils-r1_python_install_all
-}
-
-pkg_postinst() {
-       elog "To use the ESO archive web service, dev-python/keyring"
-       elog "must be installed."
-}

diff --git a/dev-python/ccdproc/ccdproc-0.2.1.ebuild 
b/dev-python/ccdproc/ccdproc-0.2.1.ebuild
deleted file mode 100644
index 678a537..0000000
--- a/dev-python/ccdproc/ccdproc-0.2.1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,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="Astropy affiliated package for reducing optical/IR CCD data"
-HOMEPAGE="https://github.com/astropy/ccdproc";
-
-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}]
-       sci-libs/scipy[${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
-}

diff --git a/dev-python/ccdproc/ccdproc-0.2.ebuild 
b/dev-python/ccdproc/ccdproc-0.2.ebuild
deleted file mode 100644
index 678a537..0000000
--- a/dev-python/ccdproc/ccdproc-0.2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,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="Astropy affiliated package for reducing optical/IR CCD data"
-HOMEPAGE="https://github.com/astropy/ccdproc";
-
-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}]
-       sci-libs/scipy[${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
-}

Reply via email to