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/toposort/
Date: Mon, 27 Feb 2023 19:33:17
Message-Id: 1677526292.5029513890ed8905d8f3028460479abdcba97b43.mgorny@gentoo
1 commit: 5029513890ed8905d8f3028460479abdcba97b43
2 Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
3 AuthorDate: Sun Feb 26 22:15:11 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 27 19:31:32 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50295138
7
8 dev-python/toposort: 1.10 version bump
9
10 Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
11 Closes: https://github.com/gentoo/gentoo/pull/29816
12 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
13
14 dev-python/toposort/Manifest | 1 +
15 dev-python/toposort/toposort-1.10.ebuild | 24 ++++++++++++++++++++++++
16 2 files changed, 25 insertions(+)
17
18 diff --git a/dev-python/toposort/Manifest b/dev-python/toposort/Manifest
19 index e0352e8e82f3..faa359912380 100644
20 --- a/dev-python/toposort/Manifest
21 +++ b/dev-python/toposort/Manifest
22 @@ -1 +1,2 @@
23 DIST toposort-1.9.tar.gz 10878 BLAKE2B fc2f6543ae74ea6e448ffe2be4e47438842b5ba95eac2f45fcc8d72e682054af0b80a0d453c5afaebeb1c9881d6874ab16ea523b19aad589545c8aae0b8cf255 SHA512 ec86f59f5e61b6d1c783965095f71693306a83a8b54a0661cddb3c51a5e2f9314075b453a901b5e3664b77d9e047901120622dbc23d642269a9546f41395388a
24 +DIST toposort-1.10.tar.gz 11132 BLAKE2B 373c9549cb5e64d2636fe8bd67d73a8eeab671243b562654660bc59c2ceddc4196fad3882bd68d873647ddf504a6c90174b5c995dbd7c8e457744b4daceaa099 SHA512 7578706b2b383f4e1c7228aebc2f590ec51953e36d594572d494bc928d4f207da7419a9b662a2f77426347f49d33f355f67f45e28226a7e4546d6c16c743dc4e
25
26 diff --git a/dev-python/toposort/toposort-1.10.ebuild b/dev-python/toposort/toposort-1.10.ebuild
27 new file mode 100644
28 index 000000000000..b42a68d9b06f
29 --- /dev/null
30 +++ b/dev-python/toposort/toposort-1.10.ebuild
31 @@ -0,0 +1,24 @@
32 +# Copyright 1999-2023 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DISTUTILS_USE_PEP517=setuptools
38 +PYTHON_COMPAT=( python3_{9..11} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Implements a topological sort algorithm"
43 +HOMEPAGE="
44 + https://gitlab.com/ericvsmith/toposort/
45 + https://pypi.org/project/toposort/
46 +"
47 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
48 +
49 +LICENSE="Apache-2.0"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~x86"
52 +
53 +python_test() {
54 + "${EPYTHON}" test/test_toposort.py -v || die "Tests failed with ${EPYTHON}"
55 +}