diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-01-29 13:38:37 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-01-29 13:38:37 +0000 |
| commit | 491986f3920fc2a7ae5ac652861c8d713eac5970 (patch) | |
| tree | 15894dfcdf26cf4d59d367fbf2570191be36fd2a /dev-python/fitsio | |
| parent | f881f2cd3d222d2179a718cb82ef5dfde0228808 (diff) | |
| download | baldeagleos-repo-491986f3920fc2a7ae5ac652861c8d713eac5970.tar.gz baldeagleos-repo-491986f3920fc2a7ae5ac652861c8d713eac5970.tar.xz baldeagleos-repo-491986f3920fc2a7ae5ac652861c8d713eac5970.zip | |
Adding metadata
Diffstat (limited to 'dev-python/fitsio')
| -rw-r--r-- | dev-python/fitsio/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/fitsio/fitsio-1.1.7.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/dev-python/fitsio/Manifest b/dev-python/fitsio/Manifest index 6c3314878498..5d468a97cfeb 100644 --- a/dev-python/fitsio/Manifest +++ b/dev-python/fitsio/Manifest @@ -1 +1,2 @@ DIST fitsio-0.9.11.tar.gz 6020222 BLAKE2B a71a0a6a026999b06dce54beb48fab2f510951099788b51456a6e07057daa7c911d5a2841d5f15a397705459daf081ff91bff1014782c93cb1dd76faf0ef2e1d SHA512 751b9612fe051f128d8f5dea61e2d119409293051a130ee3e18836181637e8c8daea757a715012fd024678d00e234e8b6c0cc0c9229c2bd9a406db312e4607d7 +DIST fitsio-1.1.7.gh.tar.gz 5052055 BLAKE2B be9c632dcdd08325c5abb2cb9ed9eee6476b27ef2e7197298b269156346ecb72afc9f1d1c2e3ade045f69cde3afac5a6bf3fe5ecbce67fdfc1e6ede529ab1b32 SHA512 d6e81de08c38346050fbaa3e2fb51a496e76133bb0b04f20d816b51b7b7bf21ba37a400c3a6a7f966959223545c736ca6245427457154a4b5976b5a997e9cfcc diff --git a/dev-python/fitsio/fitsio-1.1.7.ebuild b/dev-python/fitsio/fitsio-1.1.7.ebuild new file mode 100644 index 000000000000..ba0edb7e7e3b --- /dev/null +++ b/dev-python/fitsio/fitsio-1.1.7.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{6,7,8,9,10} ) +inherit distutils-r1 + +DESCRIPTION="Python library to read from and write to FITS files" +HOMEPAGE="https://github.com/esheldon/fitsio" +SRC_URI=" + https://github.com/esheldon/fitsio/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + >=dev-python/numpy-1.11[${PYTHON_USEDEP}] + sci-libs/cfitsio:0= +" +BDEPEND="${RDEPEND}" + +src_configure() { + cat >> setup.cfg <<-EOF || die + [build_ext] + use_system_fitsio = True + EOF +} + +python_test() { + cd "${T}" || die + "${EPYTHON}" -c "import fitsio; exit(fitsio.test.test())" || + die "Tests failed with ${EPYTHON}" +} |
