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/logical-unification/
Date: Thu, 20 Jan 2022 06:26:08
Message-Id: 1642659646.663d4dea08757daee1a6d8b4be22e65566a24f44.arthurzam@gentoo
1 commit: 663d4dea08757daee1a6d8b4be22e65566a24f44
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 20 06:20:46 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 20 06:20:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=663d4dea
7
8 dev-python/logical-unification: add 0.4.5
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/logical-unification/Manifest | 1 +
13 .../logical-unification-0.4.5.ebuild | 33 ++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/dev-python/logical-unification/Manifest b/dev-python/logical-unification/Manifest
17 index 5a65659aa59f..2fa74fb9b298 100644
18 --- a/dev-python/logical-unification/Manifest
19 +++ b/dev-python/logical-unification/Manifest
20 @@ -1 +1,2 @@
21 DIST logical-unification-0.4.4.gh.tar.gz 44705 BLAKE2B 2a120bd143fba81554a94bea12e007a1a1230f9cb47304e7248acbdbda59666e46bbfcfddf2fa95e422eecd5978a3eec51f1648e995c46e8467b423a96970cf9 SHA512 0742b105702efc9d17b48ce573e02e119adfbc30c0835fe2bae1266193d8e9ecefe0caec691cc214a29ecae6f7051c5b0d2f05f8d3910c29893d1822a97f5d5a
22 +DIST logical-unification-0.4.5.gh.tar.gz 47003 BLAKE2B 9f7e119a69b15b460ce66af137a3f0c3dd3da154173ac196a94d4894aafc67eeaa31d69c5ca8bdd6e264a3f7599f9e301dad103510c77e60ff14cc8af1c86ce8 SHA512 42af33ac7da6013d48d26ab49b84b40146f494963f1eee06256a219e8d0517b04cc3fe86f51cf19729fc64ad765e75a4890b278c2dbbf34eb7e1ef65f3014784
23
24 diff --git a/dev-python/logical-unification/logical-unification-0.4.5.ebuild b/dev-python/logical-unification/logical-unification-0.4.5.ebuild
25 new file mode 100644
26 index 000000000000..5c2147a08cf5
27 --- /dev/null
28 +++ b/dev-python/logical-unification/logical-unification-0.4.5.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 2022 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="Logical unification in Python"
39 +HOMEPAGE="
40 + https://pypi.org/project/logical-unification/
41 + https://github.com/pythological/unification/
42 +"
43 +SRC_URI="
44 + https://github.com/pythological/unification/archive/v${PV}.tar.gz
45 + -> ${P}.gh.tar.gz
46 +"
47 +S="${WORKDIR}/unification-${PV}"
48 +
49 +LICENSE="BSD"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
52 +
53 +RDEPEND="
54 + dev-python/multipledispatch[${PYTHON_USEDEP}]
55 + dev-python/toolz[${PYTHON_USEDEP}]
56 +"
57 +
58 +distutils_enable_tests pytest
59 +
60 +EPYTEST_DESELECT=(
61 + tests/test_benchmarks.py
62 +)