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