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, 29 May 2022 19:16:08
Message-Id: 1653851751.fe8fe65882c0194210130ce823c2abe7478e9fb9.arthurzam@gentoo
1 commit: fe8fe65882c0194210130ce823c2abe7478e9fb9
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 29 19:11:28 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sun May 29 19:15:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe8fe658
7
8 dev-python/munkres: Use PEP517
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/munkres/munkres-1.1.4-r1.ebuild | 19 +++++++++++++++++++
13 1 file changed, 19 insertions(+)
14
15 diff --git a/dev-python/munkres/munkres-1.1.4-r1.ebuild b/dev-python/munkres/munkres-1.1.4-r1.ebuild
16 new file mode 100644
17 index 000000000000..32e4aee4b45c
18 --- /dev/null
19 +++ b/dev-python/munkres/munkres-1.1.4-r1.ebuild
20 @@ -0,0 +1,19 @@
21 +# Copyright 1999-2022 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_{8..10} )
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="Module implementing munkres algorithm for the Assignment Problem"
31 +HOMEPAGE="https://pypi.org/project/munkres/ https://github.com/bmc/munkres"
32 +SRC_URI="https://github.com/bmc/munkres/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
33 +S="${WORKDIR}/${PN}-release-${PV}"
34 +
35 +LICENSE="Apache-2.0"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +
39 +distutils_enable_tests pytest