From 0c100b7dd2b30e75b799d806df4ef899fd98e1ea Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 16 Apr 2022 13:07:24 +0100 Subject: gentoo resync : 16.04.2022 --- dev-python/fitsio/Manifest | 3 -- .../fitsio/files/fitsio-0.9.11-test-failures.patch | 38 ---------------------- dev-python/fitsio/fitsio-0.9.11.ebuild | 38 ---------------------- 3 files changed, 79 deletions(-) delete mode 100644 dev-python/fitsio/files/fitsio-0.9.11-test-failures.patch delete mode 100644 dev-python/fitsio/fitsio-0.9.11.ebuild (limited to 'dev-python/fitsio') diff --git a/dev-python/fitsio/Manifest b/dev-python/fitsio/Manifest index d134aaf9301d..98c853a8d83d 100644 --- a/dev-python/fitsio/Manifest +++ b/dev-python/fitsio/Manifest @@ -1,6 +1,3 @@ -AUX fitsio-0.9.11-test-failures.patch 1560 BLAKE2B 3299a43eda8df89467474c51dec85af9edb8af52c93958e49834317439d440a0993ef6311002a4cddc4cde6aed42ed355dbafcf4f6ecbe98b81d60b9763c1c03 SHA512 224ae91e65d4b5f24cd64f3ab389940bfa58801822ad090966c4c570d5c9fb568588b3efa1dab73c2ebbbd0b5f802c2364fda31097811da78c09903814613c6b -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 -EBUILD fitsio-0.9.11.ebuild 911 BLAKE2B c39dee4861e470d5bdc4d21d3cb699f56efe930c76b28149703cdcd55b4e59d3adb853c0d08f798bcc7aff5f19d65d1b673aba952564413450e84bfb0bdf9602 SHA512 b5dc0d05ec104fb1e6f9f22ebb75081c5bd2d97e8625044f063c1c173f0cdce64fe1e5fac1ece523c6a6c2ef774c780e494e77d1009e82eaa71ae517d1f0bee1 EBUILD fitsio-1.1.7.ebuild 808 BLAKE2B 4057c48c09baff321fd7e51726f2b9b6e0887146ebb20d8204a9eaab18e51a9e7ec5f6fe7b3555e6618a207a835017b52eda42a9c5217d88afc7e2c8d703bf9c SHA512 8a72c943d498a07a1194bc1c93fe3719a9741526aa94165ca6de0b378af9f261ec1c75f3307f62c0b7f4fed6b0ad2d5533ae81ed61c01448f48c2a461f9021e8 MISC metadata.xml 947 BLAKE2B d51c4feb2baade20680a4568b05c28e217d4216f6035dfcbda05876bb7c4d804dc2b02576e2e67eb2b1890e18c86bca9ab4644b0fee69d213ece257d204681d5 SHA512 e8a29ec957adf538929d3639723cfe317c57f6c1d5b7a89a697a0f99dacdab1e21edb774acdb2dcb426f90e1221f9d0b9c008abaf462354d42797ab6bacf9162 diff --git a/dev-python/fitsio/files/fitsio-0.9.11-test-failures.patch b/dev-python/fitsio/files/fitsio-0.9.11-test-failures.patch deleted file mode 100644 index 243913dc659e..000000000000 --- a/dev-python/fitsio/files/fitsio-0.9.11-test-failures.patch +++ /dev/null @@ -1,38 +0,0 @@ -From: Ole Streicher -Date: Fri, 15 Jul 2016 08:46:15 +0200 -Subject: Mark failures that are known to fail with the original cfitsio - ---- - fitsio/test.py | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -diff --git a/fitsio/test.py b/fitsio/test.py -index bafde15..49a4b3b 100644 ---- a/fitsio/test.py -+++ b/fitsio/test.py -@@ -545,7 +545,7 @@ class TestReadWrite(unittest.TestCase): - try: - with fitsio.FITS(fname,'rw',clobber=True) as fits: - # note i8 not supported for compressed! -- dtypes = ['u1','i1','u2','i2','u4','i4','f4','f8'] -+ dtypes = ['u1','i1', 'i2','u4','i4','f4','f8'] - - for dtype in dtypes: - data = numpy.arange(5*20,dtype=dtype).reshape(5,20) -@@ -569,7 +569,7 @@ class TestReadWrite(unittest.TestCase): - try: - with fitsio.FITS(fname,'rw',clobber=True) as fits: - # note i8 not supported for compressed! -- dtypes = ['u1','i1','u2','i2','u4','i4','f4','f8'] -+ dtypes = ['u1','i1', 'i2','u4','i4','f4','f8'] - - for dtype in dtypes: - data = numpy.arange(5*20,dtype=dtype).reshape(5,20) -@@ -1365,6 +1365,7 @@ class TestReadWrite(unittest.TestCase): - if os.path.exists(fname): - os.remove(fname) - -+ @unittest.skip("bzip2 is not supported with debian cfitsio package") - def testBz2Read(self): - ''' - Write a normal .fits file, run bzip2 on it, then read the bz2 diff --git a/dev-python/fitsio/fitsio-0.9.11.ebuild b/dev-python/fitsio/fitsio-0.9.11.ebuild deleted file mode 100644 index c58f52da2827..000000000000 --- a/dev-python/fitsio/fitsio-0.9.11.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{8..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/v${PV}.tar.gz -> ${P}.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= -" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}"/${P}-test-failures.patch ) - -python_prepare_all() { - sed -e '/self.use_system_fitsio/s/False/True/' \ - -i setup.py || die - distutils-r1_python_prepare_all -} - -python_test() { - distutils_install_for_testing - pushd "${TEST_DIR}"/ || die - ${PYTHON} -c "import fitsio; exit(fitsio.test.test())" || die - popd > /dev/null || die -} -- cgit v1.2.3