dev-python/bottleneck: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2022-08-03 11:08:08 +02:00
parent 1a38dfc340
commit c727caed6c
3 changed files with 0 additions and 57 deletions

View File

@@ -1,2 +1 @@
DIST bottleneck-1.3.4.gh.tar.gz 118739 BLAKE2B af4b32bf296f11538b12f364592553d407668762e1e2d94c814bf262bc9ef88f1338cd388ff1c02065f8266988fe6cad5f8461aed2a144a9bfaf98f8ae46eeae SHA512 0cb3837139f947a7da026bddc8ff6e8025ee0aac6aedf4046383eb8385789d1816158ae20438b15a28c7f0b6552c3570c18abdbb6ef265fa9f497edebae1d808
DIST bottleneck-1.3.5.gh.tar.gz 118989 BLAKE2B 5b9338a77cb3f0253348f45e641dca9fce11b50fb632e697272203870dd604730c08f1adc94ebf9c6c21f551e3f06b5492bcb036d6f40eaec8853d08ca298873 SHA512 9a0f224337fd9d5c741a1e469197be26923eaffb143eddfe0969128ddc233c799da6a5f2ba4ef22f6267cf93e7f748c140fbb16f57149ad327c47fe87ffc3346

View File

@@ -1,40 +0,0 @@
# 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_{8..11} )
inherit distutils-r1
DESCRIPTION="Fast NumPy array functions written in C"
HOMEPAGE="
https://github.com/pydata/bottleneck/
https://pypi.org/project/Bottleneck/
"
SRC_URI="
https://github.com/pydata/bottleneck/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
RDEPEND="
>=dev-python/numpy-1.9.1[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
distutils_enable_tests pytest
PATCHES=(
# https://github.com/pydata/bottleneck/pull/403
"${FILESDIR}"/${P}-install-test-data.patch
)
python_test() {
cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
epytest
}

View File

@@ -1,16 +0,0 @@
diff --git a/setup.py b/setup.py
index db629bd..b0c10cd 100644
--- a/setup.py
+++ b/setup.py
@@ -185,7 +185,10 @@ metadata = dict(
platforms="OS Independent",
version=versioneer.get_version(),
packages=find_packages(),
- package_data={"bottleneck": ["LICENSE"]},
+ package_data={
+ "bottleneck": ["LICENSE"],
+ "bottleneck.tests": ["data/*/*"],
+ },
requires=["numpy"],
install_requires=["numpy"],
extras_require={"doc": ["numpydoc", "sphinx", "gitpython"]},