Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bottleneck/files/, dev-python/bottleneck/
Date: Wed, 03 Aug 2022 09:10:58
Message-Id: 1659517688.c727caed6ccc012f28c7a3a06ef4c4f34fee0da3.mgorny@gentoo
1 commit: c727caed6ccc012f28c7a3a06ef4c4f34fee0da3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 3 09:08:08 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 3 09:08:08 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c727caed
7
8 dev-python/bottleneck: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/bottleneck/Manifest | 1 -
13 dev-python/bottleneck/bottleneck-1.3.4.ebuild | 40 ----------------------
14 .../files/bottleneck-1.3.4-install-test-data.patch | 16 ---------
15 3 files changed, 57 deletions(-)
16
17 diff --git a/dev-python/bottleneck/Manifest b/dev-python/bottleneck/Manifest
18 index e28902708a51..354f8498053b 100644
19 --- a/dev-python/bottleneck/Manifest
20 +++ b/dev-python/bottleneck/Manifest
21 @@ -1,2 +1 @@
22 -DIST bottleneck-1.3.4.gh.tar.gz 118739 BLAKE2B af4b32bf296f11538b12f364592553d407668762e1e2d94c814bf262bc9ef88f1338cd388ff1c02065f8266988fe6cad5f8461aed2a144a9bfaf98f8ae46eeae SHA512 0cb3837139f947a7da026bddc8ff6e8025ee0aac6aedf4046383eb8385789d1816158ae20438b15a28c7f0b6552c3570c18abdbb6ef265fa9f497edebae1d808
23 DIST bottleneck-1.3.5.gh.tar.gz 118989 BLAKE2B 5b9338a77cb3f0253348f45e641dca9fce11b50fb632e697272203870dd604730c08f1adc94ebf9c6c21f551e3f06b5492bcb036d6f40eaec8853d08ca298873 SHA512 9a0f224337fd9d5c741a1e469197be26923eaffb143eddfe0969128ddc233c799da6a5f2ba4ef22f6267cf93e7f748c140fbb16f57149ad327c47fe87ffc3346
24
25 diff --git a/dev-python/bottleneck/bottleneck-1.3.4.ebuild b/dev-python/bottleneck/bottleneck-1.3.4.ebuild
26 deleted file mode 100644
27 index c53291d5bbf6..000000000000
28 --- a/dev-python/bottleneck/bottleneck-1.3.4.ebuild
29 +++ /dev/null
30 @@ -1,40 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -DISTUTILS_USE_PEP517=setuptools
37 -PYTHON_COMPAT=( python3_{8..11} )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Fast NumPy array functions written in C"
42 -HOMEPAGE="
43 - https://github.com/pydata/bottleneck/
44 - https://pypi.org/project/Bottleneck/
45 -"
46 -SRC_URI="
47 - https://github.com/pydata/bottleneck/archive/v${PV}.tar.gz
48 - -> ${P}.gh.tar.gz
49 -"
50 -
51 -LICENSE="BSD"
52 -SLOT="0"
53 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
54 -
55 -RDEPEND="
56 - >=dev-python/numpy-1.9.1[${PYTHON_USEDEP}]
57 -"
58 -DEPEND="${RDEPEND}"
59 -
60 -distutils_enable_tests pytest
61 -
62 -PATCHES=(
63 - # https://github.com/pydata/bottleneck/pull/403
64 - "${FILESDIR}"/${P}-install-test-data.patch
65 -)
66 -
67 -python_test() {
68 - cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
69 - epytest
70 -}
71
72 diff --git a/dev-python/bottleneck/files/bottleneck-1.3.4-install-test-data.patch b/dev-python/bottleneck/files/bottleneck-1.3.4-install-test-data.patch
73 deleted file mode 100644
74 index b1ac3edbcdf5..000000000000
75 --- a/dev-python/bottleneck/files/bottleneck-1.3.4-install-test-data.patch
76 +++ /dev/null
77 @@ -1,16 +0,0 @@
78 -diff --git a/setup.py b/setup.py
79 -index db629bd..b0c10cd 100644
80 ---- a/setup.py
81 -+++ b/setup.py
82 -@@ -185,7 +185,10 @@ metadata = dict(
83 - platforms="OS Independent",
84 - version=versioneer.get_version(),
85 - packages=find_packages(),
86 -- package_data={"bottleneck": ["LICENSE"]},
87 -+ package_data={
88 -+ "bottleneck": ["LICENSE"],
89 -+ "bottleneck.tests": ["data/*/*"],
90 -+ },
91 - requires=["numpy"],
92 - install_requires=["numpy"],
93 - extras_require={"doc": ["numpydoc", "sphinx", "gitpython"]},