[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2024-05-30 Thread Petr Vaněk
commit: b0b435a2e42f00e6fa866ed7e31ca39d8a876cee
Author: Petr Vaněk  gentoo  org>
AuthorDate: Thu May 30 13:59:07 2024 +
Commit: Petr Vaněk  gentoo  org>
CommitDate: Thu May 30 14:00:39 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0b435a2

dev-python/kiwisolver: enable py3.13

Signed-off-by: Petr Vaněk  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
index cd565903a26c..bb2c79b2d431 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 DISTUTILS_EXT=1
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} pypy3 )
+PYTHON_COMPAT=( python3_{10..13} pypy3 )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/files/, dev-python/kiwisolver/

2023-12-07 Thread Michał Górny
commit: aa2a27f8f81d5f077b547d35068fc961a70dedf0
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec  7 17:23:25 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec  7 17:23:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa2a27f8

dev-python/kiwisolver: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest |  1 -
 .../files/kiwisolver-1.4.4-pypy3-tests.patch   | 30 ---
 dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild   | 45 --
 3 files changed, 76 deletions(-)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index 8fc3163399dd..cead14b39286 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1,2 +1 @@
-DIST kiwi-1.4.4.gh.tar.gz 91343 BLAKE2B 
a5e345509e7294eaf89e1361c035b3ef5d672d335682dbb426196d22876762b1f729cc728300f731a42afbfdf2828591f83cc53daf28e8d4c451a1b246b4800f
 SHA512 
9a7ed487bb28f8c430543dc21ea59156078c129fd29b1382f1578368e72f312f4e813eb4501e4c9387647b42b085b93d4bd27d0e846f1396fa4ce68fd9e9ba5f
 DIST kiwi-1.4.5.gh.tar.gz 91741 BLAKE2B 
cebdf8269b063d10f85a303cf5fa850f87c911aff9be37ae2b6762f021ea25b8b8cb3759e7e4292bc8c2fdbdf5d73ef6295263f541adb283969509cc11d8428a
 SHA512 
889e106c27915cb773bc13969605812c1ca01a139e992d2b3517eb20989ae41392bfdcdd63184ab13eff5109d167869087ea09149b1527e56a3455213b14

diff --git a/dev-python/kiwisolver/files/kiwisolver-1.4.4-pypy3-tests.patch 
b/dev-python/kiwisolver/files/kiwisolver-1.4.4-pypy3-tests.patch
deleted file mode 100644
index 705855f02f61..
--- a/dev-python/kiwisolver/files/kiwisolver-1.4.4-pypy3-tests.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-Patch provided upstream as https://github.com/nucleic/kiwi/pull/158
-from issue created at https://github.com/nucleic/kiwi/issues/157
-
-commit ad1c62f046dc14c1e85e4e1c1b8e175eda08838e
-Author: Jérôme Carretero 
-Date:   Fri Feb 17 18:40:45 2023 -0500
-
-py: tests: make tests run under PyPy
-
-diff --git a/py/tests/test_expression.py b/py/tests/test_expression.py
-index 671dd7f..6b5d8e5 100644
 a/py/tests/test_expression.py
-+++ b/py/tests/test_expression.py
-@@ -8,6 +8,7 @@
- import gc
- import math
- import operator
-+import sys
- from typing import Tuple
- 
- import pytest
-@@ -264,4 +265,7 @@ def test_expression_rich_compare_operations(op, symbol) -> 
None:
- else:
- with pytest.raises(TypeError) as excinfo:
- op(e1, e2)
--assert "kiwisolver.Expression" in excinfo.exconly()
-+if "PyPy" in sys.version:
-+assert "Expression" in excinfo.exconly()
-+else:
-+assert "kiwisolver.Expression" in excinfo.exconly()

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
deleted file mode 100644
index 96b90cf0ac22..
--- a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} pypy3 )
-
-inherit distutils-r1
-
-MY_P=kiwi-${PV}
-DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
-HOMEPAGE="
-   https://github.com/nucleic/kiwi/
-   https://pypi.org/project/kiwisolver/
-"
-SRC_URI="
-   https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> 
${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="Clear-BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 sparc x86 ~arm64-macos ~x64-macos"
-
-COMMON_DEPEND="
-   >=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]
-"
-
-RDEPEND="
-   ${COMMON_DEPEND}
-"
-BDEPEND="
-   ${COMMON_DEPEND}
-   >=dev-python/setuptools-scm-3.4.3[${PYTHON_USEDEP}]
-"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.4.4-pypy3-tests.patch"
-)
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-09-27 Thread Arthur Zamarin
commit: c7482a14b12457089c9dacc3b8a65f3cbe2ec833
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Sep 27 19:22:51 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Sep 27 19:22:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7482a14

dev-python/kiwisolver: Stabilize 1.4.5 hppa, #914673

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
index de5eebbaa9cc..67fbe0a49dde 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 sparc x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 sparc x86 ~arm64-macos ~x64-macos"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-09-25 Thread Arthur Zamarin
commit: f5d306c90f1a22789cc8bb38345b3d842a29fd9b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 25 18:31:50 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 25 18:31:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5d306c9

dev-python/kiwisolver: Stabilize 1.4.5 amd64, #914673

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
index 18eb607a1a78..9abb6e71bf35 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 sparc ~x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 sparc ~x86 ~arm64-macos ~x64-macos"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-09-25 Thread Arthur Zamarin
commit: d611c7fc1fddde2ce1a5d9892cc4f3622a9ea1ef
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 25 18:31:51 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 25 18:31:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d611c7fc

dev-python/kiwisolver: Stabilize 1.4.5 x86, #914673

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
index 9abb6e71bf35..de5eebbaa9cc 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 sparc ~x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 sparc x86 ~arm64-macos ~x64-macos"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-09-25 Thread Arthur Zamarin
commit: 33e106fb929ff9d6a670817f17336c7c21164a6a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 25 17:33:14 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 25 17:33:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33e106fb

dev-python/kiwisolver: Stabilize 1.4.5 ppc64, #914673

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
index 075a8384eaa1..18eb607a1a78 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 sparc ~x86 ~arm64-macos ~x64-macos"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-09-25 Thread Arthur Zamarin
commit: e31d6eadce2f879a50880dd2c6b6e8cf38b4554b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 25 17:12:24 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 25 17:12:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e31d6ead

dev-python/kiwisolver: Stabilize 1.4.5 arm64, #914673

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
index 334821cd3fab..075a8384eaa1 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~arm64-macos ~x64-macos"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-09-25 Thread Arthur Zamarin
commit: 765b2f9260fef5362b15e401831ffd6d87b33d2e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 25 16:56:51 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 25 16:56:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=765b2f92

dev-python/kiwisolver: Stabilize 1.4.5 arm, #914673

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
index 9b0b75445ae9..334821cd3fab 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 sparc ~x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~arm64-macos ~x64-macos"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-09-25 Thread Arthur Zamarin
commit: 8bd61e227579399a407f4a8a80acaacb623a0dc6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 25 16:52:56 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 25 16:52:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bd61e22

dev-python/kiwisolver: Stabilize 1.4.5 sparc, #914673

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
index ed4f453ecfaf..9b0b75445ae9 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 sparc ~x86 ~arm64-macos ~x64-macos"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-08-25 Thread Michał Górny
commit: 1ff2abfc51148e61aa7811da34d52ee3d42eafbe
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Aug 25 09:24:30 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Aug 25 09:49:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ff2abfc

dev-python/kiwisolver: Bump to 1.4.5

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest|  1 +
 dev-python/kiwisolver/kiwisolver-1.4.5.ebuild | 41 +++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index 806e607d5d45..8fc3163399dd 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1 +1,2 @@
 DIST kiwi-1.4.4.gh.tar.gz 91343 BLAKE2B 
a5e345509e7294eaf89e1361c035b3ef5d672d335682dbb426196d22876762b1f729cc728300f731a42afbfdf2828591f83cc53daf28e8d4c451a1b246b4800f
 SHA512 
9a7ed487bb28f8c430543dc21ea59156078c129fd29b1382f1578368e72f312f4e813eb4501e4c9387647b42b085b93d4bd27d0e846f1396fa4ce68fd9e9ba5f
+DIST kiwi-1.4.5.gh.tar.gz 91741 BLAKE2B 
cebdf8269b063d10f85a303cf5fa850f87c911aff9be37ae2b6762f021ea25b8b8cb3759e7e4292bc8c2fdbdf5d73ef6295263f541adb283969509cc11d8428a
 SHA512 
889e106c27915cb773bc13969605812c1ca01a139e992d2b3517eb20989ae41392bfdcdd63184ab13eff5109d167869087ea09149b1527e56a3455213b14

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
new file mode 100644
index ..ed4f453ecfaf
--- /dev/null
+++ b/dev-python/kiwisolver/kiwisolver-1.4.5.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1
+
+MY_P=kiwi-${PV}
+DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
+HOMEPAGE="
+   https://github.com/nucleic/kiwi/
+   https://pypi.org/project/kiwisolver/
+"
+SRC_URI="
+   https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> 
${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Clear-BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+
+COMMON_DEPEND="
+   >=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]
+"
+
+RDEPEND="
+   ${COMMON_DEPEND}
+"
+BDEPEND="
+   ${COMMON_DEPEND}
+   >=dev-python/setuptools-scm-3.4.3[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-06-06 Thread Michał Górny
commit: 1c2851da98210b0a5d83c13b9c57c80e602f4239
Author: Petr Vaněk  atlas  cz>
AuthorDate: Mon Jun  5 14:45:47 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun  6 06:13:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c2851da

dev-python/kiwisolver: enable py3.12

Signed-off-by: Petr Vaněk  atlas.cz>
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
index 40a6d2e43091..ceb018103699 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 DISTUTILS_EXT=1
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-05-04 Thread Michał Górny
commit: d44b2676461027589363438985d3018f0be0ae2e
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May  4 16:13:59 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May  4 16:17:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d44b2676

dev-python/kiwisolver: Set DISTUTILS_EXT=1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
index 46c8a281cc4b..40a6d2e43091 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=8
 
+DISTUTILS_EXT=1
 DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{9..11} pypy3 )
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-04-05 Thread Michał Górny
commit: 5971b55ee858b22412cdfcd4fd0eeea8032ffd4a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Apr  5 15:56:15 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Apr  5 15:58:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5971b55e

dev-python/kiwisolver: Fix whitespace

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
index 76e3219207e5..46c8a281cc4b 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
@@ -36,7 +36,7 @@ BDEPEND="
 "
 
 PATCHES=(
- "${FILESDIR}/${PN}-1.4.4-pypy3-tests.patch"
+   "${FILESDIR}/${PN}-1.4.4-pypy3-tests.patch"
 )
 
 distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-04-05 Thread Michał Górny
commit: cca149dee27d36c429d096c848044a5b895d9d3f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Apr  5 15:52:26 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Apr  5 15:58:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cca149de

dev-python/kiwisolver: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4.ebuild | 40 ---
 1 file changed, 40 deletions(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
deleted file mode 100644
index 2aa34a745b32..
--- a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-MY_P=kiwi-${PV}
-DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
-HOMEPAGE="
-   https://github.com/nucleic/kiwi/
-   https://pypi.org/project/kiwisolver/
-"
-SRC_URI="
-   https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> 
${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="Clear-BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 sparc x86"
-
-COMMON_DEPEND="
-   >=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]
-"
-
-RDEPEND="
-   ${COMMON_DEPEND}
-"
-BDEPEND="
-   ${COMMON_DEPEND}
-   >=dev-python/setuptools-scm-3.4.3[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-04-05 Thread Arthur Zamarin
commit: 38bc2f9fe47ee507ba9d2c0228fed2ebdae696aa
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr  5 12:44:28 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr  5 12:44:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38bc2f9f

dev-python/kiwisolver: Stabilize 1.4.4-r1 sparc, #903846

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
index 8c0f0728e8d1..76e3219207e5 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 sparc x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-04-05 Thread Arthur Zamarin
commit: 4a07414c9293b1e1fadd3cdea3d89ea4ea2be274
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr  5 10:10:09 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr  5 10:10:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a07414c

dev-python/kiwisolver: Stabilize 1.4.4-r1 hppa, #903846

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
index c2dd2ce196e6..8c0f0728e8d1 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 ~sparc x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-04-05 Thread Arthur Zamarin
commit: 686eee66f93f472ad4617cb2ac051165c1b3a432
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr  5 09:30:10 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr  5 09:30:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=686eee66

dev-python/kiwisolver: Stabilize 1.4.4-r1 ppc, #903846

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
index 5692c5e18dfb..c2dd2ce196e6 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 ~sparc x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-04-05 Thread Arthur Zamarin
commit: 0c70b56059e4db621de11930177f4006260f807d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr  5 08:26:14 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr  5 08:26:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c70b560

dev-python/kiwisolver: Stabilize 1.4.4-r1 arm, #903846

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
index decb09642ef8..5692c5e18dfb 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 ~sparc x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-04-05 Thread Arthur Zamarin
commit: 63472ec8bcecf8dd1a90619a37ba6768651c70e7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr  5 07:23:33 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr  5 07:23:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63472ec8

dev-python/kiwisolver: Stabilize 1.4.4-r1 arm64, #903846

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
index f52b8bc052a5..decb09642ef8 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 ~sparc x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-04-05 Thread Arthur Zamarin
commit: 43a318cc060b45c822a765c9c78f9d621acb8fbd
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr  5 07:23:32 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr  5 07:23:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43a318cc

dev-python/kiwisolver: Stabilize 1.4.4-r1 x86, #903846

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
index bb568f76f6b5..f52b8bc052a5 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 ~sparc x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-04-05 Thread Arthur Zamarin
commit: 818c9921b6b71b5cc16bb7e3fd5cb6027353fd7b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr  5 07:12:43 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr  5 07:12:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=818c9921

dev-python/kiwisolver: Stabilize 1.4.4-r1 ppc64, #903846

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
index 58d4607da787..bb568f76f6b5 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2023-04-05 Thread Arthur Zamarin
commit: 9d4891d42f826ad9cbcd116aa8e87105b808deb4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr  5 06:59:59 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr  5 06:59:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d4891d4

dev-python/kiwisolver: Stabilize 1.4.4-r1 amd64, #903846

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
index 69b285bb9c1b..58d4607da787 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/files/, dev-python/kiwisolver/

2023-02-19 Thread Michał Górny
commit: 0a8b9367a2cdcf49814e4d8c48efbe0196d56f2b
Author: Jérôme Carretero  zougloub  eu>
AuthorDate: Fri Feb 17 19:07:08 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 19 19:46:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a8b9367

dev-python/kiwisolver: add pypy3 to PYTHON_COMPAT

Signed-off-by: Jérôme Carretero  zougloub.eu>
Signed-off-by: Michał Górny  gentoo.org>

 .../files/kiwisolver-1.4.4-pypy3-tests.patch   | 30 +++
 dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild   | 44 ++
 2 files changed, 74 insertions(+)

diff --git a/dev-python/kiwisolver/files/kiwisolver-1.4.4-pypy3-tests.patch 
b/dev-python/kiwisolver/files/kiwisolver-1.4.4-pypy3-tests.patch
new file mode 100644
index ..705855f02f61
--- /dev/null
+++ b/dev-python/kiwisolver/files/kiwisolver-1.4.4-pypy3-tests.patch
@@ -0,0 +1,30 @@
+Patch provided upstream as https://github.com/nucleic/kiwi/pull/158
+from issue created at https://github.com/nucleic/kiwi/issues/157
+
+commit ad1c62f046dc14c1e85e4e1c1b8e175eda08838e
+Author: Jérôme Carretero 
+Date:   Fri Feb 17 18:40:45 2023 -0500
+
+py: tests: make tests run under PyPy
+
+diff --git a/py/tests/test_expression.py b/py/tests/test_expression.py
+index 671dd7f..6b5d8e5 100644
+--- a/py/tests/test_expression.py
 b/py/tests/test_expression.py
+@@ -8,6 +8,7 @@
+ import gc
+ import math
+ import operator
++import sys
+ from typing import Tuple
+ 
+ import pytest
+@@ -264,4 +265,7 @@ def test_expression_rich_compare_operations(op, symbol) -> 
None:
+ else:
+ with pytest.raises(TypeError) as excinfo:
+ op(e1, e2)
+-assert "kiwisolver.Expression" in excinfo.exconly()
++if "PyPy" in sys.version:
++assert "Expression" in excinfo.exconly()
++else:
++assert "kiwisolver.Expression" in excinfo.exconly()

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
new file mode 100644
index ..67d18ec3f1e7
--- /dev/null
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4-r1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} pypy3 )
+
+inherit distutils-r1
+
+MY_P=kiwi-${PV}
+DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
+HOMEPAGE="
+   https://github.com/nucleic/kiwi/
+   https://pypi.org/project/kiwisolver/
+"
+SRC_URI="
+   https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> 
${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Clear-BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+COMMON_DEPEND="
+   >=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]
+"
+
+RDEPEND="
+   ${COMMON_DEPEND}
+"
+BDEPEND="
+   ${COMMON_DEPEND}
+   >=dev-python/setuptools_scm-3.4.3[${PYTHON_USEDEP}]
+"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-1.4.4-pypy3-tests.patch"
+)
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-08-18 Thread Michał Górny
commit: 17e7abb863ec6f057bc979150065ae455be1f374
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 18 09:47:07 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 18 09:48:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17e7abb8

dev-python/kiwisolver: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest|  1 -
 dev-python/kiwisolver/kiwisolver-1.4.3.ebuild | 37 ---
 2 files changed, 38 deletions(-)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index df7e9a2f95dc..806e607d5d45 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1,2 +1 @@
-DIST kiwi-1.4.3.gh.tar.gz 91238 BLAKE2B 
bdd6164eb428e6769ae7de2a8e689a3944e13e81aef9a839d9f68459deb7e7c0840b0eb59e70932e5c1d835444c515c8cb66fa47f40d8fc6244de47852be57d6
 SHA512 
0420da46e772f2d25a481c4d966dc7bab8a541434a7c183e1b4f41ccd6e06aec564f2a95dae649585d337c1bf818a7cf24727460ad14669a3b3d74c74274
 DIST kiwi-1.4.4.gh.tar.gz 91343 BLAKE2B 
a5e345509e7294eaf89e1361c035b3ef5d672d335682dbb426196d22876762b1f729cc728300f731a42afbfdf2828591f83cc53daf28e8d4c451a1b246b4800f
 SHA512 
9a7ed487bb28f8c430543dc21ea59156078c129fd29b1382f1578368e72f312f4e813eb4501e4c9387647b42b085b93d4bd27d0e846f1396fa4ce68fd9e9ba5f

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
deleted file mode 100644
index 611d0160aa2c..
--- a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-MY_P=kiwi-${PV}
-DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
-HOMEPAGE="https://github.com/nucleic/kiwi/;
-SRC_URI="
-   https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> 
${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="Clear-BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
-
-COMMON_DEPEND="
-   >=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]
-"
-
-RDEPEND="
-   ${COMMON_DEPEND}
-"
-BDEPEND="
-   ${COMMON_DEPEND}
-   >=dev-python/setuptools_scm-3.4.3[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-08-18 Thread Agostino Sarubbo
commit: 1b290437a7723e2b5b1d847260d6fec36a8a91bd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 18 06:59:50 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 18 06:59:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b290437

dev-python/kiwisolver: amd64 stable wrt bug #865581

Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
index 566c2ff32009..a49ab8f01ff0 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-08-17 Thread Sam James
commit: 422d50028a40fe14a0ab2397fcd524c32f70fc91
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 17 21:12:15 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 17 21:12:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=422d5002

dev-python/kiwisolver: Stabilize 1.4.4 x86, #865581

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
index 7532afe2d7da..566c2ff32009 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-08-17 Thread Arthur Zamarin
commit: 5c6e56ae922e35d9a9e559db7f48f7d720035a8f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Aug 17 19:02:17 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Aug 17 19:02:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c6e56ae

dev-python/kiwisolver: Stabilize 1.4.4 arm, #865581

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
index 1ecd37b9b7a8..b0e0d6183fe4 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
~sparc ~x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-08-17 Thread Arthur Zamarin
commit: d51f889cd0879b54e8ef022c73e72f489372135c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Aug 17 19:02:19 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Aug 17 19:02:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d51f889c

dev-python/kiwisolver: Stabilize 1.4.4 sparc, #865581

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
index 41e80bf39258..7532afe2d7da 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-08-17 Thread Arthur Zamarin
commit: b0dd003f6d61e28327f0481991feea2c0f52d4d6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Aug 17 19:02:18 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Aug 17 19:02:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0dd003f

dev-python/kiwisolver: Stabilize 1.4.4 hppa, #865581

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
index b0e0d6183fe4..41e80bf39258 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
~sparc ~x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-08-17 Thread Arthur Zamarin
commit: 899dc78bf18b573f53ed5bf853cea6576bb14778
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Aug 17 18:53:29 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Aug 17 18:53:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=899dc78b

dev-python/kiwisolver: Stabilize 1.4.4 ppc64, #865581

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
index 031de3d3b86c..1ecd37b9b7a8 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
~sparc ~x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-08-17 Thread Arthur Zamarin
commit: 13ade1dd24f52bbbcb15d28bcca059c9f7611eb6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Aug 17 18:52:49 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Aug 17 18:52:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13ade1dd

dev-python/kiwisolver: Stabilize 1.4.4 ppc, #865581

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
index 82f300263632..031de3d3b86c 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-08-17 Thread Sam James
commit: d501390efc1ef7ddea803e208d7fbf38ce1fc6c3
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 17 18:45:19 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 17 18:45:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d501390e

dev-python/kiwisolver: Stabilize 1.4.4 arm64, #865581

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
index c41c617402ab..82f300263632 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
@@ -21,7 +21,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-07-16 Thread Michał Górny
commit: ba9a6029cae3914b50bc66f32c84aa8505b0847e
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jul 16 06:29:37 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jul 16 08:02:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba9a6029

dev-python/kiwisolver: Bump to 1.4.4

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest|  1 +
 dev-python/kiwisolver/kiwisolver-1.4.4.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index df3d7c5b6935..df7e9a2f95dc 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1 +1,2 @@
 DIST kiwi-1.4.3.gh.tar.gz 91238 BLAKE2B 
bdd6164eb428e6769ae7de2a8e689a3944e13e81aef9a839d9f68459deb7e7c0840b0eb59e70932e5c1d835444c515c8cb66fa47f40d8fc6244de47852be57d6
 SHA512 
0420da46e772f2d25a481c4d966dc7bab8a541434a7c183e1b4f41ccd6e06aec564f2a95dae649585d337c1bf818a7cf24727460ad14669a3b3d74c74274
+DIST kiwi-1.4.4.gh.tar.gz 91343 BLAKE2B 
a5e345509e7294eaf89e1361c035b3ef5d672d335682dbb426196d22876762b1f729cc728300f731a42afbfdf2828591f83cc53daf28e8d4c451a1b246b4800f
 SHA512 
9a7ed487bb28f8c430543dc21ea59156078c129fd29b1382f1578368e72f312f4e813eb4501e4c9387647b42b085b93d4bd27d0e846f1396fa4ce68fd9e9ba5f

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
new file mode 100644
index ..c41c617402ab
--- /dev/null
+++ b/dev-python/kiwisolver/kiwisolver-1.4.4.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+MY_P=kiwi-${PV}
+DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
+HOMEPAGE="
+   https://github.com/nucleic/kiwi/
+   https://pypi.org/project/kiwisolver/
+"
+SRC_URI="
+   https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> 
${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Clear-BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+COMMON_DEPEND="
+   >=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]
+"
+
+RDEPEND="
+   ${COMMON_DEPEND}
+"
+BDEPEND="
+   ${COMMON_DEPEND}
+   >=dev-python/setuptools_scm-3.4.3[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/files/, dev-python/kiwisolver/

2022-06-21 Thread Michał Górny
commit: c6b82c6f9ba271ed07fcf6d98dbfed136a171f9a
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 21 17:09:34 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 21 17:09:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6b82c6f

dev-python/kiwisolver: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest |  1 -
 .../files/kiwisolver-1.4.2-python311.patch | 31 
 dev-python/kiwisolver/kiwisolver-1.4.2.ebuild  | 41 --
 3 files changed, 73 deletions(-)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index cf788ddcd3e5..df3d7c5b6935 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1,2 +1 @@
-DIST kiwi-1.4.2.tar.gz 91150 BLAKE2B 
8441d52267b3b436d9f05baabbd3beafc51d2f257fc982f1cf90b6296ccdbc24511de6b55b6201eb1df37ec9487282cc40142e9083cf4c1e925976a098927e1a
 SHA512 
e7726ac7985bea1020fd3a26bf54b941acfb1f47b462c74f9829c5a89e7abd0732b5a11685b20d6a17ac9625178c68ea71052e852f91491a308d07111b01
 DIST kiwi-1.4.3.gh.tar.gz 91238 BLAKE2B 
bdd6164eb428e6769ae7de2a8e689a3944e13e81aef9a839d9f68459deb7e7c0840b0eb59e70932e5c1d835444c515c8cb66fa47f40d8fc6244de47852be57d6
 SHA512 
0420da46e772f2d25a481c4d966dc7bab8a541434a7c183e1b4f41ccd6e06aec564f2a95dae649585d337c1bf818a7cf24727460ad14669a3b3d74c74274

diff --git a/dev-python/kiwisolver/files/kiwisolver-1.4.2-python311.patch 
b/dev-python/kiwisolver/files/kiwisolver-1.4.2-python311.patch
deleted file mode 100644
index a03af53a0280..
--- a/dev-python/kiwisolver/files/kiwisolver-1.4.2-python311.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-https://github.com/nucleic/kiwi/commit/f14059f532d6b5c6b505d9803b36a77b75546b18.patch
-https://bugs.gentoo.org/849563
-
-From f14059f532d6b5c6b505d9803b36a77b75546b18 Mon Sep 17 00:00:00 2001
-From: Matthieu Dartiailh 
-Date: Fri, 3 Jun 2022 09:11:18 +0200
-Subject: [PATCH] py: use nullptr instead of 0 in PyTuple_SET_ITEM
-
 a/py/src/symbolics.h
-+++ b/py/src/symbolics.h
-@@ -123,7 +123,7 @@ PyObject* BinaryMul::operator()( Expression* first, double 
second )
-   return 0;
-   Py_ssize_t end = PyTuple_GET_SIZE( first->terms );
-   for( Py_ssize_t i = 0; i < end; ++i )  // memset 0 for safe error return
--  PyTuple_SET_ITEM( terms.get(), i, 0 );
-+  PyTuple_SET_ITEM( terms.get(), i, nullptr );
-   for( Py_ssize_t i = 0; i < end; ++i )
-   {
-   PyObject* item = PyTuple_GET_ITEM( first->terms, i );
 a/py/src/util.h
-+++ b/py/src/util.h
-@@ -117,7 +117,7 @@ make_terms( const std::map& coeffs )
- return 0;
- Py_ssize_t size = PyTuple_GET_SIZE( terms.get() );
- for( Py_ssize_t i = 0; i < size; ++i ) // zero tuple for safe early return
--PyTuple_SET_ITEM( terms.get(), i, 0 );
-+PyTuple_SET_ITEM( terms.get(), i, nullptr );
- Py_ssize_t i = 0;
- iter_t it = coeffs.begin();
- iter_t end = coeffs.end();
-

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
deleted file mode 100644
index e29fa7eee534..
--- a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-MY_P=kiwi-${PV}
-DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
-HOMEPAGE="https://github.com/nucleic/kiwi/;
-SRC_URI="
-   https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${MY_P}.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="Clear-BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
-
-COMMON_DEPEND="
-   >=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]
-"
-
-RDEPEND="
-   ${COMMON_DEPEND}
-"
-BDEPEND="
-   ${COMMON_DEPEND}
-   >=dev-python/setuptools_scm-3.4.3[${PYTHON_USEDEP}]
-"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.4.2-python311.patch
-)
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-06-21 Thread Jakov Smolić
commit: 59210f2bf51c3a87a798b0e6424134bc157cdc93
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Jun 21 16:11:54 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Tue Jun 21 16:11:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59210f2b

dev-python/kiwisolver: Stabilize 1.4.3 arm, #852668

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
index afaaa41897c5..611d0160aa2c 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-06-20 Thread Arthur Zamarin
commit: cdfee9d21a96bc870500b8b901f6b95dafa82c66
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Jun 20 17:49:03 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Jun 20 17:49:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdfee9d2

dev-python/kiwisolver: Stabilize 1.4.3 hppa, #852668

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
index a393776626ab..afaaa41897c5 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-06-20 Thread Agostino Sarubbo
commit: fd6616e49b48c70c28868c2274deecef336d12d5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Jun 20 06:35:43 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Jun 20 06:35:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd6616e4

dev-python/kiwisolver: x86 stable wrt bug #852668

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
index b49baca27870..a393776626ab 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-06-20 Thread Agostino Sarubbo
commit: 5fd8a41ca176c38ee59f4af1458db77ae83aad6c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Jun 20 06:35:22 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Jun 20 06:35:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fd8a41c

dev-python/kiwisolver: sparc stable wrt bug #852668

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
index 37cfd27f7c28..b49baca27870 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-06-20 Thread Agostino Sarubbo
commit: 37e3fd96a6c238b642c8c35ce8a1ab24c357f7cb
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Jun 20 06:34:20 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Jun 20 06:34:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37e3fd96

dev-python/kiwisolver: arm64 stable wrt bug #852668

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="arm64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
index c136ed6e88b4..37cfd27f7c28 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
~sparc ~x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-06-19 Thread Sam James
commit: 0145b3f1761ea001b817307b2a21daacbe679e27
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 19 22:44:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 19 22:44:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0145b3f1

dev-python/kiwisolver: Stabilize 1.4.3 ppc64, #852668

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
index cead46be5c5a..d856d97e9446 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ppc64 ~riscv ~s390 
~sparc ~x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-06-19 Thread Sam James
commit: 3d350a0bdcaf40dd378ca9eedb59641cdb91d00f
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 19 22:44:57 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 19 22:44:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d350a0b

dev-python/kiwisolver: Stabilize 1.4.3 ppc, #852668

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
index d856d97e9446..c136ed6e88b4 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
~sparc ~x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-06-19 Thread Jakov Smolić
commit: 1b41ee638ee64325d1af65d634117d756f1b0083
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Jun 19 08:29:36 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun Jun 19 08:29:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b41ee63

dev-python/kiwisolver: Stabilize 1.4.3 amd64, #852668

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
index e95cba1dacff..cead46be5c5a 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-06-13 Thread Arthur Zamarin
commit: 19b92e12e2e7ccebbc856a16b5dc2f4cd790c77f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Jun 13 16:45:22 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Jun 13 16:45:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19b92e12

dev-python/kiwisolver: add 1.4.3

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/Manifest|  1 +
 dev-python/kiwisolver/kiwisolver-1.4.3.ebuild | 37 +++
 2 files changed, 38 insertions(+)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index aae4c2647ef5..cf788ddcd3e5 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1 +1,2 @@
 DIST kiwi-1.4.2.tar.gz 91150 BLAKE2B 
8441d52267b3b436d9f05baabbd3beafc51d2f257fc982f1cf90b6296ccdbc24511de6b55b6201eb1df37ec9487282cc40142e9083cf4c1e925976a098927e1a
 SHA512 
e7726ac7985bea1020fd3a26bf54b941acfb1f47b462c74f9829c5a89e7abd0732b5a11685b20d6a17ac9625178c68ea71052e852f91491a308d07111b01
+DIST kiwi-1.4.3.gh.tar.gz 91238 BLAKE2B 
bdd6164eb428e6769ae7de2a8e689a3944e13e81aef9a839d9f68459deb7e7c0840b0eb59e70932e5c1d835444c515c8cb66fa47f40d8fc6244de47852be57d6
 SHA512 
0420da46e772f2d25a481c4d966dc7bab8a541434a7c183e1b4f41ccd6e06aec564f2a95dae649585d337c1bf818a7cf24727460ad14669a3b3d74c74274

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
new file mode 100644
index ..e95cba1dacff
--- /dev/null
+++ b/dev-python/kiwisolver/kiwisolver-1.4.3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+MY_P=kiwi-${PV}
+DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
+HOMEPAGE="https://github.com/nucleic/kiwi/;
+SRC_URI="
+   https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> 
${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Clear-BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+COMMON_DEPEND="
+   >=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]
+"
+
+RDEPEND="
+   ${COMMON_DEPEND}
+"
+BDEPEND="
+   ${COMMON_DEPEND}
+   >=dev-python/setuptools_scm-3.4.3[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/, dev-python/kiwisolver/files/

2022-06-03 Thread Sam James
commit: a4beea7769ceee4da95127da60dfbae27a127617
Author: Sam James  gentoo  org>
AuthorDate: Fri Jun  3 21:29:36 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jun  3 21:29:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4beea77

dev-python/kiwisolver: add Python 3.11 patch

Closes: https://bugs.gentoo.org/849563
Signed-off-by: Sam James  gentoo.org>

 .../files/kiwisolver-1.4.2-python311.patch | 31 ++
 dev-python/kiwisolver/kiwisolver-1.4.2.ebuild  |  4 +++
 2 files changed, 35 insertions(+)

diff --git a/dev-python/kiwisolver/files/kiwisolver-1.4.2-python311.patch 
b/dev-python/kiwisolver/files/kiwisolver-1.4.2-python311.patch
new file mode 100644
index ..a03af53a0280
--- /dev/null
+++ b/dev-python/kiwisolver/files/kiwisolver-1.4.2-python311.patch
@@ -0,0 +1,31 @@
+https://github.com/nucleic/kiwi/commit/f14059f532d6b5c6b505d9803b36a77b75546b18.patch
+https://bugs.gentoo.org/849563
+
+From f14059f532d6b5c6b505d9803b36a77b75546b18 Mon Sep 17 00:00:00 2001
+From: Matthieu Dartiailh 
+Date: Fri, 3 Jun 2022 09:11:18 +0200
+Subject: [PATCH] py: use nullptr instead of 0 in PyTuple_SET_ITEM
+
+--- a/py/src/symbolics.h
 b/py/src/symbolics.h
+@@ -123,7 +123,7 @@ PyObject* BinaryMul::operator()( Expression* first, double 
second )
+   return 0;
+   Py_ssize_t end = PyTuple_GET_SIZE( first->terms );
+   for( Py_ssize_t i = 0; i < end; ++i )  // memset 0 for safe error return
+-  PyTuple_SET_ITEM( terms.get(), i, 0 );
++  PyTuple_SET_ITEM( terms.get(), i, nullptr );
+   for( Py_ssize_t i = 0; i < end; ++i )
+   {
+   PyObject* item = PyTuple_GET_ITEM( first->terms, i );
+--- a/py/src/util.h
 b/py/src/util.h
+@@ -117,7 +117,7 @@ make_terms( const std::map& coeffs )
+ return 0;
+ Py_ssize_t size = PyTuple_GET_SIZE( terms.get() );
+ for( Py_ssize_t i = 0; i < size; ++i ) // zero tuple for safe early return
+-PyTuple_SET_ITEM( terms.get(), i, 0 );
++PyTuple_SET_ITEM( terms.get(), i, nullptr );
+ Py_ssize_t i = 0;
+ iter_t it = coeffs.begin();
+ iter_t end = coeffs.end();
+

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
index 2f943c1f7e14..e29fa7eee534 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
@@ -32,6 +32,10 @@ BDEPEND="
>=dev-python/setuptools_scm-3.4.3[${PYTHON_USEDEP}]
 "
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.4.2-python311.patch
+)
+
 distutils_enable_tests pytest
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-05-26 Thread Andrew Ammerlaan
commit: 51f97458afb21fd4f790d4eb140b00249b8a4fc9
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu May 26 10:12:14 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu May 26 10:45:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51f97458

dev-python/kiwisolver: enable py3.11

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
index 4af89d268f08..2f943c1f7e14 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-05-06 Thread Michał Górny
commit: 4e8348be6adfdee769c3dcef4eea4bcf463d9091
Author: Michał Górny  gentoo  org>
AuthorDate: Fri May  6 20:32:51 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May  6 20:32:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e8348be

dev-python/kiwisolver: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest|  1 -
 dev-python/kiwisolver/kiwisolver-1.4.1.ebuild | 32 ---
 2 files changed, 33 deletions(-)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index c5a1c804e804..aae4c2647ef5 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1,2 +1 @@
-DIST kiwi-1.4.1.tar.gz 91319 BLAKE2B 
ac8d9cf1e8960f436566e2ff8d589ff6707fc4458299bc33ff96387c36246d583e67ef84610b710b3d9364d8a4ae963577b4abfc3ddbfc18a417f956512479d9
 SHA512 
7178f26c96ebf4a173b563bc95d2a07a9f75b618fc953aa0d45a8c2719cf868e4409ad2c95280704ee593fc99d9e2c83b0628940b3571d1be712241464a9cd6d
 DIST kiwi-1.4.2.tar.gz 91150 BLAKE2B 
8441d52267b3b436d9f05baabbd3beafc51d2f257fc982f1cf90b6296ccdbc24511de6b55b6201eb1df37ec9487282cc40142e9083cf4c1e925976a098927e1a
 SHA512 
e7726ac7985bea1020fd3a26bf54b941acfb1f47b462c74f9829c5a89e7abd0732b5a11685b20d6a17ac9625178c68ea71052e852f91491a308d07111b01

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
deleted file mode 100644
index a8e6fd19ec74..
--- a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-MY_P=kiwi-${PV}
-DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
-HOMEPAGE="https://github.com/nucleic/kiwi/;
-SRC_URI="
-   https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${MY_P}.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="Clear-BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
-
-RDEPEND="
-   >=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >=dev-python/setuptools_scm-3.4.3[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-05-06 Thread Arthur Zamarin
commit: 8de8a3ed962c8c4f6ab5d0b418cfc2f0cf9bfdc6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri May  6 20:02:31 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri May  6 20:02:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8de8a3ed

dev-python/kiwisolver: Stabilize 1.4.2 hppa, #842528

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
index 055af1325d09..4af89d268f08 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-05-04 Thread Arthur Zamarin
commit: 1cd48e4a2cb317cd8ff47e8c0dab44d19543608d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu May  5 05:57:09 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu May  5 05:57:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cd48e4a

dev-python/kiwisolver: Stabilize 1.4.2 arm, #842528

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
index d1542af87000..055af1325d09 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-05-04 Thread Arthur Zamarin
commit: 2bd56eff7f061ca9e9d0bd8aefc3c96695ffd693
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu May  5 05:41:40 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu May  5 05:41:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bd56eff

dev-python/kiwisolver: Stabilize 1.4.2 arm64, #842528

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
index b592d4c76924..d1542af87000 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-05-04 Thread Arthur Zamarin
commit: 676695232197f881a2b2b917ab36782ab4b54c25
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu May  5 05:38:07 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu May  5 05:38:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67669523

dev-python/kiwisolver: Stabilize 1.4.2 sparc, #842528

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
index 13ee471b5c3c..b592d4c76924 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-05-04 Thread Sam James
commit: cf253a50c0313e3363a7ee9394b347316d918d1b
Author: Sam James  gentoo  org>
AuthorDate: Wed May  4 14:39:09 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  4 14:39:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf253a50

dev-python/kiwisolver: Stabilize 1.4.2 ppc64, #842528

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
index e489f26d4f7e..13ee471b5c3c 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
~sparc x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-05-04 Thread Sam James
commit: 2f637ffa813f7811f9c66ccca81f42f0022e8252
Author: Sam James  gentoo  org>
AuthorDate: Wed May  4 14:38:20 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  4 14:38:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f637ffa

dev-python/kiwisolver: Stabilize 1.4.2 ppc, #842528

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
index 176e2aa01572..e489f26d4f7e 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
~sparc x86"
 
 COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/, dev-python/kiwisolver/files/

2022-04-19 Thread Michał Górny
commit: 245e73ac264b3fbdbb6d6261bfb60f68871ff901
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr 19 17:20:15 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr 19 17:20:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=245e73ac

dev-python/kiwisolver: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest |  2 --
 .../files/kiwisolver-1.3.1-darwin-build.patch  | 16 ---
 dev-python/kiwisolver/kiwisolver-1.3.2.ebuild  | 28 ---
 dev-python/kiwisolver/kiwisolver-1.4.0.ebuild  | 32 --
 4 files changed, 78 deletions(-)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index 7ad141296f3a..c5a1c804e804 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1,4 +1,2 @@
-DIST kiwi-1.4.0.tar.gz 92361 BLAKE2B 
773da71557d4c9fcd7778fa1771a1c52d0ca6aa4d698a33467a5a3fac8fd4bd3135aec9e836c96c4c18b2873e17743ce5cbc79c5dd1ea189f28adadcf2030e51
 SHA512 
6f69e232d5620be5f316d273066a1f8a78ebbef2dd8ee1ba56a2a57581fcc0c985fb0a51e6cca8436bcfeb51c4a95a865cde408c497bdec9c7e025f030744f54
 DIST kiwi-1.4.1.tar.gz 91319 BLAKE2B 
ac8d9cf1e8960f436566e2ff8d589ff6707fc4458299bc33ff96387c36246d583e67ef84610b710b3d9364d8a4ae963577b4abfc3ddbfc18a417f956512479d9
 SHA512 
7178f26c96ebf4a173b563bc95d2a07a9f75b618fc953aa0d45a8c2719cf868e4409ad2c95280704ee593fc99d9e2c83b0628940b3571d1be712241464a9cd6d
 DIST kiwi-1.4.2.tar.gz 91150 BLAKE2B 
8441d52267b3b436d9f05baabbd3beafc51d2f257fc982f1cf90b6296ccdbc24511de6b55b6201eb1df37ec9487282cc40142e9083cf4c1e925976a098927e1a
 SHA512 
e7726ac7985bea1020fd3a26bf54b941acfb1f47b462c74f9829c5a89e7abd0732b5a11685b20d6a17ac9625178c68ea71052e852f91491a308d07111b01
-DIST kiwisolver-1.3.2.tar.gz 89075 BLAKE2B 
729880e3b18ac8c6c3e48d2fb32f00b4232118eb753f60837c7736c75a0f22e7a259aec46b76bc91286541847929eb4a92fcf9991650dea16d263f4d16beffc1
 SHA512 
e9ef20756df587b49f7b8e52ff388db6e2e551548ae7d60b6916586fb35249b10bda895a7be7635b300e6100ec1c7daf7d641de6d26d9b2c36055ac6c176302b

diff --git a/dev-python/kiwisolver/files/kiwisolver-1.3.1-darwin-build.patch 
b/dev-python/kiwisolver/files/kiwisolver-1.3.1-darwin-build.patch
deleted file mode 100644
index a56770bb5729..
--- a/dev-python/kiwisolver/files/kiwisolver-1.3.1-darwin-build.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Fix build on Darwin with GCC. May need some adjustment for LLVM/Clang,
-but I couldn't find the docs for possible compiler name types (for now).
-
-It'll likely need a hack in the ebuild anyway.
 a/setup.py
-+++ b/setup.py
-@@ -54,9 +54,6 @@ class BuildExt(build_ext):
- for ext in self.extensions:
- ext.include_dirs.insert(0, cppy.get_include())
- ext.extra_compile_args = opts
--if sys.platform == 'darwin':
--ext.extra_compile_args += ['-stdlib=libc++']
--ext.extra_link_args += ['-stdlib=libc++']
- if (ct == 'msvc' and os.environ.get('KIWI_DISABLE_FH4')):
- # Disable FH4 Exception Handling implementation so that we 
don't
- # require VCRUNTIME140_1.dll. For more details, see:

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
deleted file mode 100644
index b4d67f4c98ee..
--- a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-# tagging fail?
-MY_PV=${PV}.rc1
-DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
-HOMEPAGE="https://github.com/nucleic/kiwi;
-SRC_URI="https://github.com/nucleic/kiwi/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}"/kiwi-${MY_PV}
-
-LICENSE="Clear-BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
-
-RDEPEND="
-   >=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]
-"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.3.1-darwin-build.patch"
-)
-
-distutils_enable_tests pytest

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.0.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.0.ebuild
deleted file mode 100644
index aa5a5cacb378..
--- a/dev-python/kiwisolver/kiwisolver-1.4.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-MY_P=kiwi-${PV}
-DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
-HOMEPAGE="https://github.com/nucleic/kiwi/;
-SRC_URI="
-   https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${MY_P}.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="Clear-BSD"

[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-04-19 Thread Arthur Zamarin
commit: e624d39d68a457784ebbac41863dd7f0ee5196b8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Apr 19 16:48:23 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Apr 19 16:48:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e624d39d

dev-python/kiwisolver: Stabilize 1.4.1 arm64, #838604

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
index 027d468e70f1..a8e6fd19ec74 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 RDEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-04-19 Thread Arthur Zamarin
commit: 8e2d132a03d0bbad2e64c70e5dbdad557afddc48
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Apr 19 16:47:46 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Apr 19 16:47:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e2d132a

dev-python/kiwisolver: Stabilize 1.4.1 ppc64, #838604

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
index a1919e4cf3c7..027d468e70f1 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-04-18 Thread Arthur Zamarin
commit: c4d17347ea8cf6d357bce43f31ed602d85ba0eef
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr 18 18:21:30 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr 18 18:21:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4d17347

dev-python/kiwisolver: Stabilize 1.4.1 hppa, #838604

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
index 83576c3287eb..a1919e4cf3c7 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-04-18 Thread Agostino Sarubbo
commit: f36ad2903fa846305018b537c9906a30ece77f65
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Apr 18 09:27:00 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Apr 18 09:27:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f36ad290

dev-python/kiwisolver: ppc stable wrt bug #838604

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
index 427ae54f376e..83576c3287eb 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-04-17 Thread Arthur Zamarin
commit: f181a08290e495bb1bf55c86699f8c5ad826a2cf
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Apr 17 18:33:30 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Apr 17 18:33:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f181a082

dev-python/kiwisolver: Stabilize 1.4.1 sparc, #838604

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
index 7b02d2150e41..079c4ee11d79 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-04-17 Thread Arthur Zamarin
commit: 643c4f1f70990115925169dc2079f69d1133278b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Apr 17 18:33:31 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Apr 17 18:33:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=643c4f1f

dev-python/kiwisolver: Stabilize 1.4.1 arm, #838604

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
index 079c4ee11d79..427ae54f376e 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-04-17 Thread Jakov Smolić
commit: 34d41fe0acad1f96721a82cde7259930f43aa661
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Apr 17 08:06:31 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun Apr 17 08:06:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34d41fe0

dev-python/kiwisolver: Stabilize 1.4.1 amd64, #838604

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
index aa5a5cacb378..f6f02102ec13 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 
 RDEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-04-17 Thread Jakov Smolić
commit: 8d3ab1b1b7a88800e2e79b288ddf8d434d55dd23
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Apr 17 08:07:11 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun Apr 17 08:07:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d3ab1b1

dev-python/kiwisolver: Stabilize 1.4.1 x86, #838604

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
index f6f02102ec13..7b02d2150e41 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc x86"
 
 RDEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-04-04 Thread Piotr Karbowski
commit: 7ef4c4cee2d11497160f7c639544b7fafa71a8ca
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Mon Apr  4 10:57:31 2022 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Mon Apr  4 10:57:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ef4c4ce

dev-python/kiwisolver: 1.4.2: cppy added to BDEPEND.

Closes: https://bugs.gentoo.org/836750
Signed-off-by: Piotr Karbowski  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.4.2.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
index aa5a5cacb378..40058f5337fe 100644
--- a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
@@ -20,10 +20,15 @@ LICENSE="Clear-BSD"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 
-RDEPEND="
+COMMON_DEPEND="
>=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]
 "
+
+RDEPEND="
+   ${COMMON_DEPEND}
+"
 BDEPEND="
+   ${COMMON_DEPEND}
>=dev-python/setuptools_scm-3.4.3[${PYTHON_USEDEP}]
 "
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-04-03 Thread Piotr Karbowski
commit: 568cb2787fdf3e25cbfc632e7b0516d10e6e5a46
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Sun Apr  3 15:46:32 2022 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Sun Apr  3 15:46:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=568cb278

dev-python/kiwisolver: 1.4.2 version bump.

Closes: https://bugs.gentoo.org/836699
Signed-off-by: Piotr Karbowski  gentoo.org>

 dev-python/kiwisolver/Manifest|  1 +
 dev-python/kiwisolver/kiwisolver-1.4.2.ebuild | 32 +++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index 3ff92de50951..7ad141296f3a 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1,3 +1,4 @@
 DIST kiwi-1.4.0.tar.gz 92361 BLAKE2B 
773da71557d4c9fcd7778fa1771a1c52d0ca6aa4d698a33467a5a3fac8fd4bd3135aec9e836c96c4c18b2873e17743ce5cbc79c5dd1ea189f28adadcf2030e51
 SHA512 
6f69e232d5620be5f316d273066a1f8a78ebbef2dd8ee1ba56a2a57581fcc0c985fb0a51e6cca8436bcfeb51c4a95a865cde408c497bdec9c7e025f030744f54
 DIST kiwi-1.4.1.tar.gz 91319 BLAKE2B 
ac8d9cf1e8960f436566e2ff8d589ff6707fc4458299bc33ff96387c36246d583e67ef84610b710b3d9364d8a4ae963577b4abfc3ddbfc18a417f956512479d9
 SHA512 
7178f26c96ebf4a173b563bc95d2a07a9f75b618fc953aa0d45a8c2719cf868e4409ad2c95280704ee593fc99d9e2c83b0628940b3571d1be712241464a9cd6d
+DIST kiwi-1.4.2.tar.gz 91150 BLAKE2B 
8441d52267b3b436d9f05baabbd3beafc51d2f257fc982f1cf90b6296ccdbc24511de6b55b6201eb1df37ec9487282cc40142e9083cf4c1e925976a098927e1a
 SHA512 
e7726ac7985bea1020fd3a26bf54b941acfb1f47b462c74f9829c5a89e7abd0732b5a11685b20d6a17ac9625178c68ea71052e852f91491a308d07111b01
 DIST kiwisolver-1.3.2.tar.gz 89075 BLAKE2B 
729880e3b18ac8c6c3e48d2fb32f00b4232118eb753f60837c7736c75a0f22e7a259aec46b76bc91286541847929eb4a92fcf9991650dea16d263f4d16beffc1
 SHA512 
e9ef20756df587b49f7b8e52ff388db6e2e551548ae7d60b6916586fb35249b10bda895a7be7635b300e6100ec1c7daf7d641de6d26d9b2c36055ac6c176302b

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
new file mode 100644
index ..aa5a5cacb378
--- /dev/null
+++ b/dev-python/kiwisolver/kiwisolver-1.4.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+MY_P=kiwi-${PV}
+DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
+HOMEPAGE="https://github.com/nucleic/kiwi/;
+SRC_URI="
+   https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${MY_P}.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Clear-BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools_scm-3.4.3[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-03-28 Thread Michał Górny
commit: 7aba7a52552268f29354fb85d9a3e50965febad5
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar 28 09:04:46 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar 28 10:14:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aba7a52

dev-python/kiwisolver: Bump to 1.4.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest|  1 +
 dev-python/kiwisolver/kiwisolver-1.4.1.ebuild | 32 +++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index d717816c7219..3ff92de50951 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1,2 +1,3 @@
 DIST kiwi-1.4.0.tar.gz 92361 BLAKE2B 
773da71557d4c9fcd7778fa1771a1c52d0ca6aa4d698a33467a5a3fac8fd4bd3135aec9e836c96c4c18b2873e17743ce5cbc79c5dd1ea189f28adadcf2030e51
 SHA512 
6f69e232d5620be5f316d273066a1f8a78ebbef2dd8ee1ba56a2a57581fcc0c985fb0a51e6cca8436bcfeb51c4a95a865cde408c497bdec9c7e025f030744f54
+DIST kiwi-1.4.1.tar.gz 91319 BLAKE2B 
ac8d9cf1e8960f436566e2ff8d589ff6707fc4458299bc33ff96387c36246d583e67ef84610b710b3d9364d8a4ae963577b4abfc3ddbfc18a417f956512479d9
 SHA512 
7178f26c96ebf4a173b563bc95d2a07a9f75b618fc953aa0d45a8c2719cf868e4409ad2c95280704ee593fc99d9e2c83b0628940b3571d1be712241464a9cd6d
 DIST kiwisolver-1.3.2.tar.gz 89075 BLAKE2B 
729880e3b18ac8c6c3e48d2fb32f00b4232118eb753f60837c7736c75a0f22e7a259aec46b76bc91286541847929eb4a92fcf9991650dea16d263f4d16beffc1
 SHA512 
e9ef20756df587b49f7b8e52ff388db6e2e551548ae7d60b6916586fb35249b10bda895a7be7635b300e6100ec1c7daf7d641de6d26d9b2c36055ac6c176302b

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
new file mode 100644
index ..aa5a5cacb378
--- /dev/null
+++ b/dev-python/kiwisolver/kiwisolver-1.4.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+MY_P=kiwi-${PV}
+DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
+HOMEPAGE="https://github.com/nucleic/kiwi/;
+SRC_URI="
+   https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${MY_P}.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Clear-BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools_scm-3.4.3[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-03-15 Thread Michał Górny
commit: 761d6ed779d8c65c2bbbeeafaef92098ec7b5578
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 15 11:56:19 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 15 13:23:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=761d6ed7

dev-python/kiwisolver: Bump to 1.4.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest|  1 +
 dev-python/kiwisolver/kiwisolver-1.4.0.ebuild | 32 +++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index 958a4e4a34d8..d717816c7219 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1 +1,2 @@
+DIST kiwi-1.4.0.tar.gz 92361 BLAKE2B 
773da71557d4c9fcd7778fa1771a1c52d0ca6aa4d698a33467a5a3fac8fd4bd3135aec9e836c96c4c18b2873e17743ce5cbc79c5dd1ea189f28adadcf2030e51
 SHA512 
6f69e232d5620be5f316d273066a1f8a78ebbef2dd8ee1ba56a2a57581fcc0c985fb0a51e6cca8436bcfeb51c4a95a865cde408c497bdec9c7e025f030744f54
 DIST kiwisolver-1.3.2.tar.gz 89075 BLAKE2B 
729880e3b18ac8c6c3e48d2fb32f00b4232118eb753f60837c7736c75a0f22e7a259aec46b76bc91286541847929eb4a92fcf9991650dea16d263f4d16beffc1
 SHA512 
e9ef20756df587b49f7b8e52ff388db6e2e551548ae7d60b6916586fb35249b10bda895a7be7635b300e6100ec1c7daf7d641de6d26d9b2c36055ac6c176302b

diff --git a/dev-python/kiwisolver/kiwisolver-1.4.0.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.4.0.ebuild
new file mode 100644
index ..aa5a5cacb378
--- /dev/null
+++ b/dev-python/kiwisolver/kiwisolver-1.4.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+MY_P=kiwi-${PV}
+DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
+HOMEPAGE="https://github.com/nucleic/kiwi/;
+SRC_URI="
+   https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${MY_P}.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Clear-BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/cppy-1.2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools_scm-3.4.3[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2022-01-30 Thread James Le Cuirot
commit: 643c9391c1171a5709e20b02c9129c18af3c8329
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Jan 30 23:09:20 2022 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Jan 30 23:09:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=643c9391

dev-python/kiwisolver: Keyword 1.3.2 for ~m68k

The tests pass.

Signed-off-by: James Le Cuirot  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
index 4e2db8c7702a..92426ef4753c 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -15,7 +15,7 @@ S="${WORKDIR}"/kiwi-${MY_PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-10-10 Thread Michał Górny
commit: 09c99b5db59ad5ad69d986c452c299b4451f6780
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Oct 10 20:50:21 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct 10 20:50:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09c99b5d

dev-python/kiwisolver: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest|  1 -
 dev-python/kiwisolver/kiwisolver-1.3.1.ebuild | 26 --
 2 files changed, 27 deletions(-)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index ce56ec80fc6..958a4e4a34d 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1,2 +1 @@
-DIST kiwisolver-1.3.1.tar.gz 86948 BLAKE2B 
4e03547842e831424aef5be880021aea8d0fef372900bcb9b55f2367fc89f728250b936702fd737807579be34e4ff7489d5669f5113e95612352a293d9f883ea
 SHA512 
0f5c1e516c334d358b8679313035dd45386381965853005271c73e3f4421fb27e3ca5a43b4f2dc85d693f4151427dae9b34d372fe72fcc1a186abd85a54a225a
 DIST kiwisolver-1.3.2.tar.gz 89075 BLAKE2B 
729880e3b18ac8c6c3e48d2fb32f00b4232118eb753f60837c7736c75a0f22e7a259aec46b76bc91286541847929eb4a92fcf9991650dea16d263f4d16beffc1
 SHA512 
e9ef20756df587b49f7b8e52ff388db6e2e551548ae7d60b6916586fb35249b10bda895a7be7635b300e6100ec1c7daf7d641de6d26d9b2c36055ac6c176302b

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
deleted file mode 100644
index 5213e27a600..000
--- a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
-HOMEPAGE="https://github.com/nucleic/kiwi;
-SRC_URI="https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}"/kiwi-${PV}
-
-LICENSE="Clear-BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86"
-
-RDEPEND="
-   >=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]
-"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.3.1-darwin-build.patch"
-)
-
-distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-10-10 Thread Sam James
commit: 83ec64ce2752664e1b11b1f5a110f6f854c19e8e
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 10 20:36:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 10 20:36:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83ec64ce

dev-python/kiwisolver: Stabilize 1.3.2 arm64, #817062

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
index 5f45c68a273..f49c71792ca 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/kiwi-${MY_PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-10-10 Thread Agostino Sarubbo
commit: e6dff8b07c0c798c12fe3a45dd9b117c42ccc26d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Oct 10 15:36:32 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Oct 10 15:36:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6dff8b0

dev-python/kiwisolver: x86 stable wrt bug #817062

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
index 77f42787a93..5f45c68a273 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/kiwi-${MY_PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-10-10 Thread Agostino Sarubbo
commit: 0f6cd0f3ce45f3c127d78ff79a237ae0a1f2d1f2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Oct 10 15:35:44 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Oct 10 15:35:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f6cd0f3

dev-python/kiwisolver: sparc stable wrt bug #817062

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
index 91789e87e58..77f42787a93 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/kiwi-${MY_PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-10-09 Thread Sam James
commit: 317ce201ddeb1fef9c4a5c9f1bdd24ae5e46480e
Author: Sam James  gentoo  org>
AuthorDate: Sat Oct  9 19:20:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Oct  9 19:20:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=317ce201

dev-python/kiwisolver: Stabilize 1.3.2 ppc, #817062

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
index fe8eb738a91..81f76fabcd7 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/kiwi-${MY_PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc ~x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-10-09 Thread Sam James
commit: 1be1ff59ff3b487b61bed349aba0ef01badcdcdf
Author: Sam James  gentoo  org>
AuthorDate: Sat Oct  9 19:20:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Oct  9 19:20:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1be1ff59

dev-python/kiwisolver: Stabilize 1.3.2 ppc64, #817062

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
index 2be10b7b525..fe8eb738a91 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/kiwi-${MY_PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc ~x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-10-09 Thread Sam James
commit: fbaa99f42ce90fbe9611eb13040812d2e1d7e919
Author: Sam James  gentoo  org>
AuthorDate: Sat Oct  9 19:16:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Oct  9 19:17:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbaa99f4

dev-python/kiwisolver: Stabilize 1.3.2 arm, #817062

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
index a6efd5b965a..2be10b7b525 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/kiwi-${MY_PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-09-07 Thread Sam James
commit: 6cd1611f7d3067deb26663ae0dbdeababf1cbba5
Author: Sam James  gentoo  org>
AuthorDate: Tue Sep  7 18:32:52 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Sep  7 18:32:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cd1611f

dev-python/kiwisolver: Keyword 1.3.2 ia64, #804118

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
index 34e41cdcfb7..a6efd5b965a 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/kiwi-${MY_PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-09-06 Thread Sam James
commit: 57b00ba1bd4d70f2826838e7a5b8725702d4b1ec
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  6 23:55:53 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  6 23:55:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57b00ba1

dev-python/kiwisolver: Stabilize 1.3.1 ppc, #807637

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
index aa5e10d6bc8..5213e27a600 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/kiwi-${PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-09-06 Thread Sam James
commit: d9d2c37b93929a7d962c7591a5aca8c47c92025f
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  6 23:54:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  6 23:54:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9d2c37b

dev-python/kiwisolver: Stabilize 1.3.1 arm, #807637

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
index 77c37694726..aa5e10d6bc8 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/kiwi-${PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ppc64 ~riscv sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv sparc x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-09-06 Thread Sam James
commit: 56998f8d18ab1c8dc017e6ed0cc36ab52a1ba32a
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  6 23:49:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  6 23:49:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56998f8d

dev-python/kiwisolver: Keyword 1.3.2 s390, #804118

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
index e337b6ffae0..34e41cdcfb7 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/kiwi-${MY_PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-08-28 Thread Michał Górny
commit: 383ddf710254f6e81c5f552d49a461cc49d717a6
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Aug 28 06:24:12 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Aug 28 06:53:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=383ddf71

dev-python/kiwisolver: Bump to 1.3.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest|  1 +
 dev-python/kiwisolver/kiwisolver-1.3.2.ebuild | 28 +++
 2 files changed, 29 insertions(+)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index 64dabc32e1c..ce56ec80fc6 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1 +1,2 @@
 DIST kiwisolver-1.3.1.tar.gz 86948 BLAKE2B 
4e03547842e831424aef5be880021aea8d0fef372900bcb9b55f2367fc89f728250b936702fd737807579be34e4ff7489d5669f5113e95612352a293d9f883ea
 SHA512 
0f5c1e516c334d358b8679313035dd45386381965853005271c73e3f4421fb27e3ca5a43b4f2dc85d693f4151427dae9b34d372fe72fcc1a186abd85a54a225a
+DIST kiwisolver-1.3.2.tar.gz 89075 BLAKE2B 
729880e3b18ac8c6c3e48d2fb32f00b4232118eb753f60837c7736c75a0f22e7a259aec46b76bc91286541847929eb4a92fcf9991650dea16d263f4d16beffc1
 SHA512 
e9ef20756df587b49f7b8e52ff388db6e2e551548ae7d60b6916586fb35249b10bda895a7be7635b300e6100ec1c7daf7d641de6d26d9b2c36055ac6c176302b

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
new file mode 100644
index 000..e337b6ffae0
--- /dev/null
+++ b/dev-python/kiwisolver/kiwisolver-1.3.2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+# tagging fail?
+MY_PV=${PV}.rc1
+DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
+HOMEPAGE="https://github.com/nucleic/kiwi;
+SRC_URI="https://github.com/nucleic/kiwi/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}"/kiwi-${MY_PV}
+
+LICENSE="Clear-BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.3.1-darwin-build.patch"
+)
+
+distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-08-16 Thread Sam James
commit: da2ac91badcf5fceb0588edb353c71d07b290c3e
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Aug 16 18:40:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Aug 17 01:42:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da2ac91b

dev-python/kiwisolver: stable 1.3.1 for sparc, bug #807637

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
index 1985b86df87..77c37694726 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/kiwi-${PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ppc64 ~riscv sparc x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-08-10 Thread Sam James
commit: 33ebfb24d7ccd29c17826f39675595ec520c679a
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Aug 10 09:11:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:20:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33ebfb24

dev-python/kiwisolver: keyworded 1.3.1 for hppa, bug #804118

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
index 51e80cabfc4..1985b86df87 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/kiwi-${PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-06-19 Thread Sam James
commit: 2ef9edf7b4502f7f2fa17d4d91053c8e36ba020d
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 01:54:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 01:54:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ef9edf7

dev-python/kiwisolver: Keyword 1.3.1 sparc, #796365

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
index 0bb58273599..269d9ad95ad 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/kiwi-${PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 ~sparc x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-06-05 Thread Michał Górny
commit: 41442dd3137dd9804acd639b8edfff9d86d49fda
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jun  5 13:24:09 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun  5 13:34:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41442dd3

dev-python/kiwisolver: Enable py3.10

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
index a9550a7550f..0bb58273599 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-05-25 Thread Georgy Yakovlev
commit: 76d12b14d537aa905402fdebfeaedd7760669694
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue May 25 16:15:03 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue May 25 16:19:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76d12b14

dev-python/kiwisolver: cleanup metadata.xml

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-python/kiwisolver/metadata.xml | 8 
 1 file changed, 8 deletions(-)

diff --git a/dev-python/kiwisolver/metadata.xml 
b/dev-python/kiwisolver/metadata.xml
index 9f35c49b5d4..7fa9b5ced28 100644
--- a/dev-python/kiwisolver/metadata.xml
+++ b/dev-python/kiwisolver/metadata.xml
@@ -1,14 +1,6 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   vpayno+gen...@gmail.com
-   Victor Payno
-   
-   
-   gyakov...@gentoo.org
-   Georgy Yakovlev
-   

pyt...@gentoo.org
Python



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-01-07 Thread Michał Górny
commit: 31c21ae35df63981a2c8f67566a8ea2040530377
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan  7 09:21:08 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jan  7 09:21:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31c21ae3

dev-python/kiwisolver: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest|  1 -
 dev-python/kiwisolver/kiwisolver-1.3.0.ebuild | 22 --
 2 files changed, 23 deletions(-)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index e61b858df98..64dabc32e1c 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1,2 +1 @@
-DIST kiwisolver-1.3.0.tar.gz 86440 BLAKE2B 
931a230909a7778aac3bc93fb24538c7b9e0a3cf1dea33fcf374fd6576d56b80a50597d14c6431f659326222c8810416897fcc9ce2725ca5341891f65aedc5b2
 SHA512 
64bb475f86e6f409318c5030cd2874bf060c26bf6c1ea62bfb96c1ae27f7326fcd6fc575cbdad7351808d18ae9b9f6664eb312019d432cd6a4c0b8af4fa317b6
 DIST kiwisolver-1.3.1.tar.gz 86948 BLAKE2B 
4e03547842e831424aef5be880021aea8d0fef372900bcb9b55f2367fc89f728250b936702fd737807579be34e4ff7489d5669f5113e95612352a293d9f883ea
 SHA512 
0f5c1e516c334d358b8679313035dd45386381965853005271c73e3f4421fb27e3ca5a43b4f2dc85d693f4151427dae9b34d372fe72fcc1a186abd85a54a225a

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild
deleted file mode 100644
index 839877ce647..000
--- a/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{6..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
-HOMEPAGE="https://github.com/nucleic/kiwi;
-SRC_URI="https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}"/kiwi-${PV}
-
-LICENSE="Clear-BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 x86"
-
-RDEPEND="
-   >=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2021-01-03 Thread Sam James
commit: b9e77c67f9d0fe2af75115f4888dca3948b40583
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 19:37:55 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 19:37:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9e77c67

dev-python/kiwisolver: Stabilize 1.3.1 arm64, #762541

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
index eed00141852..d67336cf4a5 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/kiwi-${PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 ~x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2020-12-30 Thread Sam James
commit: 1af6abf11e3d58edbd0c4eb0bf45c154484dfcac
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec 31 01:15:36 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec 31 01:15:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1af6abf1

dev-python/kiwisolver: Stabilize 1.3.1 amd64, #762541

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
index d49c2b5c587..233aacd78af 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/kiwi-${PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/, dev-python/kiwisolver/files/

2020-11-29 Thread Sam James
commit: 68e2a1ddc8c7957a4b1eac527abcc67959ee514c
Author: Sam James  gentoo  org>
AuthorDate: Sun Nov 29 20:53:28 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Nov 29 20:53:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68e2a1dd

dev-python/kiwisolver: fix Darwin build

Don't assume Clang.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 .../kiwisolver/files/kiwisolver-1.3.1-darwin-build.patch | 16 
 dev-python/kiwisolver/kiwisolver-1.3.1.ebuild|  4 
 2 files changed, 20 insertions(+)

diff --git a/dev-python/kiwisolver/files/kiwisolver-1.3.1-darwin-build.patch 
b/dev-python/kiwisolver/files/kiwisolver-1.3.1-darwin-build.patch
new file mode 100644
index 000..a56770bb572
--- /dev/null
+++ b/dev-python/kiwisolver/files/kiwisolver-1.3.1-darwin-build.patch
@@ -0,0 +1,16 @@
+Fix build on Darwin with GCC. May need some adjustment for LLVM/Clang,
+but I couldn't find the docs for possible compiler name types (for now).
+
+It'll likely need a hack in the ebuild anyway.
+--- a/setup.py
 b/setup.py
+@@ -54,9 +54,6 @@ class BuildExt(build_ext):
+ for ext in self.extensions:
+ ext.include_dirs.insert(0, cppy.get_include())
+ ext.extra_compile_args = opts
+-if sys.platform == 'darwin':
+-ext.extra_compile_args += ['-stdlib=libc++']
+-ext.extra_link_args += ['-stdlib=libc++']
+ if (ct == 'msvc' and os.environ.get('KIWI_DISABLE_FH4')):
+ # Disable FH4 Exception Handling implementation so that we 
don't
+ # require VCRUNTIME140_1.dll. For more details, see:

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
index 2d2ec37813a..d49c2b5c587 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
@@ -19,4 +19,8 @@ RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]
 "
 
+PATCHES=(
+   "${FILESDIR}/${PN}-1.3.1-darwin-build.patch"
+)
+
 distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2020-11-27 Thread Michał Górny
commit: 21f5798291ecf065ef2c25ce1a3a2231040d195b
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Nov 27 16:15:18 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 27 16:18:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21f57982

dev-python/kiwisolver: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest|  1 -
 dev-python/kiwisolver/kiwisolver-1.2.0.ebuild | 22 --
 2 files changed, 23 deletions(-)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index 98d71550d54..e61b858df98 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1,3 +1,2 @@
-DIST kiwisolver-1.2.0.tar.gz 54244 BLAKE2B 
42590c2cbb78b3c2ed568373616e772326bf5a0e133396d9e9cf6468132ec88b45d40f68f51baff7bc22ca261567ebab81cf2585009657bd2a59df4e97c33f1f
 SHA512 
05541ff46cc64b9958d714452138dc7bb343e6cc9308408a3f8cf25242e9640af37f8bfd22a7038e8ca70a895f57bdb983346259bce22b1630ac10b974d00a0e
 DIST kiwisolver-1.3.0.tar.gz 86440 BLAKE2B 
931a230909a7778aac3bc93fb24538c7b9e0a3cf1dea33fcf374fd6576d56b80a50597d14c6431f659326222c8810416897fcc9ce2725ca5341891f65aedc5b2
 SHA512 
64bb475f86e6f409318c5030cd2874bf060c26bf6c1ea62bfb96c1ae27f7326fcd6fc575cbdad7351808d18ae9b9f6664eb312019d432cd6a4c0b8af4fa317b6
 DIST kiwisolver-1.3.1.tar.gz 86948 BLAKE2B 
4e03547842e831424aef5be880021aea8d0fef372900bcb9b55f2367fc89f728250b936702fd737807579be34e4ff7489d5669f5113e95612352a293d9f883ea
 SHA512 
0f5c1e516c334d358b8679313035dd45386381965853005271c73e3f4421fb27e3ca5a43b4f2dc85d693f4151427dae9b34d372fe72fcc1a186abd85a54a225a

diff --git a/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
deleted file mode 100644
index 839877ce647..000
--- a/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{6..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
-HOMEPAGE="https://github.com/nucleic/kiwi;
-SRC_URI="https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}"/kiwi-${PV}
-
-LICENSE="Clear-BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 x86"
-
-RDEPEND="
-   >=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2020-11-26 Thread Sam James
commit: 4810b2dbcd4f50900e7f4cd630c0b75f5ae8ed8c
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 26 08:02:31 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 26 08:02:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4810b2db

dev-python/kiwisolver: Stabilize 1.3.0 arm64, #756475

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild
index ccd63d2389a..4d5dfaef8d6 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/kiwi-${PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ppc64 x86"
+KEYWORDS="~amd64 ~arm arm64 ~ppc ppc64 x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2020-11-25 Thread Agostino Sarubbo
commit: 8a4c1683e025610811cf04fa5932179c5bb1b0ad
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 26 06:55:08 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 26 06:55:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a4c1683

dev-python/kiwisolver: ppc64 stable wrt bug #756475

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild
index b8cdcebb101..ccd63d2389a 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/kiwi-${PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ppc64 x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2020-11-25 Thread Thomas Deutschmann
commit: 893980effc7e04f172c08a9ca07e13112f5d181c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Nov 25 23:06:14 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Nov 25 23:09:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=893980ef

dev-python/kiwisolver: x86 stable (bug #756475)

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild
index 2d2ec37813a..b8cdcebb101 100644
--- a/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/kiwi-${PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2020-11-02 Thread Michał Górny
commit: 7199fc4b657a3ed7daef103d0d173493c52c2506
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov  2 07:49:33 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Nov  2 09:48:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7199fc4b

dev-python/kiwisolver: Bump to 1.3.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest|  1 +
 dev-python/kiwisolver/kiwisolver-1.3.1.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index d7004669eba..98d71550d54 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1,2 +1,3 @@
 DIST kiwisolver-1.2.0.tar.gz 54244 BLAKE2B 
42590c2cbb78b3c2ed568373616e772326bf5a0e133396d9e9cf6468132ec88b45d40f68f51baff7bc22ca261567ebab81cf2585009657bd2a59df4e97c33f1f
 SHA512 
05541ff46cc64b9958d714452138dc7bb343e6cc9308408a3f8cf25242e9640af37f8bfd22a7038e8ca70a895f57bdb983346259bce22b1630ac10b974d00a0e
 DIST kiwisolver-1.3.0.tar.gz 86440 BLAKE2B 
931a230909a7778aac3bc93fb24538c7b9e0a3cf1dea33fcf374fd6576d56b80a50597d14c6431f659326222c8810416897fcc9ce2725ca5341891f65aedc5b2
 SHA512 
64bb475f86e6f409318c5030cd2874bf060c26bf6c1ea62bfb96c1ae27f7326fcd6fc575cbdad7351808d18ae9b9f6664eb312019d432cd6a4c0b8af4fa317b6
+DIST kiwisolver-1.3.1.tar.gz 86948 BLAKE2B 
4e03547842e831424aef5be880021aea8d0fef372900bcb9b55f2367fc89f728250b936702fd737807579be34e4ff7489d5669f5113e95612352a293d9f883ea
 SHA512 
0f5c1e516c334d358b8679313035dd45386381965853005271c73e3f4421fb27e3ca5a43b4f2dc85d693f4151427dae9b34d372fe72fcc1a186abd85a54a225a

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
new file mode 100644
index 000..2d2ec37813a
--- /dev/null
+++ b/dev-python/kiwisolver/kiwisolver-1.3.1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
+HOMEPAGE="https://github.com/nucleic/kiwi;
+SRC_URI="https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}"/kiwi-${PV}
+
+LICENSE="Clear-BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+
+RDEPEND="
+   >=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2020-10-21 Thread Michał Górny
commit: c3c8c839bb085e87e324cab30b51ff0b2f710017
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct 22 05:38:36 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 22 05:38:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3c8c839

dev-python/kiwisolver: Bump to 1.3.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest|  1 +
 dev-python/kiwisolver/kiwisolver-1.3.0.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index 57b68f1925c..d7004669eba 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1 +1,2 @@
 DIST kiwisolver-1.2.0.tar.gz 54244 BLAKE2B 
42590c2cbb78b3c2ed568373616e772326bf5a0e133396d9e9cf6468132ec88b45d40f68f51baff7bc22ca261567ebab81cf2585009657bd2a59df4e97c33f1f
 SHA512 
05541ff46cc64b9958d714452138dc7bb343e6cc9308408a3f8cf25242e9640af37f8bfd22a7038e8ca70a895f57bdb983346259bce22b1630ac10b974d00a0e
+DIST kiwisolver-1.3.0.tar.gz 86440 BLAKE2B 
931a230909a7778aac3bc93fb24538c7b9e0a3cf1dea33fcf374fd6576d56b80a50597d14c6431f659326222c8810416897fcc9ce2725ca5341891f65aedc5b2
 SHA512 
64bb475f86e6f409318c5030cd2874bf060c26bf6c1ea62bfb96c1ae27f7326fcd6fc575cbdad7351808d18ae9b9f6664eb312019d432cd6a4c0b8af4fa317b6

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild
new file mode 100644
index 000..2d2ec37813a
--- /dev/null
+++ b/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
+HOMEPAGE="https://github.com/nucleic/kiwi;
+SRC_URI="https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}"/kiwi-${PV}
+
+LICENSE="Clear-BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+
+RDEPEND="
+   >=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2020-09-20 Thread Michał Górny
commit: 0eb42bd150a15813d865d5954fdb6ed3cdfb103b
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Sep 20 08:54:32 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Sep 20 09:36:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eb42bd1

dev-python/kiwisolver: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/Manifest|  1 -
 dev-python/kiwisolver/kiwisolver-1.0.1.ebuild | 15 ---
 2 files changed, 16 deletions(-)

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index 31fdd219175..57b68f1925c 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1,2 +1 @@
-DIST kiwisolver-1.0.1.tar.gz 34783 BLAKE2B 
104fb7789e004841921bc43fe98a98b247c7f0506a94b07d10ff1e758287a272c9d2f119b7a086847653cdf1bfc9d5c94823d1eb0b4a30ea93cf2b8b05027013
 SHA512 
01002ae1dbf6482ed68c49ad3da80b772db84ec221c4b111c42f1b493f19299e0ddb187e43e64b380eb2ddc292d5848d6e09a5a1dbfaf68950a65423a913ec18
 DIST kiwisolver-1.2.0.tar.gz 54244 BLAKE2B 
42590c2cbb78b3c2ed568373616e772326bf5a0e133396d9e9cf6468132ec88b45d40f68f51baff7bc22ca261567ebab81cf2585009657bd2a59df4e97c33f1f
 SHA512 
05541ff46cc64b9958d714452138dc7bb343e6cc9308408a3f8cf25242e9640af37f8bfd22a7038e8ca70a895f57bdb983346259bce22b1630ac10b974d00a0e

diff --git a/dev-python/kiwisolver/kiwisolver-1.0.1.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.0.1.ebuild
deleted file mode 100644
index d9bc964d733..000
--- a/dev-python/kiwisolver/kiwisolver-1.0.1.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
-inherit distutils-r1
-
-DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
-HOMEPAGE="https://github.com/nucleic/kiwi;
-SRC_URI="https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="Clear-BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 x86"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-S="${WORKDIR}"/kiwi-${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2020-08-07 Thread Sam James
commit: c1dc8ca6d90b6d9d7fd4ab3571b5b21fff1b82bb
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug  7 19:22:01 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug  7 19:22:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1dc8ca6

dev-python/kiwisolver: Stabilize 1.2.0 ppc64, #733840

Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
index ac173716332..839877ce647 100644
--- a/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/kiwi-${PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2020-07-30 Thread Sam James
commit: 51a35f47def6ea5016853437c44e3e8a9c6a2c9b
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul 31 02:20:51 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul 31 02:20:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51a35f47

dev-python/kiwisolver: x86 stable (bug #733840)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
index 576f9fd0d10..ac173716332 100644
--- a/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/kiwi-${PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2020-07-25 Thread Sam James
commit: 7af97e423d0bb2efd3d59c5bd36df4db4c194d04
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 26 01:16:48 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul 26 01:16:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7af97e42

dev-python/kiwisolver: arm64 stable (bug #733840)

Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
index 4ffa6137e5e..576f9fd0d10 100644
--- a/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/kiwi-${PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2020-07-05 Thread Michał Górny
commit: e39e1f2dfc9911b89d792bc58734a7b832710fec
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jul  5 17:36:09 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul  5 17:36:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e39e1f2d

dev-python/kiwisolver: Stabilize 1.2.0 amd64, #730936

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
index 2d2ec37813a..4ffa6137e5e 100644
--- a/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/kiwi-${PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2020-06-10 Thread Michał Górny
commit: 5488f1825677036e0bd13a1690b2a30407df76d8
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:14 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5488f182

dev-python/kiwisolver: Add python@ as (co-)maint

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/kiwisolver/metadata.xml 
b/dev-python/kiwisolver/metadata.xml
index 4b4e945d159..edc9848e496 100644
--- a/dev-python/kiwisolver/metadata.xml
+++ b/dev-python/kiwisolver/metadata.xml
@@ -9,6 +9,10 @@
gyakov...@gentoo.org
Georgy Yakovlev

+   
+   pyt...@gentoo.org
+   Python
+   

kiwisolver
nucleic/kiwi



[gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/

2020-06-05 Thread Michał Górny
commit: 9ab5cd9dd7eb30b5188e37e27f9b4489ecbd43ba
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun  5 15:43:09 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun  5 16:03:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ab5cd9d

dev-python/kiwisolver: Port to py39

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/kiwisolver/kiwisolver-1.2.0.ebuild | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
index 3a1f79a6685..2d2ec37813a 100644
--- a/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
+++ b/dev-python/kiwisolver/kiwisolver-1.2.0.ebuild
@@ -2,13 +2,14 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6..9} )
 
 inherit distutils-r1
 
 DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
 HOMEPAGE="https://github.com/nucleic/kiwi;
 SRC_URI="https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}"/kiwi-${PV}
 
 LICENSE="Clear-BSD"
 SLOT="0"
@@ -17,8 +18,5 @@ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 RDEPEND="
>=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]
 "
-BDEPEND="${RDEPEND}"
-
-S="${WORKDIR}"/kiwi-${PV}
 
 distutils_enable_tests pytest



  1   2   >