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/pythran/
Date: Thu, 20 Jan 2022 16:12:10
Message-Id: 1642695115.83e77dbb99c81094e2ea19eb10950eb54ffea8dd.mgorny@gentoo
1 commit: 83e77dbb99c81094e2ea19eb10950eb54ffea8dd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 20 15:19:56 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 20 16:11:55 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83e77dbb
7
8 dev-python/pythran: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pythran/Manifest | 1 -
13 dev-python/pythran/pythran-0.10.0.ebuild | 51 --------------------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/dev-python/pythran/Manifest b/dev-python/pythran/Manifest
17 index 65f819485dab..85fcad526efa 100644
18 --- a/dev-python/pythran/Manifest
19 +++ b/dev-python/pythran/Manifest
20 @@ -1,2 +1 @@
21 -DIST pythran-0.10.0.gh.tar.gz 3614984 BLAKE2B 82686479d475c6814392eb6c34e2d765ba36c88f9de3119f38c81b3f09d07acce8f5ab11b31114c13a1aa3bebd3699c540edcc6203401a007caf02c960a4733b SHA512 3d48d6f12fcd0317cb756eee18ad359057e4daee1a496023253b26febd2acf0fd22c3b4976bc8552a137d25052e4feaacf1917c5dc84414e9fbed66dff5c1614
22 DIST pythran-0.11.0.gh.tar.gz 3582011 BLAKE2B 532afe9edd84d2699254bcad330dc03fcda4defce73997ec9feecf1a9e0c8f4fd407a5c4ebae7e10f96463a43453137953dc3e4df010ae7fb63d540d41b79f53 SHA512 bd703148f26a0511f5a21e691e62f4e9b7bf5a92548f8ac837b2d24135917b71b052941180c9801f29c457018eb57e5f5107a509d6815d8dd8ddab1b8626b1a1
23
24 diff --git a/dev-python/pythran/pythran-0.10.0.ebuild b/dev-python/pythran/pythran-0.10.0.ebuild
25 deleted file mode 100644
26 index bf80f1f8a026..000000000000
27 --- a/dev-python/pythran/pythran-0.10.0.ebuild
28 +++ /dev/null
29 @@ -1,51 +0,0 @@
30 -# Copyright 2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -inherit distutils-r1 multiprocessing
37 -
38 -MY_P=${P/_p/.post}
39 -DESCRIPTION="Ahead of Time compiler for numeric kernels"
40 -HOMEPAGE="
41 - https://pypi.org/project/pythran/
42 - https://github.com/serge-sans-paille/pythran/"
43 -SRC_URI="
44 - https://github.com/serge-sans-paille/pythran/archive/${PV/_p/.post}.tar.gz
45 - -> ${MY_P}.gh.tar.gz"
46 -S=${WORKDIR}/${MY_P}
47 -
48 -LICENSE="BSD"
49 -SLOT="0"
50 -KEYWORDS="amd64 arm arm64 ppc64 ~riscv ~sparc x86"
51 -
52 -RDEPEND="
53 - =dev-python/beniget-0.4*[${PYTHON_USEDEP}]
54 - =dev-python/gast-0.5*[${PYTHON_USEDEP}]
55 - dev-python/numpy[${PYTHON_USEDEP}]
56 - >=dev-python/ply-3.4[${PYTHON_USEDEP}]"
57 -BDEPEND="
58 - test? (
59 - dev-python/ipython[${PYTHON_USEDEP}]
60 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
61 - dev-python/scipy[${PYTHON_USEDEP}]
62 - dev-python/wheel[${PYTHON_USEDEP}]
63 - virtual/cblas
64 - )"
65 -
66 -distutils_enable_tests pytest
67 -
68 -PATCHES=(
69 - "${FILESDIR}"/${PN}-0.10.0-tests-werror.patch
70 -)
71 -
72 -src_prepare() {
73 - sed -i -e '/pytest-runner/d' setup.py || die
74 - distutils-r1_src_prepare
75 -}
76 -
77 -python_test() {
78 - local -x COLUMNS=80
79 - epytest -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")"
80 -}