Gentoo Archives: gentoo-commits

From: Anna Vyalkova <cyber+gentoo@×××××.in>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/MutatorMath/
Date: Sun, 26 Feb 2023 22:42:43
Message-Id: 1677451295.90e56563897328f87ebe64254b141fa30cb9cabe.cybertailor@gentoo
1 commit: 90e56563897328f87ebe64254b141fa30cb9cabe
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Sun Feb 26 20:17:46 2023 +0000
4 Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
5 CommitDate: Sun Feb 26 22:41:35 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=90e56563
7
8 dev-python/MutatorMath: enable py3.11
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 dev-python/MutatorMath/Manifest | 2 +-
13 dev-python/MutatorMath/MutatorMath-3.0.1-r1.ebuild | 31 -------------------
14 dev-python/MutatorMath/MutatorMath-3.0.1-r2.ebuild | 36 ++++++++++++++++++++++
15 3 files changed, 37 insertions(+), 32 deletions(-)
16
17 diff --git a/dev-python/MutatorMath/Manifest b/dev-python/MutatorMath/Manifest
18 index fc02a1687..40ad3235a 100644
19 --- a/dev-python/MutatorMath/Manifest
20 +++ b/dev-python/MutatorMath/Manifest
21 @@ -1 +1 @@
22 -DIST MutatorMath-3.0.1.gh.tar.gz 234416 BLAKE2B 999b0fb3c5cca8252fc27efa099e5046d17604b77a38322fd3a13b7e96d7b6ac123dafe75f3a295e908ec8891e5342df319c7faca3612d953849895e8c99f17a SHA512 a1be360c866783543b375872a406eb61ac41ce21a6fd7c9b8d349758525c998d7d2613ad55208a5f8709a81c0ea8ea7e4bad76f0a554e8ce8e62aa6c9a00bbb5
23 +DIST MutatorMath-3.0.1.zip 421722 BLAKE2B bfa6f796ac0b67f2c8d22bdca9f1dfbcebe9b8185778563c1c67c5e8a5748cf0462e06d9e58dc5ea49e5986f9faeabb9310ce775281f9ee888262047b0f87dea SHA512 9f0af87f4811b27dd3b0e791a230fe0fa1e90e9605673d8753fb3966155483a37fd126646e4deeae79233e8ecc22ee042ae5f985a1bdc5e2696997eff444b801
24
25 diff --git a/dev-python/MutatorMath/MutatorMath-3.0.1-r1.ebuild b/dev-python/MutatorMath/MutatorMath-3.0.1-r1.ebuild
26 deleted file mode 100644
27 index 8e11d9d5a..000000000
28 --- a/dev-python/MutatorMath/MutatorMath-3.0.1-r1.ebuild
29 +++ /dev/null
30 @@ -1,31 +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 -PYTHON_COMPAT=( python3_{8..10} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="A library for piecewise linear interpolation in multiple dimensions"
41 -HOMEPAGE="https://github.com/LettError/MutatorMath"
42 -SRC_URI="https://github.com/LettError/MutatorMath/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
43 -
44 -KEYWORDS="~amd64"
45 -LICENSE="BSD"
46 -SLOT="0"
47 -
48 -RDEPEND="
49 - dev-python/defcon[${PYTHON_USEDEP}]
50 - dev-python/fontMath[${PYTHON_USEDEP}]
51 - >=dev-python/fonttools-3.32[${PYTHON_USEDEP}]
52 -"
53 -DEPEND="${RDEPEND}"
54 -BDEPEND="
55 - test? (
56 - dev-python/pytest[${PYTHON_USEDEP}]
57 - dev-python/unicodedata2[${PYTHON_USEDEP}]
58 - )
59 -"
60 -
61 -distutils_enable_tests setup.py
62
63 diff --git a/dev-python/MutatorMath/MutatorMath-3.0.1-r2.ebuild b/dev-python/MutatorMath/MutatorMath-3.0.1-r2.ebuild
64 new file mode 100644
65 index 000000000..92758d459
66 --- /dev/null
67 +++ b/dev-python/MutatorMath/MutatorMath-3.0.1-r2.ebuild
68 @@ -0,0 +1,36 @@
69 +# Copyright 1999-2023 Gentoo Authors
70 +# Distributed under the terms of the GNU General Public License v2
71 +
72 +EAPI=8
73 +
74 +PYTHON_COMPAT=( python3_{9..11} )
75 +DISTUTILS_USE_PEP517=setuptools
76 +PYPI_NO_NORMALIZE=1
77 +inherit distutils-r1 pypi
78 +
79 +DESCRIPTION="A library for piecewise linear interpolation in multiple dimensions"
80 +HOMEPAGE="
81 + https://pypi.org/project/MutatorMath/
82 + https://github.com/LettError/MutatorMath
83 +"
84 +SRC_URI="$(pypi_sdist_url --no-normalize ${PN} ${PV} .zip)"
85 +
86 +KEYWORDS="~amd64"
87 +LICENSE="BSD"
88 +SLOT="0"
89 +
90 +RDEPEND="
91 + dev-python/defcon[${PYTHON_USEDEP}]
92 + dev-python/fontMath[${PYTHON_USEDEP}]
93 + >=dev-python/fonttools-3.32[${PYTHON_USEDEP}]
94 +"
95 +BDEPEND="
96 + app-arch/unzip
97 + test? (
98 + >=dev-python/unicodedata2-15.0.0[${PYTHON_USEDEP}]
99 + )
100 +"
101 +
102 +DOCS=( Docs README.rst )
103 +
104 +distutils_enable_tests setup.py