Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/munkres/
Date: Sun, 12 Sep 2021 15:50:01
Message-Id: 1631461766.490e1c03166398fc63f736b5160d7416adb7f656.arthurzam@gentoo
1 commit: 490e1c03166398fc63f736b5160d7416adb7f656
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 12 15:49:26 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 12 15:49:26 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=490e1c03
7
8 dev-python/munkres: add 1.1.4, EAPI=8, enable py3.10
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/munkres/Manifest | 1 +
13 dev-python/munkres/munkres-1.1.4.ebuild | 18 ++++++++++++++++++
14 2 files changed, 19 insertions(+)
15
16 diff --git a/dev-python/munkres/Manifest b/dev-python/munkres/Manifest
17 index 130b8b17e3f..2953568eef9 100644
18 --- a/dev-python/munkres/Manifest
19 +++ b/dev-python/munkres/Manifest
20 @@ -1 +1,2 @@
21 DIST munkres-1.1.2.tar.gz 11186 BLAKE2B 2ba5ab7ce85fdc06598829123ed334209f37c0fa4f82e863c78220db82e9b8b4c51c7369042bdac6e9b33b4d580145bdd37b5743f0b3f511141782588803cb0e SHA512 4a8b698f53812303f5020b4fc357f859a63d97370fe311d16ae959addd9cacee65667e430cd0d00496e423c1f0c7a3c8d4219ba49600a982de323fadd2c03bec
22 +DIST munkres-1.1.4.tar.gz 13777 BLAKE2B d783ac7a4fd55826ef3ddddd2ba82cf0499727e605a2414491af7dd9080193c53f1e48ed17dba9a462578bc958d3d9e2e1e413408143b4cfd0305f9cb3b6c517 SHA512 24ae7d04f4a6fe52f7bb9dc79bbee3e33425b85813382e2634e106a5d26d2d728ba8d34fab9390b7c3d651bc0e95214dcf9c94ac436636cd5b487a054b5a2c54
23
24 diff --git a/dev-python/munkres/munkres-1.1.4.ebuild b/dev-python/munkres/munkres-1.1.4.ebuild
25 new file mode 100644
26 index 00000000000..60083d981c8
27 --- /dev/null
28 +++ b/dev-python/munkres/munkres-1.1.4.ebuild
29 @@ -0,0 +1,18 @@
30 +# Copyright 1999-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
37 +
38 +DESCRIPTION="Module implementing munkres algorithm for the Assignment Problem"
39 +HOMEPAGE="https://pypi.org/project/munkres/ https://github.com/bmc/munkres"
40 +SRC_URI="https://github.com/bmc/munkres/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
41 +S="${WORKDIR}/${PN}-release-${PV}"
42 +
43 +LICENSE="Apache-2.0"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +distutils_enable_tests pytest