Gentoo Archives: gentoo-commits

From: Piotr Karbowski <slashbeast@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/
Date: Sun, 03 Apr 2022 15:47:08
Message-Id: 1649000792.568cb2787fdf3e25cbfc632e7b0516d10e6e5a46.slashbeast@gentoo
1 commit: 568cb2787fdf3e25cbfc632e7b0516d10e6e5a46
2 Author: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 3 15:46:32 2022 +0000
4 Commit: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 3 15:46:32 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=568cb278
7
8 dev-python/kiwisolver: 1.4.2 version bump.
9
10 Closes: https://bugs.gentoo.org/836699
11 Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>
12
13 dev-python/kiwisolver/Manifest | 1 +
14 dev-python/kiwisolver/kiwisolver-1.4.2.ebuild | 32 +++++++++++++++++++++++++++
15 2 files changed, 33 insertions(+)
16
17 diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
18 index 3ff92de50951..7ad141296f3a 100644
19 --- a/dev-python/kiwisolver/Manifest
20 +++ b/dev-python/kiwisolver/Manifest
21 @@ -1,3 +1,4 @@
22 DIST kiwi-1.4.0.tar.gz 92361 BLAKE2B 773da71557d4c9fcd7778fa1771a1c52d0ca6aa4d698a33467a5a3fac8fd4bd3135aec9e836c96c4c18b2873e17743ce5cbc79c5dd1ea189f28adadcf2030e51 SHA512 6f69e232d5620be5f316d273066a1f8a78ebbef2dd8ee1ba56a2a57581fcc0c985fb0a51e6cca8436bcfeb51c4a95a865cde408c497bdec9c7e025f030744f54
23 DIST kiwi-1.4.1.tar.gz 91319 BLAKE2B ac8d9cf1e8960f436566e2ff8d589ff6707fc4458299bc33ff96387c36246d583e67ef84610b710b3d9364d8a4ae963577b4abfc3ddbfc18a417f956512479d9 SHA512 7178f26c96ebf4a173b563bc95d2a07a9f75b618fc953aa0d45a8c2719cf868e4409ad2c95280704ee593fc99d9e2c83b0628940b3571d1be712241464a9cd6d
24 +DIST kiwi-1.4.2.tar.gz 91150 BLAKE2B 8441d52267b3b436d9f05baabbd3beafc51d2f257fc982f1cf90b6296ccdbc24511de6b55b6201eb1df37ec9487282cc40142e9083cf4c1e925976a098927e1a SHA512 e7726ac7985bea1020fd3a26bf54b941acfffffb1f47b462c74f9829c5a89e7abd0732b5a11685b20d6a17ac9625178c68ea71052e852f91491a308d07111b01
25 DIST kiwisolver-1.3.2.tar.gz 89075 BLAKE2B 729880e3b18ac8c6c3e48d2fb32f00b4232118eb753f60837c7736c75a0f22e7a259aec46b76bc91286541847929eb4a92fcf9991650dea16d263f4d16beffc1 SHA512 e9ef20756df587b49f7b8e52ff388db6e2e551548ae7d60b6916586fb35249b10bda895a7be7635b300e6100ec1c7daf7d641de6d26d9b2c36055ac6c176302b
26
27 diff --git a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
28 new file mode 100644
29 index 000000000000..aa5a5cacb378
30 --- /dev/null
31 +++ b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
32 @@ -0,0 +1,32 @@
33 +# Copyright 1999-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +DISTUTILS_USE_PEP517=setuptools
39 +PYTHON_COMPAT=( python3_{8..10} )
40 +
41 +inherit distutils-r1
42 +
43 +MY_P=kiwi-${PV}
44 +DESCRIPTION="An efficient C++ implementation of the Cassowary constraint solving algorithm"
45 +HOMEPAGE="https://github.com/nucleic/kiwi/"
46 +SRC_URI="
47 + https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${MY_P}.tar.gz
48 +"
49 +S=${WORKDIR}/${MY_P}
50 +
51 +LICENSE="Clear-BSD"
52 +SLOT="0"
53 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
54 +
55 +RDEPEND="
56 + >=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]
57 +"
58 +BDEPEND="
59 + >=dev-python/setuptools_scm-3.4.3[${PYTHON_USEDEP}]
60 +"
61 +
62 +distutils_enable_tests pytest
63 +
64 +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}