diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-05-16 15:18:47 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-05-16 15:18:47 +0200 |
commit | e770ccea2aa9aa22056f45ae23dd2e04c49a1af7 (patch) | |
tree | 9df08768a1c95488e154a881dd8f676d4bce539c /dev-python | |
parent | dev-python/iminuit: Remove old (diff) | |
download | gentoo-e770ccea2aa9aa22056f45ae23dd2e04c49a1af7.tar.gz gentoo-e770ccea2aa9aa22056f45ae23dd2e04c49a1af7.tar.bz2 gentoo-e770ccea2aa9aa22056f45ae23dd2e04c49a1af7.zip |
dev-python/indexed_gzip: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/indexed_gzip/Manifest | 1 | ||||
-rw-r--r-- | dev-python/indexed_gzip/indexed_gzip-1.6.4.ebuild | 44 |
2 files changed, 0 insertions, 45 deletions
diff --git a/dev-python/indexed_gzip/Manifest b/dev-python/indexed_gzip/Manifest index a9c5f0491a55..95ac4d689559 100644 --- a/dev-python/indexed_gzip/Manifest +++ b/dev-python/indexed_gzip/Manifest @@ -1,2 +1 @@ DIST indexed_gzip-1.6.13.tar.gz 102730 BLAKE2B 8ab5490c3c830121ce3104c624fe36cb0064f6265b5e5f9ebd6efb0402c33e206b4d97c35803fa10fdbc25a7ccac61f19b2fd9bfb205e07acee40737d6404659 SHA512 de8a606f712a0bddf618cedac12d2b5613e14aaaacc93d1930352101bdeaca8bd5126dd67df36d691f31bc27d553a61901934bbb0b2514e4360c6cd49e395c41 -DIST indexed_gzip-1.6.4.tar.gz 101683 BLAKE2B 01d34b33f8d6a623f92bd3f6751303b32f3834e9fb7849b13b82080eeaa91bb29fa38e45287256b6946ecafae7fd000f0cd12f004662eb2e5ad9f31be7378505 SHA512 b7b804c99c560f939a165fdd6d4b881fab2dd2664cecf88f9d9dba46c389efa4839dfbffd19a1a30b801e2fde43580279ea2adab5fd0bbb379ad77c568f8d6b9 diff --git a/dev-python/indexed_gzip/indexed_gzip-1.6.4.ebuild b/dev-python/indexed_gzip/indexed_gzip-1.6.4.ebuild deleted file mode 100644 index f2cf3667d4c1..000000000000 --- a/dev-python/indexed_gzip/indexed_gzip-1.6.4.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Fast random access of gzip files in Python" -HOMEPAGE="https://github.com/pauldmccarthy/indexed_gzip" -SRC_URI="https://github.com/pauldmccarthy/indexed_gzip/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - sys-libs/zlib:=" -DEPEND=${RDEPEND} -BDEPEND=" - dev-python/cython[${PYTHON_USEDEP}] - test? ( - dev-python/numpy[${PYTHON_USEDEP}] - ) - " - -distutils_enable_tests pytest - -src_prepare() { - sed -i -e 's:--cov=indexed_gzip::' setup.cfg || die - distutils-r1_src_prepare -} - -src_compile() { - if use test; then - export INDEXED_GZIP_TESTING=1 - fi - distutils-r1_src_compile -} - -python_test() { - cd "${BUILD_DIR}"/lib/indexed_gzip/tests || die - epytest -} |