public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: dev-python/astroquery/
@ 2014-08-22 19:09 Justin Lecher
  0 siblings, 0 replies; 4+ messages in thread
From: Justin Lecher @ 2014-08-22 19:09 UTC (permalink / raw
  To: gentoo-commits

commit:     5be7987b0c0228fb06d40379606c2ed3389a84e0
Author:     Joseph Jon Booker <joe <AT> neoturbine <DOT> net>
AuthorDate: Fri Aug 22 17:31:38 2014 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Aug 22 17:31:38 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=5be7987b

dev-python/astroquery: Add astroquery ebuild

Package-Manager: portage-2.2.12

---
 dev-python/astroquery/ChangeLog              | 10 ++++
 dev-python/astroquery/astroquery-0.2.ebuild  | 69 ++++++++++++++++++++++++++++
 dev-python/astroquery/astroquery-9999.ebuild | 69 ++++++++++++++++++++++++++++
 dev-python/astroquery/metadata.xml           | 10 ++++
 4 files changed, 158 insertions(+)

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

diff --git a/dev-python/astroquery/astroquery-0.2.ebuild b/dev-python/astroquery/astroquery-0.2.ebuild
new file mode 100644
index 0000000..0ac6ec0
--- /dev/null
+++ b/dev-python/astroquery/astroquery-0.2.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+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/astroquery/astroquery-9999.ebuild b/dev-python/astroquery/astroquery-9999.ebuild
new file mode 100644
index 0000000..0ac6ec0
--- /dev/null
+++ b/dev-python/astroquery/astroquery-9999.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+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/astroquery/metadata.xml b/dev-python/astroquery/metadata.xml
new file mode 100644
index 0000000..7fe0b45
--- /dev/null
+++ b/dev-python/astroquery/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">
+		Astroquery is a package containing a collection of tools to use
+		online astronomical databases. It integrates with Astropy and aims
+		to support many services with a uniform API.
+	</longdescription>
+</pkgmetadata>


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

* [gentoo-commits] proj/sci:master commit in: dev-python/astroquery/
@ 2021-01-05  7:39 Horea Christian
  0 siblings, 0 replies; 4+ messages in thread
From: Horea Christian @ 2021-01-05  7:39 UTC (permalink / raw
  To: gentoo-commits

commit:     5f9c1a098641946616ce635f61aaf24c0e2cfd48
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Jan  4 11:57:25 2021 +0000
Commit:     Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Tue Jan  5 07:38:41 2021 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=5f9c1a09

dev-python/astroquery: bump py targets, add keywords

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
Closes: https://github.com/gentoo/sci/pull/1034

 dev-python/astroquery/astroquery-0.4.1.ebuild | 45 ++++++++++++++++++
 dev-python/astroquery/astroquery-9999.ebuild  | 68 ---------------------------
 2 files changed, 45 insertions(+), 68 deletions(-)

diff --git a/dev-python/astroquery/astroquery-0.4.1.ebuild b/dev-python/astroquery/astroquery-0.4.1.ebuild
new file mode 100644
index 000000000..370eeb1a2
--- /dev/null
+++ b/dev-python/astroquery/astroquery-0.4.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="A collection of packages to access online astronomical resources"
+HOMEPAGE="https://www.astropy.org/astroquery/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+#TODO: Package all these pytest deps:
+# 	pytest-doctestplus>=0.2.0
+# 	pytest-remotedata>=0.3.1
+# 	pytest-openfiles>=0.3.1
+# 	pytest-astropy-header>=0.1.2
+# 	pytest-arraydiff>=0.1
+# 	pytest-filter-subpackage>=0.1
+RESTRICT="test"
+
+RDEPEND="
+	>=dev-python/astropy-0.2[${PYTHON_USEDEP}]
+	dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
+	dev-python/html5lib[${PYTHON_USEDEP}]
+	dev-python/keyring[${PYTHON_USEDEP}]
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-python/requests[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+"
+
+BDEPEND="test? (
+	dev-python/photutils[${PYTHON_USEDEP}]
+	dev-python/scipy[${PYTHON_USEDEP}]
+)"
+
+# TODO: Fix this
+# NameError: name 'disabled_intersphinx_mapping' is not defined
+#distutils_enable_sphinx docs dev-python/sphinx-astropy
+distutils_enable_tests pytest

diff --git a/dev-python/astroquery/astroquery-9999.ebuild b/dev-python/astroquery/astroquery-9999.ebuild
deleted file mode 100644
index e4afe9319..000000000
--- a/dev-python/astroquery/astroquery-9999.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,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."
-}


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

* [gentoo-commits] proj/sci:master commit in: dev-python/astroquery/
@ 2021-09-08 15:14 Andrew Ammerlaan
  0 siblings, 0 replies; 4+ messages in thread
From: Andrew Ammerlaan @ 2021-09-08 15:14 UTC (permalink / raw
  To: gentoo-commits

commit:     4c9448b3511a4c98fc612e18d52ce2de0a927c4d
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Wed Sep  8 15:12:54 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Wed Sep  8 15:13:57 2021 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=4c9448b3

dev-python/astroquery: beautifullsoup:4 --> beautifullsoup4

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 dev-python/astroquery/astroquery-0.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/astroquery/astroquery-0.4.1.ebuild b/dev-python/astroquery/astroquery-0.4.1.ebuild
index 370eeb1a2..a7884eb1d 100644
--- a/dev-python/astroquery/astroquery-0.4.1.ebuild
+++ b/dev-python/astroquery/astroquery-0.4.1.ebuild
@@ -26,7 +26,7 @@ RESTRICT="test"
 
 RDEPEND="
 	>=dev-python/astropy-0.2[${PYTHON_USEDEP}]
-	dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
+	dev-python/beautifulsoup4[${PYTHON_USEDEP}]
 	dev-python/html5lib[${PYTHON_USEDEP}]
 	dev-python/keyring[${PYTHON_USEDEP}]
 	dev-python/numpy[${PYTHON_USEDEP}]


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

* [gentoo-commits] proj/sci:master commit in: dev-python/astroquery/
@ 2024-09-23 14:22 Andrew Ammerlaan
  0 siblings, 0 replies; 4+ messages in thread
From: Andrew Ammerlaan @ 2024-09-23 14:22 UTC (permalink / raw
  To: gentoo-commits

commit:     aec0ed6975fa591892498f97e3869acfcff9e8e8
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 23 14:16:33 2024 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Sep 23 14:16:33 2024 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=aec0ed69

dev-python/astroquery: unkeyword 0.4.6 for ~x86

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 dev-python/astroquery/astroquery-0.4.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/astroquery/astroquery-0.4.6.ebuild b/dev-python/astroquery/astroquery-0.4.6.ebuild
index 3e140280c..410b6d0dc 100644
--- a/dev-python/astroquery/astroquery-0.4.6.ebuild
+++ b/dev-python/astroquery/astroquery-0.4.6.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://astroquery.readthedocs.io/"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64"
 
 #TODO: Package all these pytest deps:
 # 	pytest-doctestplus>=0.2.0


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

end of thread, other threads:[~2024-09-23 14:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-08 15:14 [gentoo-commits] proj/sci:master commit in: dev-python/astroquery/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2024-09-23 14:22 Andrew Ammerlaan
2021-01-05  7:39 Horea Christian
2014-08-22 19:09 Justin Lecher

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