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

2024-05-13 Thread Michał Górny
commit: 5e94a0f60ce9fb5ae3e1583954aa30be8d43a2f3
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 13 12:36:39 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 13 12:37:58 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e94a0f6

dev-python/tomlkit: Backport a py3.13 fix

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

 .../tomlkit/files/tomlkit-0.12.5-py313.patch   | 71 ++
 dev-python/tomlkit/tomlkit-0.12.5-r1.ebuild| 53 
 2 files changed, 124 insertions(+)

diff --git a/dev-python/tomlkit/files/tomlkit-0.12.5-py313.patch 
b/dev-python/tomlkit/files/tomlkit-0.12.5-py313.patch
new file mode 100644
index ..bc6201d42101
--- /dev/null
+++ b/dev-python/tomlkit/files/tomlkit-0.12.5-py313.patch
@@ -0,0 +1,71 @@
+From 05d9be1c2b2a95a4eb3a53d999f1483dd7abae5a Mon Sep 17 00:00:00 2001
+From: Frost Ming 
+Date: Mon, 13 May 2024 10:44:28 +0800
+Subject: [PATCH] fix: Test failures with Python 3.13.0a4:
+ test_dates_behave_like_dates and test_times_behave_like_times (#349)
+
+Fixes #333
+
+Signed-off-by: Frost Ming 
+---
+ tests/test_items.py |  4 ++--
+ tomlkit/items.py| 15 ++-
+ 4 files changed, 20 insertions(+), 8 deletions(-)
+
+diff --git a/tests/test_items.py b/tests/test_items.py
+index 1a71b04..3d2de68 100644
+--- a/tests/test_items.py
 b/tests/test_items.py
+@@ -689,7 +689,7 @@ def test_dates_behave_like_dates():
+ assert i.as_string() == "2018-07-22"
+ 
+ i += timedelta(days=1)
+-assert i == datetime(2018, 7, 23)
++assert i == date(2018, 7, 23)
+ assert i.as_string() == "2018-07-23"
+ 
+ i -= timedelta(days=2)
+@@ -697,7 +697,7 @@ def test_dates_behave_like_dates():
+ assert i.as_string() == "2018-07-21"
+ 
+ i = i.replace(year=2019)
+-assert i == datetime(2019, 7, 21)
++assert i == date(2019, 7, 21)
+ assert i.as_string() == "2019-07-21"
+ 
+ doc = parse("dt = 2018-07-22 # Comment")
+diff --git a/tomlkit/items.py b/tomlkit/items.py
+index ef40a15..661e09c 100644
+--- a/tomlkit/items.py
 b/tomlkit/items.py
+@@ -958,9 +958,14 @@ def __new__(cls, year: int, month: int, day: int, *_: 
Any) -> date:
+ return date.__new__(cls, year, month, day)
+ 
+ def __init__(
+-self, year: int, month: int, day: int, trivia: Trivia, raw: str
++self,
++year: int,
++month: int,
++day: int,
++trivia: Trivia | None = None,
++raw: str = "",
+ ) -> None:
+-super().__init__(trivia)
++super().__init__(trivia or Trivia())
+ 
+ self._raw = raw
+ 
+@@ -1033,10 +1038,10 @@ def __init__(
+ second: int,
+ microsecond: int,
+ tzinfo: tzinfo | None,
+-trivia: Trivia,
+-raw: str,
++trivia: Trivia | None = None,
++raw: str = "",
+ ) -> None:
+-super().__init__(trivia)
++super().__init__(trivia or Trivia())
+ 
+ self._raw = raw
+ 

diff --git a/dev-python/tomlkit/tomlkit-0.12.5-r1.ebuild 
b/dev-python/tomlkit/tomlkit-0.12.5-r1.ebuild
new file mode 100644
index ..dfa4b710da13
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.12.5-r1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( pypy3 python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+PATCHES=(
+   # https://github.com/python-poetry/tomlkit/pull/349
+   "${FILESDIR}/${P}-py313.patch"
+)
+
+src_configure() {
+   grep -q 'build-backend = "poetry' pyproject.toml ||
+   die "Upstream changed build-backend, recheck"
+   # write a custom pyproject.toml to ease setuptools bootstrap
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["flit_core >=3.2,<4"]
+   build-backend = "flit_core.buildapi"
+
+   [project]
+   name = "tomlkit"
+   version = "${PV}"
+   description = "Style preserving TOML library"
+   EOF
+}
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



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

2024-05-13 Thread Michał Górny
commit: 3e32fb3447787528533cd9b43723ff2822520664
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 13 12:37:18 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 13 12:37:58 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e32fb34

dev-python/tomlkit: Update homepage

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

 dev-python/tomlkit/metadata.xml | 2 +-
 dev-python/tomlkit/tomlkit-0.12.5-r1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/tomlkit/metadata.xml b/dev-python/tomlkit/metadata.xml
index 1a938ee652b2..0464c4b95333 100644
--- a/dev-python/tomlkit/metadata.xml
+++ b/dev-python/tomlkit/metadata.xml
@@ -12,6 +12,6 @@
   
   
 tomlkit
-sdispater/tomlkit
+python-poetry/tomlkit
   
 

diff --git a/dev-python/tomlkit/tomlkit-0.12.5-r1.ebuild 
b/dev-python/tomlkit/tomlkit-0.12.5-r1.ebuild
index dfa4b710da13..78a304867d74 100644
--- a/dev-python/tomlkit/tomlkit-0.12.5-r1.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.12.5-r1.ebuild
@@ -10,7 +10,7 @@ inherit distutils-r1 pypi
 
 DESCRIPTION="Style preserving TOML library"
 HOMEPAGE="
-   https://github.com/sdispater/tomlkit/
+   https://github.com/python-poetry/tomlkit/
https://pypi.org/project/tomlkit/
 "
 



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

2024-05-08 Thread Michał Górny
commit: 393671847d9b6a56d1419c1cd05c0c59657ff796
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May  9 04:02:47 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May  9 04:02:47 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39367184

dev-python/tomlkit: Bump to 0.12.5

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

 dev-python/tomlkit/Manifest  |  1 +
 dev-python/tomlkit/tomlkit-0.12.5.ebuild | 43 
 2 files changed, 44 insertions(+)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 0613bf1a0ac4..05a5ba64102e 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1 +1,2 @@
 DIST tomlkit-0.12.4.tar.gz 191162 BLAKE2B 
3a5f8f01c7965a6d445fa96d0253d0dad55414bf9cae875fe9d9bc670d5b0a20a76fbf655695396ea188cddcea7ad034a38eed05d85f48c47301a3f23a9c7ded
 SHA512 
b6b1cbb954202a256411388eea46852964bbdd02026086a42eab9107c55b961718398ec504f0289560894e9b46cf1c2f4b7e943267454509f6212e899e161d05
+DIST tomlkit-0.12.5.tar.gz 191420 BLAKE2B 
3175f2932db1da3aca439581c7a11fd2dce01dff3c9d21b07577bdf38138515105939bc864510dce1f98e28caa222b6ba94a0d0906b515e7b677c405b90bf77c
 SHA512 
85fba0018059c72f483251e53c039ede4ed630dd31afc58a1555705281a42c090aee2d8c25234b8700ff5f3a766313d7c9c716d7224f608f22f836c9e701c251

diff --git a/dev-python/tomlkit/tomlkit-0.12.5.ebuild 
b/dev-python/tomlkit/tomlkit-0.12.5.ebuild
new file mode 100644
index ..909ac0927d76
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.12.5.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   grep -q 'build-backend = "poetry' pyproject.toml ||
+   die "Upstream changed build-backend, recheck"
+   # write a custom pyproject.toml to ease setuptools bootstrap
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["flit_core >=3.2,<4"]
+   build-backend = "flit_core.buildapi"
+
+   [project]
+   name = "tomlkit"
+   version = "${PV}"
+   description = "Style preserving TOML library"
+   EOF
+}



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

2024-03-13 Thread Michał Górny
commit: 7e80c5f75d3207fee2944a82253bfdcac9fdba26
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 13 14:57:45 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 13 15:01:51 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e80c5f7

dev-python/tomlkit: Remove old

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

 dev-python/tomlkit/Manifest  |  1 -
 dev-python/tomlkit/tomlkit-0.12.3.ebuild | 43 
 2 files changed, 44 deletions(-)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 37ee5eba1a09..0613bf1a0ac4 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,2 +1 @@
-DIST tomlkit-0.12.3.tar.gz 190967 BLAKE2B 
82205c8e012d4584c60ce8d53a995a01fccd50e35330b8aaecd84dd348b79be1ec7cd9bbaf84dbdbcd904102b7dc4216551298657553606d4da8457f565e8945
 SHA512 
f89b1fdcbefcd511bbc5e22a1cc57d8c4593fc1353e901de31c69ac99ed3c685f042d71205c747bd5d20df246dd19b5402393df81231f12d18414d85c0ac
 DIST tomlkit-0.12.4.tar.gz 191162 BLAKE2B 
3a5f8f01c7965a6d445fa96d0253d0dad55414bf9cae875fe9d9bc670d5b0a20a76fbf655695396ea188cddcea7ad034a38eed05d85f48c47301a3f23a9c7ded
 SHA512 
b6b1cbb954202a256411388eea46852964bbdd02026086a42eab9107c55b961718398ec504f0289560894e9b46cf1c2f4b7e943267454509f6212e899e161d05

diff --git a/dev-python/tomlkit/tomlkit-0.12.3.ebuild 
b/dev-python/tomlkit/tomlkit-0.12.3.ebuild
deleted file mode 100644
index 7cdbe04b0d3a..
--- a/dev-python/tomlkit/tomlkit-0.12.3.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="
-   https://github.com/sdispater/tomlkit/
-   https://pypi.org/project/tomlkit/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-
-BDEPEND="
-   test? (
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   grep -q 'build-backend = "poetry' pyproject.toml ||
-   die "Upstream changed build-backend, recheck"
-   # write a custom pyproject.toml to ease setuptools bootstrap
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["flit_core >=3.2,<4"]
-   build-backend = "flit_core.buildapi"
-
-   [project]
-   name = "tomlkit"
-   version = "${PV}"
-   description = "Style preserving TOML library"
-   EOF
-}



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

2024-03-13 Thread Arthur Zamarin
commit: d955d3ee3bc2aa5f46406ed6fb83d7e079093f53
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Mar 13 13:49:32 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Mar 13 13:49:32 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d955d3ee

dev-python/tomlkit: Stabilize 0.12.4 ALLARCHES, #926925

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.12.4.ebuild 
b/dev-python/tomlkit/tomlkit-0.12.4.ebuild
index 909ac0927d76..5ac99e35d0a9 100644
--- a/dev-python/tomlkit/tomlkit-0.12.4.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.12.4.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 BDEPEND="
test? (



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

2024-02-26 Thread Michał Górny
commit: 6bd157a6ba80263055b58af4914b6b0b7d930820
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Feb 27 06:23:59 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Feb 27 06:23:59 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bd157a6

dev-python/tomlkit: Bump to 0.12.4

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

 dev-python/tomlkit/Manifest  |  1 +
 dev-python/tomlkit/tomlkit-0.12.4.ebuild | 43 
 2 files changed, 44 insertions(+)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 1348c338a680..37ee5eba1a09 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1 +1,2 @@
 DIST tomlkit-0.12.3.tar.gz 190967 BLAKE2B 
82205c8e012d4584c60ce8d53a995a01fccd50e35330b8aaecd84dd348b79be1ec7cd9bbaf84dbdbcd904102b7dc4216551298657553606d4da8457f565e8945
 SHA512 
f89b1fdcbefcd511bbc5e22a1cc57d8c4593fc1353e901de31c69ac99ed3c685f042d71205c747bd5d20df246dd19b5402393df81231f12d18414d85c0ac
+DIST tomlkit-0.12.4.tar.gz 191162 BLAKE2B 
3a5f8f01c7965a6d445fa96d0253d0dad55414bf9cae875fe9d9bc670d5b0a20a76fbf655695396ea188cddcea7ad034a38eed05d85f48c47301a3f23a9c7ded
 SHA512 
b6b1cbb954202a256411388eea46852964bbdd02026086a42eab9107c55b961718398ec504f0289560894e9b46cf1c2f4b7e943267454509f6212e899e161d05

diff --git a/dev-python/tomlkit/tomlkit-0.12.4.ebuild 
b/dev-python/tomlkit/tomlkit-0.12.4.ebuild
new file mode 100644
index ..909ac0927d76
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.12.4.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   grep -q 'build-backend = "poetry' pyproject.toml ||
+   die "Upstream changed build-backend, recheck"
+   # write a custom pyproject.toml to ease setuptools bootstrap
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["flit_core >=3.2,<4"]
+   build-backend = "flit_core.buildapi"
+
+   [project]
+   name = "tomlkit"
+   version = "${PV}"
+   description = "Style preserving TOML library"
+   EOF
+}



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

2023-11-29 Thread Michał Górny
commit: 50a5c1bf840e518f23c342f402f1e07bdbbeb0f4
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 29 10:17:03 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 29 10:17:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50a5c1bf

dev-python/tomlkit: Remove old

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

 dev-python/tomlkit/Manifest  |  2 --
 dev-python/tomlkit/tomlkit-0.12.1.ebuild | 43 
 dev-python/tomlkit/tomlkit-0.12.2.ebuild | 43 
 3 files changed, 88 deletions(-)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 2bf666f2bbf1..1348c338a680 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,3 +1 @@
-DIST tomlkit-0.12.1.tar.gz 190535 BLAKE2B 
461891b5f5dad93488d466560439e19865fcb315792418e24483c96f4c9387c67d9c322bcc4ba842861109ff3297e064cd38737769d97ad1f99dadd9c11f7b33
 SHA512 
1f82023cbb8168f847bfa0211ee5c4d6870973ee1f51f4b60deb34ae6e0e930fe299c939b6c157811d16a73c68225a468e8312ca2731e1bbdcc5541fde2e2360
-DIST tomlkit-0.12.2.tar.gz 190725 BLAKE2B 
f168f42e99cbd8ed5d958ec471fc824d3a89f72d0d68b8881c5c935d888f1b0464e6ca34e65741a9de9d98c093a1e23073378006693bbd6c85870f368291760a
 SHA512 
c36405e95ab42e1e728b4344dd71d183c2e8c174b3524d3337af2456e141f5a54fed82c1f613d5493efef50170f2985f74b1e5859790e865379fab7f90f03c65
 DIST tomlkit-0.12.3.tar.gz 190967 BLAKE2B 
82205c8e012d4584c60ce8d53a995a01fccd50e35330b8aaecd84dd348b79be1ec7cd9bbaf84dbdbcd904102b7dc4216551298657553606d4da8457f565e8945
 SHA512 
f89b1fdcbefcd511bbc5e22a1cc57d8c4593fc1353e901de31c69ac99ed3c685f042d71205c747bd5d20df246dd19b5402393df81231f12d18414d85c0ac

diff --git a/dev-python/tomlkit/tomlkit-0.12.1.ebuild 
b/dev-python/tomlkit/tomlkit-0.12.1.ebuild
deleted file mode 100644
index 7cdbe04b0d3a..
--- a/dev-python/tomlkit/tomlkit-0.12.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="
-   https://github.com/sdispater/tomlkit/
-   https://pypi.org/project/tomlkit/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-
-BDEPEND="
-   test? (
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   grep -q 'build-backend = "poetry' pyproject.toml ||
-   die "Upstream changed build-backend, recheck"
-   # write a custom pyproject.toml to ease setuptools bootstrap
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["flit_core >=3.2,<4"]
-   build-backend = "flit_core.buildapi"
-
-   [project]
-   name = "tomlkit"
-   version = "${PV}"
-   description = "Style preserving TOML library"
-   EOF
-}

diff --git a/dev-python/tomlkit/tomlkit-0.12.2.ebuild 
b/dev-python/tomlkit/tomlkit-0.12.2.ebuild
deleted file mode 100644
index b8055655dd0a..
--- a/dev-python/tomlkit/tomlkit-0.12.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="
-   https://github.com/sdispater/tomlkit/
-   https://pypi.org/project/tomlkit/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-
-BDEPEND="
-   test? (
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   grep -q 'build-backend = "poetry' pyproject.toml ||
-   die "Upstream changed build-backend, recheck"
-   # write a custom pyproject.toml to ease setuptools bootstrap
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["flit_core >=3.2,<4"]
-   build-backend = "flit_core.buildapi"
-
-   [project]
-   name = "tomlkit"
-   version = "${PV}"
-   description = "Style preserving TOML library"
-   EOF
-}



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

2023-11-29 Thread Michał Górny
commit: 774726f27e1295c9458472c9b6d9a3a7067c28ae
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 29 10:15:25 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 29 10:15:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=774726f2

dev-python/tomlkit: Stabilize 0.12.3 ALLARCHES, #918830

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.12.3.ebuild 
b/dev-python/tomlkit/tomlkit-0.12.3.ebuild
index b8055655dd0a..7cdbe04b0d3a 100644
--- a/dev-python/tomlkit/tomlkit-0.12.3.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.12.3.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 BDEPEND="
test? (



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

2023-11-14 Thread Michał Górny
commit: 984041291c3845a0a5fa56bca00a4db782e834ea
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 15 05:37:30 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 15 05:55:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98404129

dev-python/tomlkit: Bump to 0.12.3

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

 dev-python/tomlkit/Manifest  |  1 +
 dev-python/tomlkit/tomlkit-0.12.3.ebuild | 43 
 2 files changed, 44 insertions(+)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 8ea2b264b4d5..2bf666f2bbf1 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,2 +1,3 @@
 DIST tomlkit-0.12.1.tar.gz 190535 BLAKE2B 
461891b5f5dad93488d466560439e19865fcb315792418e24483c96f4c9387c67d9c322bcc4ba842861109ff3297e064cd38737769d97ad1f99dadd9c11f7b33
 SHA512 
1f82023cbb8168f847bfa0211ee5c4d6870973ee1f51f4b60deb34ae6e0e930fe299c939b6c157811d16a73c68225a468e8312ca2731e1bbdcc5541fde2e2360
 DIST tomlkit-0.12.2.tar.gz 190725 BLAKE2B 
f168f42e99cbd8ed5d958ec471fc824d3a89f72d0d68b8881c5c935d888f1b0464e6ca34e65741a9de9d98c093a1e23073378006693bbd6c85870f368291760a
 SHA512 
c36405e95ab42e1e728b4344dd71d183c2e8c174b3524d3337af2456e141f5a54fed82c1f613d5493efef50170f2985f74b1e5859790e865379fab7f90f03c65
+DIST tomlkit-0.12.3.tar.gz 190967 BLAKE2B 
82205c8e012d4584c60ce8d53a995a01fccd50e35330b8aaecd84dd348b79be1ec7cd9bbaf84dbdbcd904102b7dc4216551298657553606d4da8457f565e8945
 SHA512 
f89b1fdcbefcd511bbc5e22a1cc57d8c4593fc1353e901de31c69ac99ed3c685f042d71205c747bd5d20df246dd19b5402393df81231f12d18414d85c0ac

diff --git a/dev-python/tomlkit/tomlkit-0.12.3.ebuild 
b/dev-python/tomlkit/tomlkit-0.12.3.ebuild
new file mode 100644
index ..b8055655dd0a
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.12.3.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   grep -q 'build-backend = "poetry' pyproject.toml ||
+   die "Upstream changed build-backend, recheck"
+   # write a custom pyproject.toml to ease setuptools bootstrap
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["flit_core >=3.2,<4"]
+   build-backend = "flit_core.buildapi"
+
+   [project]
+   name = "tomlkit"
+   version = "${PV}"
+   description = "Style preserving TOML library"
+   EOF
+}



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

2023-11-02 Thread Michał Górny
commit: 050de4f72e6143f8f98f5c48ef2f10e85bbe1981
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov  2 18:58:56 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov  2 19:44:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=050de4f7

dev-python/tomlkit: Bump to 0.12.2

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

 dev-python/tomlkit/Manifest  |  1 +
 dev-python/tomlkit/tomlkit-0.12.2.ebuild | 43 
 2 files changed, 44 insertions(+)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 276cf4f78dd6..8ea2b264b4d5 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1 +1,2 @@
 DIST tomlkit-0.12.1.tar.gz 190535 BLAKE2B 
461891b5f5dad93488d466560439e19865fcb315792418e24483c96f4c9387c67d9c322bcc4ba842861109ff3297e064cd38737769d97ad1f99dadd9c11f7b33
 SHA512 
1f82023cbb8168f847bfa0211ee5c4d6870973ee1f51f4b60deb34ae6e0e930fe299c939b6c157811d16a73c68225a468e8312ca2731e1bbdcc5541fde2e2360
+DIST tomlkit-0.12.2.tar.gz 190725 BLAKE2B 
f168f42e99cbd8ed5d958ec471fc824d3a89f72d0d68b8881c5c935d888f1b0464e6ca34e65741a9de9d98c093a1e23073378006693bbd6c85870f368291760a
 SHA512 
c36405e95ab42e1e728b4344dd71d183c2e8c174b3524d3337af2456e141f5a54fed82c1f613d5493efef50170f2985f74b1e5859790e865379fab7f90f03c65

diff --git a/dev-python/tomlkit/tomlkit-0.12.2.ebuild 
b/dev-python/tomlkit/tomlkit-0.12.2.ebuild
new file mode 100644
index ..b8055655dd0a
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.12.2.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   grep -q 'build-backend = "poetry' pyproject.toml ||
+   die "Upstream changed build-backend, recheck"
+   # write a custom pyproject.toml to ease setuptools bootstrap
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["flit_core >=3.2,<4"]
+   build-backend = "flit_core.buildapi"
+
+   [project]
+   name = "tomlkit"
+   version = "${PV}"
+   description = "Style preserving TOML library"
+   EOF
+}



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

2023-09-01 Thread Michał Górny
commit: 562a33fd5ef912dae085e648b14fee91da947bab
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Sep  1 16:43:12 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Sep  1 16:44:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=562a33fd

dev-python/tomlkit: Remove old

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

 dev-python/tomlkit/Manifest  |  1 -
 dev-python/tomlkit/tomlkit-0.11.8.ebuild | 43 
 2 files changed, 44 deletions(-)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 6926dd898978..276cf4f78dd6 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,2 +1 @@
-DIST tomlkit-0.11.8.tar.gz 188825 BLAKE2B 
3b3b31f0243592ae28d3fc7c23bc6cd61eaa0d9907f4c7afc838e816783ac4ce28a0491c15c31649749272c8d65dd51b7a0160c8f0bf1e209115ebcb5ba13906
 SHA512 
538851d546077a1263fb2384dc8283f9fe56364ccebac2cef31be85c51056bbaf59c96134ceae624b978334c29b54653c28838567cd2806e70ec6e3e5856
 DIST tomlkit-0.12.1.tar.gz 190535 BLAKE2B 
461891b5f5dad93488d466560439e19865fcb315792418e24483c96f4c9387c67d9c322bcc4ba842861109ff3297e064cd38737769d97ad1f99dadd9c11f7b33
 SHA512 
1f82023cbb8168f847bfa0211ee5c4d6870973ee1f51f4b60deb34ae6e0e930fe299c939b6c157811d16a73c68225a468e8312ca2731e1bbdcc5541fde2e2360

diff --git a/dev-python/tomlkit/tomlkit-0.11.8.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.8.ebuild
deleted file mode 100644
index 7cdbe04b0d3a..
--- a/dev-python/tomlkit/tomlkit-0.11.8.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="
-   https://github.com/sdispater/tomlkit/
-   https://pypi.org/project/tomlkit/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-
-BDEPEND="
-   test? (
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   grep -q 'build-backend = "poetry' pyproject.toml ||
-   die "Upstream changed build-backend, recheck"
-   # write a custom pyproject.toml to ease setuptools bootstrap
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["flit_core >=3.2,<4"]
-   build-backend = "flit_core.buildapi"
-
-   [project]
-   name = "tomlkit"
-   version = "${PV}"
-   description = "Style preserving TOML library"
-   EOF
-}



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

2023-09-01 Thread Arthur Zamarin
commit: 15a12e696901863885ccfef47eb492615ccf9fff
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Sep  1 16:30:12 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Sep  1 16:30:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15a12e69

dev-python/tomlkit: Stabilize 0.12.1 ALLARCHES, #913439

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.12.1.ebuild 
b/dev-python/tomlkit/tomlkit-0.12.1.ebuild
index b8055655dd0a..7cdbe04b0d3a 100644
--- a/dev-python/tomlkit/tomlkit-0.12.1.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.12.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 BDEPEND="
test? (



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

2023-07-27 Thread Michał Górny
commit: 07a4841a8560e14bd1e6025333de442817933040
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul 27 15:41:13 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 27 15:41:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07a4841a

dev-python/tomlkit: Bump to 0.12.1

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

 dev-python/tomlkit/Manifest  |  1 +
 dev-python/tomlkit/tomlkit-0.12.1.ebuild | 43 
 2 files changed, 44 insertions(+)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 71c905a9d459..6926dd898978 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1 +1,2 @@
 DIST tomlkit-0.11.8.tar.gz 188825 BLAKE2B 
3b3b31f0243592ae28d3fc7c23bc6cd61eaa0d9907f4c7afc838e816783ac4ce28a0491c15c31649749272c8d65dd51b7a0160c8f0bf1e209115ebcb5ba13906
 SHA512 
538851d546077a1263fb2384dc8283f9fe56364ccebac2cef31be85c51056bbaf59c96134ceae624b978334c29b54653c28838567cd2806e70ec6e3e5856
+DIST tomlkit-0.12.1.tar.gz 190535 BLAKE2B 
461891b5f5dad93488d466560439e19865fcb315792418e24483c96f4c9387c67d9c322bcc4ba842861109ff3297e064cd38737769d97ad1f99dadd9c11f7b33
 SHA512 
1f82023cbb8168f847bfa0211ee5c4d6870973ee1f51f4b60deb34ae6e0e930fe299c939b6c157811d16a73c68225a468e8312ca2731e1bbdcc5541fde2e2360

diff --git a/dev-python/tomlkit/tomlkit-0.12.1.ebuild 
b/dev-python/tomlkit/tomlkit-0.12.1.ebuild
new file mode 100644
index ..b8055655dd0a
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.12.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   grep -q 'build-backend = "poetry' pyproject.toml ||
+   die "Upstream changed build-backend, recheck"
+   # write a custom pyproject.toml to ease setuptools bootstrap
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["flit_core >=3.2,<4"]
+   build-backend = "flit_core.buildapi"
+
+   [project]
+   name = "tomlkit"
+   version = "${PV}"
+   description = "Style preserving TOML library"
+   EOF
+}



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

2023-05-28 Thread Michał Górny
commit: 6c3ef1e0a5b38bb764f5d06c9805e1b2b2ba1eaf
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 29 04:34:50 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 29 04:34:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c3ef1e0

dev-python/tomlkit: Remove old

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

 dev-python/tomlkit/Manifest  |  1 -
 dev-python/tomlkit/tomlkit-0.11.7.ebuild | 43 
 2 files changed, 44 deletions(-)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 24d3f78b6057..71c905a9d459 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,2 +1 @@
-DIST tomlkit-0.11.7.tar.gz 188555 BLAKE2B 
1958ace56c37746585879f1b657af53f36d1b3e741a5e41438a9806897e252bfbf42040c65a05df6c1921413da3e68be6d5d6ef9ce0a0c5d457b170f1cce6528
 SHA512 
456de2047fe1da1905ebf6eed99bdbd7d565fab2ecb50b9c06655188271d52b3680882ce0db2beb69fa9e7d18548b8045a99c4897e12e1d92d9cf92a937864ab
 DIST tomlkit-0.11.8.tar.gz 188825 BLAKE2B 
3b3b31f0243592ae28d3fc7c23bc6cd61eaa0d9907f4c7afc838e816783ac4ce28a0491c15c31649749272c8d65dd51b7a0160c8f0bf1e209115ebcb5ba13906
 SHA512 
538851d546077a1263fb2384dc8283f9fe56364ccebac2cef31be85c51056bbaf59c96134ceae624b978334c29b54653c28838567cd2806e70ec6e3e5856

diff --git a/dev-python/tomlkit/tomlkit-0.11.7.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.7.ebuild
deleted file mode 100644
index 7abc245f1b50..
--- a/dev-python/tomlkit/tomlkit-0.11.7.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( pypy3 python3_{9..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="
-   https://github.com/sdispater/tomlkit/
-   https://pypi.org/project/tomlkit/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-
-BDEPEND="
-   test? (
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   grep -q 'build-backend = "poetry' pyproject.toml ||
-   die "Upstream changed build-backend, recheck"
-   # write a custom pyproject.toml to ease setuptools bootstrap
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["flit_core >=3.2,<4"]
-   build-backend = "flit_core.buildapi"
-
-   [project]
-   name = "tomlkit"
-   version = "${PV}"
-   description = "Style preserving TOML library"
-   EOF
-}



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

2023-05-28 Thread Arthur Zamarin
commit: 3cf45dfabe39c4cd22693c32c4c74eae6e3d682a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun May 28 19:54:43 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun May 28 19:54:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cf45dfa

dev-python/tomlkit: Stabilize 0.11.8 ALLARCHES, #907322

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.11.8.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.8.ebuild
index b8055655dd0a..7cdbe04b0d3a 100644
--- a/dev-python/tomlkit/tomlkit-0.11.8.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.11.8.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 BDEPEND="
test? (



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

2023-05-25 Thread Michał Górny
commit: a62ecbbec50af7918bbc72e5d0fbe9b448cd3aab
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May 25 14:41:08 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May 25 14:41:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a62ecbbe

dev-python/tomlkit: Enable py3.12

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.11.8.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.8.ebuild
index f9911e9a934d..b8055655dd0a 100644
--- a/dev-python/tomlkit/tomlkit-0.11.8.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.11.8.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( pypy3 python3_{9..11} )
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
 
 inherit distutils-r1 pypi
 



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

2023-04-28 Thread Arthur Zamarin
commit: 53cdff8d753bd0ca6260eb040c6233bada889b73
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Apr 28 14:50:18 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Apr 28 14:50:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53cdff8d

dev-python/tomlkit: drop 0.11.6

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

 dev-python/tomlkit/Manifest  |  1 -
 dev-python/tomlkit/tomlkit-0.11.6.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 13182ef443e9..24d3f78b6057 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,3 +1,2 @@
-DIST tomlkit-0.11.6.tar.gz 188290 BLAKE2B 
c0fc64177dff2254ab4d377f15bada1093e69ed66f815b04f698359f096b123b256949e871344276e6fcda26e43ac22c505460c4f906505ea9676774cbfb0c5f
 SHA512 
692f2facb18440609b63995f690f4ba29e82d696f5ce612f872499b4a42bb0ab33fcbf52abf36057c25448b3e29f30955dbc7e0ba34f10d21cb9b5d36e9ad9bf
 DIST tomlkit-0.11.7.tar.gz 188555 BLAKE2B 
1958ace56c37746585879f1b657af53f36d1b3e741a5e41438a9806897e252bfbf42040c65a05df6c1921413da3e68be6d5d6ef9ce0a0c5d457b170f1cce6528
 SHA512 
456de2047fe1da1905ebf6eed99bdbd7d565fab2ecb50b9c06655188271d52b3680882ce0db2beb69fa9e7d18548b8045a99c4897e12e1d92d9cf92a937864ab
 DIST tomlkit-0.11.8.tar.gz 188825 BLAKE2B 
3b3b31f0243592ae28d3fc7c23bc6cd61eaa0d9907f4c7afc838e816783ac4ce28a0491c15c31649749272c8d65dd51b7a0160c8f0bf1e209115ebcb5ba13906
 SHA512 
538851d546077a1263fb2384dc8283f9fe56364ccebac2cef31be85c51056bbaf59c96134ceae624b978334c29b54653c28838567cd2806e70ec6e3e5856

diff --git a/dev-python/tomlkit/tomlkit-0.11.6.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.6.ebuild
deleted file mode 100644
index f33b1e140472..
--- a/dev-python/tomlkit/tomlkit-0.11.6.ebuild
+++ /dev/null
@@ -1,36 +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=( pypy3 python3_{9..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="
-   https://github.com/sdispater/tomlkit/
-   https://pypi.org/project/tomlkit/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-
-BDEPEND="
-   test? (
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   # use setup.py to avoid circular dep with poetry-core
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["setuptools"]
-   build-backend = "setuptools.build_meta"
-   EOF
-}



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

2023-04-28 Thread Arthur Zamarin
commit: 10e9220ed9071cd20c8b12bc26cae3abf4c4fd71
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Apr 28 14:41:01 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Apr 28 14:41:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10e9220e

dev-python/tomlkit: Stabilize 0.11.7 ALLARCHES, #905239

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.11.7.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.7.ebuild
index f9911e9a934d..7abc245f1b50 100644
--- a/dev-python/tomlkit/tomlkit-0.11.7.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.11.7.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 BDEPEND="
test? (



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

2023-04-27 Thread Michał Górny
commit: 7fe120138d7fb11d1beeb8bde2472bf2bf8fe3d5
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 27 16:06:51 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 27 17:24:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fe12013

dev-python/tomlkit: Bump to 0.11.8

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

 dev-python/tomlkit/Manifest  |  1 +
 dev-python/tomlkit/tomlkit-0.11.8.ebuild | 43 
 2 files changed, 44 insertions(+)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 3312e8b2e158..13182ef443e9 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,2 +1,3 @@
 DIST tomlkit-0.11.6.tar.gz 188290 BLAKE2B 
c0fc64177dff2254ab4d377f15bada1093e69ed66f815b04f698359f096b123b256949e871344276e6fcda26e43ac22c505460c4f906505ea9676774cbfb0c5f
 SHA512 
692f2facb18440609b63995f690f4ba29e82d696f5ce612f872499b4a42bb0ab33fcbf52abf36057c25448b3e29f30955dbc7e0ba34f10d21cb9b5d36e9ad9bf
 DIST tomlkit-0.11.7.tar.gz 188555 BLAKE2B 
1958ace56c37746585879f1b657af53f36d1b3e741a5e41438a9806897e252bfbf42040c65a05df6c1921413da3e68be6d5d6ef9ce0a0c5d457b170f1cce6528
 SHA512 
456de2047fe1da1905ebf6eed99bdbd7d565fab2ecb50b9c06655188271d52b3680882ce0db2beb69fa9e7d18548b8045a99c4897e12e1d92d9cf92a937864ab
+DIST tomlkit-0.11.8.tar.gz 188825 BLAKE2B 
3b3b31f0243592ae28d3fc7c23bc6cd61eaa0d9907f4c7afc838e816783ac4ce28a0491c15c31649749272c8d65dd51b7a0160c8f0bf1e209115ebcb5ba13906
 SHA512 
538851d546077a1263fb2384dc8283f9fe56364ccebac2cef31be85c51056bbaf59c96134ceae624b978334c29b54653c28838567cd2806e70ec6e3e5856

diff --git a/dev-python/tomlkit/tomlkit-0.11.8.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.8.ebuild
new file mode 100644
index ..f9911e9a934d
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.11.8.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( pypy3 python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   grep -q 'build-backend = "poetry' pyproject.toml ||
+   die "Upstream changed build-backend, recheck"
+   # write a custom pyproject.toml to ease setuptools bootstrap
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["flit_core >=3.2,<4"]
+   build-backend = "flit_core.buildapi"
+
+   [project]
+   name = "tomlkit"
+   version = "${PV}"
+   description = "Style preserving TOML library"
+   EOF
+}



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

2023-03-27 Thread Michał Górny
commit: fd10d5fef82557ea9b550c19f5805266069859da
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar 27 16:45:07 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar 27 16:48:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd10d5fe

dev-python/tomlkit: Bump to 0.11.7

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

 dev-python/tomlkit/Manifest  |  1 +
 dev-python/tomlkit/tomlkit-0.11.7.ebuild | 43 
 2 files changed, 44 insertions(+)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 4437634f1971..3312e8b2e158 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1 +1,2 @@
 DIST tomlkit-0.11.6.tar.gz 188290 BLAKE2B 
c0fc64177dff2254ab4d377f15bada1093e69ed66f815b04f698359f096b123b256949e871344276e6fcda26e43ac22c505460c4f906505ea9676774cbfb0c5f
 SHA512 
692f2facb18440609b63995f690f4ba29e82d696f5ce612f872499b4a42bb0ab33fcbf52abf36057c25448b3e29f30955dbc7e0ba34f10d21cb9b5d36e9ad9bf
+DIST tomlkit-0.11.7.tar.gz 188555 BLAKE2B 
1958ace56c37746585879f1b657af53f36d1b3e741a5e41438a9806897e252bfbf42040c65a05df6c1921413da3e68be6d5d6ef9ce0a0c5d457b170f1cce6528
 SHA512 
456de2047fe1da1905ebf6eed99bdbd7d565fab2ecb50b9c06655188271d52b3680882ce0db2beb69fa9e7d18548b8045a99c4897e12e1d92d9cf92a937864ab

diff --git a/dev-python/tomlkit/tomlkit-0.11.7.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.7.ebuild
new file mode 100644
index ..f9911e9a934d
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.11.7.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( pypy3 python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   grep -q 'build-backend = "poetry' pyproject.toml ||
+   die "Upstream changed build-backend, recheck"
+   # write a custom pyproject.toml to ease setuptools bootstrap
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["flit_core >=3.2,<4"]
+   build-backend = "flit_core.buildapi"
+
+   [project]
+   name = "tomlkit"
+   version = "${PV}"
+   description = "Style preserving TOML library"
+   EOF
+}



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

2022-11-29 Thread Michał Górny
commit: 62adb9a52386b1bfe03f9c4508ed0fc8a38572d5
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov 29 08:36:03 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 29 08:36:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62adb9a5

dev-python/tomlkit: Remove old

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

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

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 041027816196..4437634f1971 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,2 +1 @@
-DIST tomlkit-0.11.5.tar.gz 188079 BLAKE2B 
5ef55255904d3393c5a0937b6df30d95c9a41892848abaafab844233bfe9c656cdf4348a468cf2c9afa912d14a334874ac7854a9e94a4ee9b0bab35021d18667
 SHA512 
71225787e3543f995358b288bf459256632a8cd72a52aae2a1c6ea04e7c0978fb9ccfa856fa5e96e6d6c9d416abcefccec3e94985421ea14e31a755ee85a3dec
 DIST tomlkit-0.11.6.tar.gz 188290 BLAKE2B 
c0fc64177dff2254ab4d377f15bada1093e69ed66f815b04f698359f096b123b256949e871344276e6fcda26e43ac22c505460c4f906505ea9676774cbfb0c5f
 SHA512 
692f2facb18440609b63995f690f4ba29e82d696f5ce612f872499b4a42bb0ab33fcbf52abf36057c25448b3e29f30955dbc7e0ba34f10d21cb9b5d36e9ad9bf

diff --git a/dev-python/tomlkit/tomlkit-0.11.5.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.5.ebuild
deleted file mode 100644
index ae58bab0c59b..
--- a/dev-python/tomlkit/tomlkit-0.11.5.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=( pypy3 python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="
-   https://github.com/sdispater/tomlkit/
-   https://pypi.org/project/tomlkit/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-
-BDEPEND="
-   test? (
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   # use setup.py to avoid circular dep with poetry-core
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["setuptools"]
-   build-backend = "setuptools.build_meta"
-   EOF
-}



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

2022-11-28 Thread Arthur Zamarin
commit: 0d7be2dcba5b1aa58974da4103ef3269a6c7d3a5
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 29 07:25:23 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 29 07:25:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d7be2dc

dev-python/tomlkit: Stabilize 0.11.6 ALLARCHES, #883545

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.11.6.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.6.ebuild
index 8f575bb2866a..ae58bab0c59b 100644
--- a/dev-python/tomlkit/tomlkit-0.11.6.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.11.6.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 BDEPEND="
test? (



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

2022-11-03 Thread Arthur Zamarin
commit: 20b60d90c2c012018f2ef60e8bf564d8935e5bae
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Nov  3 19:37:06 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Nov  3 19:37:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20b60d90

dev-python/tomlkit: drop 0.11.4

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

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

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 9adf6f4c3d93..041027816196 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,3 +1,2 @@
-DIST tomlkit-0.11.4.tar.gz 187608 BLAKE2B 
f6920eb53c4b5dc13afd5ccd8b9ac5ae867e4b353e6bcc2be4d5e4d8774e2869f93f4c222931b2b3c505371b8812de5ef1797891ce828889a806e665ab32aa84
 SHA512 
b68b5d2c5f2ad7aa2cbeac308008467f22c0c9975862506bcabbfdf1de677dbaab1c5cead17c68f4bf2977a7077ddcc46ef6383bd8a87e2ac1252641ae463335
 DIST tomlkit-0.11.5.tar.gz 188079 BLAKE2B 
5ef55255904d3393c5a0937b6df30d95c9a41892848abaafab844233bfe9c656cdf4348a468cf2c9afa912d14a334874ac7854a9e94a4ee9b0bab35021d18667
 SHA512 
71225787e3543f995358b288bf459256632a8cd72a52aae2a1c6ea04e7c0978fb9ccfa856fa5e96e6d6c9d416abcefccec3e94985421ea14e31a755ee85a3dec
 DIST tomlkit-0.11.6.tar.gz 188290 BLAKE2B 
c0fc64177dff2254ab4d377f15bada1093e69ed66f815b04f698359f096b123b256949e871344276e6fcda26e43ac22c505460c4f906505ea9676774cbfb0c5f
 SHA512 
692f2facb18440609b63995f690f4ba29e82d696f5ce612f872499b4a42bb0ab33fcbf52abf36057c25448b3e29f30955dbc7e0ba34f10d21cb9b5d36e9ad9bf

diff --git a/dev-python/tomlkit/tomlkit-0.11.4.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.4.ebuild
deleted file mode 100644
index ae58bab0c59b..
--- a/dev-python/tomlkit/tomlkit-0.11.4.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=( pypy3 python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="
-   https://github.com/sdispater/tomlkit/
-   https://pypi.org/project/tomlkit/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-
-BDEPEND="
-   test? (
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   # use setup.py to avoid circular dep with poetry-core
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["setuptools"]
-   build-backend = "setuptools.build_meta"
-   EOF
-}



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

2022-11-03 Thread Arthur Zamarin
commit: 105dd2be7fe0e8c967d60068ea398f4524dad8f8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Nov  3 19:12:33 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Nov  3 19:12:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=105dd2be

dev-python/tomlkit: Stabilize 0.11.5 ALLARCHES, #879377

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.11.5.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.5.ebuild
index 8f575bb2866a..ae58bab0c59b 100644
--- a/dev-python/tomlkit/tomlkit-0.11.5.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.11.5.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 BDEPEND="
test? (



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

2022-10-28 Thread Michał Górny
commit: 7b0f88c6bbea13bd2c3b3344f3c9bb4680f6d41e
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct 28 06:40:05 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct 28 07:08:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b0f88c6

dev-python/tomlkit: Bump to 0.11.6

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

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

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 0a9804ad75ca..9adf6f4c3d93 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,2 +1,3 @@
 DIST tomlkit-0.11.4.tar.gz 187608 BLAKE2B 
f6920eb53c4b5dc13afd5ccd8b9ac5ae867e4b353e6bcc2be4d5e4d8774e2869f93f4c222931b2b3c505371b8812de5ef1797891ce828889a806e665ab32aa84
 SHA512 
b68b5d2c5f2ad7aa2cbeac308008467f22c0c9975862506bcabbfdf1de677dbaab1c5cead17c68f4bf2977a7077ddcc46ef6383bd8a87e2ac1252641ae463335
 DIST tomlkit-0.11.5.tar.gz 188079 BLAKE2B 
5ef55255904d3393c5a0937b6df30d95c9a41892848abaafab844233bfe9c656cdf4348a468cf2c9afa912d14a334874ac7854a9e94a4ee9b0bab35021d18667
 SHA512 
71225787e3543f995358b288bf459256632a8cd72a52aae2a1c6ea04e7c0978fb9ccfa856fa5e96e6d6c9d416abcefccec3e94985421ea14e31a755ee85a3dec
+DIST tomlkit-0.11.6.tar.gz 188290 BLAKE2B 
c0fc64177dff2254ab4d377f15bada1093e69ed66f815b04f698359f096b123b256949e871344276e6fcda26e43ac22c505460c4f906505ea9676774cbfb0c5f
 SHA512 
692f2facb18440609b63995f690f4ba29e82d696f5ce612f872499b4a42bb0ab33fcbf52abf36057c25448b3e29f30955dbc7e0ba34f10d21cb9b5d36e9ad9bf

diff --git a/dev-python/tomlkit/tomlkit-0.11.6.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.6.ebuild
new file mode 100644
index ..8f575bb2866a
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.11.6.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=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   # use setup.py to avoid circular dep with poetry-core
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["setuptools"]
+   build-backend = "setuptools.build_meta"
+   EOF
+}



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

2022-09-28 Thread Michał Górny
commit: f5a60f8fa487882252c2535b95978fbf7615d938
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Sep 28 18:03:23 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Sep 28 18:32:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5a60f8f

dev-python/tomlkit: Bump to 0.11.5

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

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

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index e0e48999b611..0a9804ad75ca 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1 +1,2 @@
 DIST tomlkit-0.11.4.tar.gz 187608 BLAKE2B 
f6920eb53c4b5dc13afd5ccd8b9ac5ae867e4b353e6bcc2be4d5e4d8774e2869f93f4c222931b2b3c505371b8812de5ef1797891ce828889a806e665ab32aa84
 SHA512 
b68b5d2c5f2ad7aa2cbeac308008467f22c0c9975862506bcabbfdf1de677dbaab1c5cead17c68f4bf2977a7077ddcc46ef6383bd8a87e2ac1252641ae463335
+DIST tomlkit-0.11.5.tar.gz 188079 BLAKE2B 
5ef55255904d3393c5a0937b6df30d95c9a41892848abaafab844233bfe9c656cdf4348a468cf2c9afa912d14a334874ac7854a9e94a4ee9b0bab35021d18667
 SHA512 
71225787e3543f995358b288bf459256632a8cd72a52aae2a1c6ea04e7c0978fb9ccfa856fa5e96e6d6c9d416abcefccec3e94985421ea14e31a755ee85a3dec

diff --git a/dev-python/tomlkit/tomlkit-0.11.5.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.5.ebuild
new file mode 100644
index ..8f575bb2866a
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.11.5.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=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   # use setup.py to avoid circular dep with poetry-core
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["setuptools"]
+   build-backend = "setuptools.build_meta"
+   EOF
+}



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

2022-09-19 Thread Michał Górny
commit: 57fa5b7aa258685174732a235d12455a5141bb6a
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Sep 19 19:39:28 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Sep 19 19:39:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57fa5b7a

dev-python/tomlkit: Remove old

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

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

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 6819cc4012a9..e0e48999b611 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,2 +1 @@
-DIST tomlkit-0.11.3.tar.gz 187825 BLAKE2B 
e58947100a3ff9c2d8d04072c7a244efe554e31e619216683558f0fd51c3156496633256f0ed1ab6f39efb8cb8e65ca9d2f7dc3fb9e4cdb1ad9cb16ea4ac6e29
 SHA512 
09582776d7472647dadc387521e380056cf0a0d7ba68f7bfd423046caea2ecb068cc24cafceb54cecdc2754be9b3a4ad0cc40c7a0027e27b866491ade5b911c7
 DIST tomlkit-0.11.4.tar.gz 187608 BLAKE2B 
f6920eb53c4b5dc13afd5ccd8b9ac5ae867e4b353e6bcc2be4d5e4d8774e2869f93f4c222931b2b3c505371b8812de5ef1797891ce828889a806e665ab32aa84
 SHA512 
b68b5d2c5f2ad7aa2cbeac308008467f22c0c9975862506bcabbfdf1de677dbaab1c5cead17c68f4bf2977a7077ddcc46ef6383bd8a87e2ac1252641ae463335

diff --git a/dev-python/tomlkit/tomlkit-0.11.3.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.3.ebuild
deleted file mode 100644
index ae58bab0c59b..
--- a/dev-python/tomlkit/tomlkit-0.11.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=( pypy3 python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="
-   https://github.com/sdispater/tomlkit/
-   https://pypi.org/project/tomlkit/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-
-BDEPEND="
-   test? (
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   # use setup.py to avoid circular dep with poetry-core
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["setuptools"]
-   build-backend = "setuptools.build_meta"
-   EOF
-}



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

2022-09-19 Thread Arthur Zamarin
commit: eebb5be95358d596596ad41cbabfba259efe28d9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 19 19:38:14 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 19 19:38:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eebb5be9

dev-python/tomlkit: Stabilize 0.11.4 ALLARCHES, #871777

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.11.4.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.4.ebuild
index 8f575bb2866a..ae58bab0c59b 100644
--- a/dev-python/tomlkit/tomlkit-0.11.4.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.11.4.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 BDEPEND="
test? (



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

2022-09-10 Thread Michał Górny
commit: 261480079b458a92dcffcbd8b8a6fc9a7165b0db
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Sep 11 05:27:56 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Sep 11 05:29:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26148007

dev-python/tomlkit: Remove old

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

 dev-python/tomlkit/Manifest  |  2 --
 dev-python/tomlkit/tomlkit-0.11.1.ebuild | 37 
 dev-python/tomlkit/tomlkit-0.11.2.ebuild | 37 
 3 files changed, 76 deletions(-)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 0338397bedf4..6819cc4012a9 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,4 +1,2 @@
-DIST tomlkit-0.11.1.tar.gz 186422 BLAKE2B 
805cf22577a2eb32f4c0183d517886706c23cb925b66a4620d11c4b7f8c6b4314f83403b01d5139695e70e3cb83125923db9e93d651d9bec598fe5fe6ea08038
 SHA512 
04e8c05ce6ce41a7040fdd02274bebc7ad363f54da9525af06ce39e842d4e7548395dca90a3d1f60956d29d051108719847bebfe6a9db0842a19f400e75481ac
-DIST tomlkit-0.11.2.tar.gz 187584 BLAKE2B 
0b18625ab2a1a1caa916961ebedbe943f87a20695b9412ff8d276a39510f897e8df000c45e3b5324e285ce1bf925cb22370e9eef1008639e14f01ce28599692a
 SHA512 
9f8e5f85ae9f408c10a1c64d1ab649db7b42c1b19eb0162a5edcfe894f0a179a0ba39ac7f478eb7bb14267f610169bea1d4e96cde8b9cf62df91218c989d5a2a
 DIST tomlkit-0.11.3.tar.gz 187825 BLAKE2B 
e58947100a3ff9c2d8d04072c7a244efe554e31e619216683558f0fd51c3156496633256f0ed1ab6f39efb8cb8e65ca9d2f7dc3fb9e4cdb1ad9cb16ea4ac6e29
 SHA512 
09582776d7472647dadc387521e380056cf0a0d7ba68f7bfd423046caea2ecb068cc24cafceb54cecdc2754be9b3a4ad0cc40c7a0027e27b866491ade5b911c7
 DIST tomlkit-0.11.4.tar.gz 187608 BLAKE2B 
f6920eb53c4b5dc13afd5ccd8b9ac5ae867e4b353e6bcc2be4d5e4d8774e2869f93f4c222931b2b3c505371b8812de5ef1797891ce828889a806e665ab32aa84
 SHA512 
b68b5d2c5f2ad7aa2cbeac308008467f22c0c9975862506bcabbfdf1de677dbaab1c5cead17c68f4bf2977a7077ddcc46ef6383bd8a87e2ac1252641ae463335

diff --git a/dev-python/tomlkit/tomlkit-0.11.1.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.1.ebuild
deleted file mode 100644
index ae58bab0c59b..
--- a/dev-python/tomlkit/tomlkit-0.11.1.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=( pypy3 python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="
-   https://github.com/sdispater/tomlkit/
-   https://pypi.org/project/tomlkit/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-
-BDEPEND="
-   test? (
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   # use setup.py to avoid circular dep with poetry-core
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["setuptools"]
-   build-backend = "setuptools.build_meta"
-   EOF
-}

diff --git a/dev-python/tomlkit/tomlkit-0.11.2.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.2.ebuild
deleted file mode 100644
index 8f575bb2866a..
--- a/dev-python/tomlkit/tomlkit-0.11.2.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=( pypy3 python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="
-   https://github.com/sdispater/tomlkit/
-   https://pypi.org/project/tomlkit/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-
-BDEPEND="
-   test? (
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   # use setup.py to avoid circular dep with poetry-core
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["setuptools"]
-   build-backend = "setuptools.build_meta"
-   EOF
-}



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

2022-09-10 Thread Jakov Smolić
commit: 71470f9cd636592b6a4a40227b8dcaebb0221250
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Sep 10 22:37:12 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sat Sep 10 22:37:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71470f9c

dev-python/tomlkit: Stabilize 0.11.3 ALLARCHES, #869545

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.11.3.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.3.ebuild
index 8f575bb2866a..ae58bab0c59b 100644
--- a/dev-python/tomlkit/tomlkit-0.11.3.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.11.3.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 BDEPEND="
test? (



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

2022-08-13 Thread Michał Górny
commit: 14e97ff24a9fff21f5422ba28161e6a9fc23d437
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Aug 13 06:05:24 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Aug 13 08:05:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14e97ff2

dev-python/tomlkit: Bump to 0.11.4

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

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

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index dc7d1186c37a..0338397bedf4 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,3 +1,4 @@
 DIST tomlkit-0.11.1.tar.gz 186422 BLAKE2B 
805cf22577a2eb32f4c0183d517886706c23cb925b66a4620d11c4b7f8c6b4314f83403b01d5139695e70e3cb83125923db9e93d651d9bec598fe5fe6ea08038
 SHA512 
04e8c05ce6ce41a7040fdd02274bebc7ad363f54da9525af06ce39e842d4e7548395dca90a3d1f60956d29d051108719847bebfe6a9db0842a19f400e75481ac
 DIST tomlkit-0.11.2.tar.gz 187584 BLAKE2B 
0b18625ab2a1a1caa916961ebedbe943f87a20695b9412ff8d276a39510f897e8df000c45e3b5324e285ce1bf925cb22370e9eef1008639e14f01ce28599692a
 SHA512 
9f8e5f85ae9f408c10a1c64d1ab649db7b42c1b19eb0162a5edcfe894f0a179a0ba39ac7f478eb7bb14267f610169bea1d4e96cde8b9cf62df91218c989d5a2a
 DIST tomlkit-0.11.3.tar.gz 187825 BLAKE2B 
e58947100a3ff9c2d8d04072c7a244efe554e31e619216683558f0fd51c3156496633256f0ed1ab6f39efb8cb8e65ca9d2f7dc3fb9e4cdb1ad9cb16ea4ac6e29
 SHA512 
09582776d7472647dadc387521e380056cf0a0d7ba68f7bfd423046caea2ecb068cc24cafceb54cecdc2754be9b3a4ad0cc40c7a0027e27b866491ade5b911c7
+DIST tomlkit-0.11.4.tar.gz 187608 BLAKE2B 
f6920eb53c4b5dc13afd5ccd8b9ac5ae867e4b353e6bcc2be4d5e4d8774e2869f93f4c222931b2b3c505371b8812de5ef1797891ce828889a806e665ab32aa84
 SHA512 
b68b5d2c5f2ad7aa2cbeac308008467f22c0c9975862506bcabbfdf1de677dbaab1c5cead17c68f4bf2977a7077ddcc46ef6383bd8a87e2ac1252641ae463335

diff --git a/dev-python/tomlkit/tomlkit-0.11.4.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.4.ebuild
new file mode 100644
index ..8f575bb2866a
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.11.4.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=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   # use setup.py to avoid circular dep with poetry-core
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["setuptools"]
+   build-backend = "setuptools.build_meta"
+   EOF
+}



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

2022-08-11 Thread Michał Górny
commit: 44b6105cab40d1fe981eabe6489216ab6f81f3c4
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 11 09:09:55 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 11 09:59:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44b6105c

dev-python/tomlkit: Bump to 0.11.3

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

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

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index ef6d1ba16e05..dc7d1186c37a 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,2 +1,3 @@
 DIST tomlkit-0.11.1.tar.gz 186422 BLAKE2B 
805cf22577a2eb32f4c0183d517886706c23cb925b66a4620d11c4b7f8c6b4314f83403b01d5139695e70e3cb83125923db9e93d651d9bec598fe5fe6ea08038
 SHA512 
04e8c05ce6ce41a7040fdd02274bebc7ad363f54da9525af06ce39e842d4e7548395dca90a3d1f60956d29d051108719847bebfe6a9db0842a19f400e75481ac
 DIST tomlkit-0.11.2.tar.gz 187584 BLAKE2B 
0b18625ab2a1a1caa916961ebedbe943f87a20695b9412ff8d276a39510f897e8df000c45e3b5324e285ce1bf925cb22370e9eef1008639e14f01ce28599692a
 SHA512 
9f8e5f85ae9f408c10a1c64d1ab649db7b42c1b19eb0162a5edcfe894f0a179a0ba39ac7f478eb7bb14267f610169bea1d4e96cde8b9cf62df91218c989d5a2a
+DIST tomlkit-0.11.3.tar.gz 187825 BLAKE2B 
e58947100a3ff9c2d8d04072c7a244efe554e31e619216683558f0fd51c3156496633256f0ed1ab6f39efb8cb8e65ca9d2f7dc3fb9e4cdb1ad9cb16ea4ac6e29
 SHA512 
09582776d7472647dadc387521e380056cf0a0d7ba68f7bfd423046caea2ecb068cc24cafceb54cecdc2754be9b3a4ad0cc40c7a0027e27b866491ade5b911c7

diff --git a/dev-python/tomlkit/tomlkit-0.11.3.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.3.ebuild
new file mode 100644
index ..8f575bb2866a
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.11.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=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   # use setup.py to avoid circular dep with poetry-core
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["setuptools"]
+   build-backend = "setuptools.build_meta"
+   EOF
+}



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

2022-08-09 Thread Michał Górny
commit: 2c4bdad7709f50776a63cf86b8112a1ac6596967
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Aug  9 05:53:12 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Aug  9 06:31:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c4bdad7

dev-python/tomlkit: Remove old

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

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

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index cf3a2f36dbb6..ef6d1ba16e05 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,3 +1,2 @@
-DIST tomlkit-0.11.0.tar.gz 185695 BLAKE2B 
cd2a22afb8ea445e39567cdc65f636d8d9f2aef07575a2dd989c19abf1a6f7baf2e9adb78003576af9cdefebe4e8c6031efdabcc9487e10770565589a67b0c86
 SHA512 
2e89748140cfdae217ac3ac999f0b718414d28218d61fb5219adc503ede2ea1f4003be9ef4453f189b0ee86df463c59520244b9fd26553bd4d8047674cba61c9
 DIST tomlkit-0.11.1.tar.gz 186422 BLAKE2B 
805cf22577a2eb32f4c0183d517886706c23cb925b66a4620d11c4b7f8c6b4314f83403b01d5139695e70e3cb83125923db9e93d651d9bec598fe5fe6ea08038
 SHA512 
04e8c05ce6ce41a7040fdd02274bebc7ad363f54da9525af06ce39e842d4e7548395dca90a3d1f60956d29d051108719847bebfe6a9db0842a19f400e75481ac
 DIST tomlkit-0.11.2.tar.gz 187584 BLAKE2B 
0b18625ab2a1a1caa916961ebedbe943f87a20695b9412ff8d276a39510f897e8df000c45e3b5324e285ce1bf925cb22370e9eef1008639e14f01ce28599692a
 SHA512 
9f8e5f85ae9f408c10a1c64d1ab649db7b42c1b19eb0162a5edcfe894f0a179a0ba39ac7f478eb7bb14267f610169bea1d4e96cde8b9cf62df91218c989d5a2a

diff --git a/dev-python/tomlkit/tomlkit-0.11.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.0.ebuild
deleted file mode 100644
index ae58bab0c59b..
--- a/dev-python/tomlkit/tomlkit-0.11.0.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=( pypy3 python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="
-   https://github.com/sdispater/tomlkit/
-   https://pypi.org/project/tomlkit/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-
-BDEPEND="
-   test? (
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   # use setup.py to avoid circular dep with poetry-core
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["setuptools"]
-   build-backend = "setuptools.build_meta"
-   EOF
-}



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

2022-08-08 Thread Arthur Zamarin
commit: 1b2bbdf0eee182b1e79c45b600ba5506877aaecd
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Aug  9 04:00:22 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Aug  9 04:00:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b2bbdf0

dev-python/tomlkit: Stabilize 0.11.1 ALLARCHES, #864457

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.11.1.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.1.ebuild
index 8f575bb2866a..ae58bab0c59b 100644
--- a/dev-python/tomlkit/tomlkit-0.11.1.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.11.1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 BDEPEND="
test? (



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

2022-08-08 Thread Arthur Zamarin
commit: 9877f71fc12aecc10d0d11dfd2a31ce36631e9f5
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Aug  8 18:54:00 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Aug  8 19:17:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9877f71f

dev-python/tomlkit: add 0.11.2

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

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

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 7ab043edb78f..cf3a2f36dbb6 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,2 +1,3 @@
 DIST tomlkit-0.11.0.tar.gz 185695 BLAKE2B 
cd2a22afb8ea445e39567cdc65f636d8d9f2aef07575a2dd989c19abf1a6f7baf2e9adb78003576af9cdefebe4e8c6031efdabcc9487e10770565589a67b0c86
 SHA512 
2e89748140cfdae217ac3ac999f0b718414d28218d61fb5219adc503ede2ea1f4003be9ef4453f189b0ee86df463c59520244b9fd26553bd4d8047674cba61c9
 DIST tomlkit-0.11.1.tar.gz 186422 BLAKE2B 
805cf22577a2eb32f4c0183d517886706c23cb925b66a4620d11c4b7f8c6b4314f83403b01d5139695e70e3cb83125923db9e93d651d9bec598fe5fe6ea08038
 SHA512 
04e8c05ce6ce41a7040fdd02274bebc7ad363f54da9525af06ce39e842d4e7548395dca90a3d1f60956d29d051108719847bebfe6a9db0842a19f400e75481ac
+DIST tomlkit-0.11.2.tar.gz 187584 BLAKE2B 
0b18625ab2a1a1caa916961ebedbe943f87a20695b9412ff8d276a39510f897e8df000c45e3b5324e285ce1bf925cb22370e9eef1008639e14f01ce28599692a
 SHA512 
9f8e5f85ae9f408c10a1c64d1ab649db7b42c1b19eb0162a5edcfe894f0a179a0ba39ac7f478eb7bb14267f610169bea1d4e96cde8b9cf62df91218c989d5a2a

diff --git a/dev-python/tomlkit/tomlkit-0.11.2.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.2.ebuild
new file mode 100644
index ..8f575bb2866a
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.11.2.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=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   # use setup.py to avoid circular dep with poetry-core
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["setuptools"]
+   build-backend = "setuptools.build_meta"
+   EOF
+}



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

2022-07-07 Thread Michał Górny
commit: 11648e14836186086036fdf6bd63358340b23c5a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  7 07:53:52 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  7 08:25:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11648e14

dev-python/tomlkit: Bump to 0.11.1

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

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

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index cd8bfc3e071a..7ab043edb78f 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1 +1,2 @@
 DIST tomlkit-0.11.0.tar.gz 185695 BLAKE2B 
cd2a22afb8ea445e39567cdc65f636d8d9f2aef07575a2dd989c19abf1a6f7baf2e9adb78003576af9cdefebe4e8c6031efdabcc9487e10770565589a67b0c86
 SHA512 
2e89748140cfdae217ac3ac999f0b718414d28218d61fb5219adc503ede2ea1f4003be9ef4453f189b0ee86df463c59520244b9fd26553bd4d8047674cba61c9
+DIST tomlkit-0.11.1.tar.gz 186422 BLAKE2B 
805cf22577a2eb32f4c0183d517886706c23cb925b66a4620d11c4b7f8c6b4314f83403b01d5139695e70e3cb83125923db9e93d651d9bec598fe5fe6ea08038
 SHA512 
04e8c05ce6ce41a7040fdd02274bebc7ad363f54da9525af06ce39e842d4e7548395dca90a3d1f60956d29d051108719847bebfe6a9db0842a19f400e75481ac

diff --git a/dev-python/tomlkit/tomlkit-0.11.1.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.1.ebuild
new file mode 100644
index ..8f575bb2866a
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.11.1.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=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   # use setup.py to avoid circular dep with poetry-core
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["setuptools"]
+   build-backend = "setuptools.build_meta"
+   EOF
+}



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

2022-06-24 Thread Michał Górny
commit: d2372459861a730a31f7dfb2d63961d7709df4df
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 24 09:46:16 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 24 10:21:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2372459

dev-python/tomlkit: Remove old

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

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

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 6f8632ebbb5c..cd8bfc3e071a 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,2 +1 @@
-DIST tomlkit-0.10.2.tar.gz 184537 BLAKE2B 
ab912e1c45d641e7c57f1121a6281ed0609c3ddf18c55eb887a67ac8a4df669a3e958e769a07f7ad456c80713337af4b892d4bb73671ce12e4b2fc4d09af0734
 SHA512 
e1d5353659f9a0f4ba2f6a0b82980f0b50b012e3b299c2c6b12aa8a63fc4772649bdc2b5a755c21acc46fe2d226241918fb09a4202cca596b6e9633be95e79d8
 DIST tomlkit-0.11.0.tar.gz 185695 BLAKE2B 
cd2a22afb8ea445e39567cdc65f636d8d9f2aef07575a2dd989c19abf1a6f7baf2e9adb78003576af9cdefebe4e8c6031efdabcc9487e10770565589a67b0c86
 SHA512 
2e89748140cfdae217ac3ac999f0b718414d28218d61fb5219adc503ede2ea1f4003be9ef4453f189b0ee86df463c59520244b9fd26553bd4d8047674cba61c9

diff --git a/dev-python/tomlkit/tomlkit-0.10.2.ebuild 
b/dev-python/tomlkit/tomlkit-0.10.2.ebuild
deleted file mode 100644
index efdc6369cdae..
--- a/dev-python/tomlkit/tomlkit-0.10.2.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=( pypy3 python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="
-   https://github.com/sdispater/tomlkit/
-   https://pypi.org/project/tomlkit/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-
-BDEPEND="
-   test? (
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   # use setup.py to avoid circular dep with poetry-core
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["setuptools", "wheel"]
-   build-backend = "setuptools.build_meta"
-   EOF
-}



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

2022-06-24 Thread Arthur Zamarin
commit: 0ec76d37dff76c1c27cc971d7a1fef372ac2686c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Jun 24 09:05:37 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jun 24 09:05:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ec76d37

dev-python/tomlkit: Stabilize 0.11.0 ALLARCHES, #854039

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.11.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.0.ebuild
index 8f575bb2866a..ae58bab0c59b 100644
--- a/dev-python/tomlkit/tomlkit-0.11.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.11.0.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 BDEPEND="
test? (



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

2022-05-25 Thread Michał Górny
commit: 4bfef9ce76678ea7d0119a7483bd1b86956427ca
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 25 05:49:56 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 25 07:12:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bfef9ce

dev-python/tomlkit: Bump to 0.11.0

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

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

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 379cf08ec111..6f8632ebbb5c 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1 +1,2 @@
 DIST tomlkit-0.10.2.tar.gz 184537 BLAKE2B 
ab912e1c45d641e7c57f1121a6281ed0609c3ddf18c55eb887a67ac8a4df669a3e958e769a07f7ad456c80713337af4b892d4bb73671ce12e4b2fc4d09af0734
 SHA512 
e1d5353659f9a0f4ba2f6a0b82980f0b50b012e3b299c2c6b12aa8a63fc4772649bdc2b5a755c21acc46fe2d226241918fb09a4202cca596b6e9633be95e79d8
+DIST tomlkit-0.11.0.tar.gz 185695 BLAKE2B 
cd2a22afb8ea445e39567cdc65f636d8d9f2aef07575a2dd989c19abf1a6f7baf2e9adb78003576af9cdefebe4e8c6031efdabcc9487e10770565589a67b0c86
 SHA512 
2e89748140cfdae217ac3ac999f0b718414d28218d61fb5219adc503ede2ea1f4003be9ef4453f189b0ee86df463c59520244b9fd26553bd4d8047674cba61c9

diff --git a/dev-python/tomlkit/tomlkit-0.11.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.11.0.ebuild
new file mode 100644
index ..8f575bb2866a
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.11.0.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=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   # use setup.py to avoid circular dep with poetry-core
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["setuptools"]
+   build-backend = "setuptools.build_meta"
+   EOF
+}



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

2022-05-11 Thread Michał Górny
commit: b1974c740f8df0de012bc5163aba6b072c2e3a0c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 11 09:46:23 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 11 10:03:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1974c74

dev-python/tomlkit: Enable py3.11

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.10.2.ebuild 
b/dev-python/tomlkit/tomlkit-0.10.2.ebuild
index c66f726faca7..efdc6369cdae 100644
--- a/dev-python/tomlkit/tomlkit-0.10.2.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.10.2.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{8..10} )
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
 
 inherit distutils-r1
 



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

2022-05-01 Thread Michał Górny
commit: d1f29d2b6b44fc099b4f33bc5aa4cd2b64e686a2
Author: Michał Górny  gentoo  org>
AuthorDate: Sun May  1 12:54:29 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun May  1 12:54:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1f29d2b

dev-python/tomlkit: Remove old

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

 dev-python/tomlkit/Manifest  |  2 --
 dev-python/tomlkit/tomlkit-0.10.0.ebuild | 30 --
 dev-python/tomlkit/tomlkit-0.10.1.ebuild | 30 --
 3 files changed, 62 deletions(-)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 94866175b5ce..379cf08ec111 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,3 +1 @@
-DIST tomlkit-0.10.0.tar.gz 183499 BLAKE2B 
b9906dea2dd8867dca0208f3ce86b3d587f8504addfe25cf29f9164f50dc12d244010df53791ed01e0e7dd16e71ad77ce22c9ea7a37a6216880059c058f112e8
 SHA512 
05d03ae71a1d72ca0e03276f2b2530ca9fab7d6f366166a79839c66eaa00b55abb5f70a669ecb4d762dbbd655f10e4c4a373a7683cd781ae034d0910a0c3eccf
-DIST tomlkit-0.10.1.tar.gz 183650 BLAKE2B 
373ab028b60503cfb9983a969e97318a61004a8db1bafed32b775e2a26a5557f8493ea9026ac9dbeff707d198c2913c34bf25c7e424345bb6b5ea3aa211e3a4a
 SHA512 
a5082b88a9b3832393d860258dd7584ed05788777d4c1dd98415bfb7c64acf8f77eaf18c3fcf824913d999ffa37b4481675b3fce9b8af8ef9c1be0712ad622a9
 DIST tomlkit-0.10.2.tar.gz 184537 BLAKE2B 
ab912e1c45d641e7c57f1121a6281ed0609c3ddf18c55eb887a67ac8a4df669a3e958e769a07f7ad456c80713337af4b892d4bb73671ce12e4b2fc4d09af0734
 SHA512 
e1d5353659f9a0f4ba2f6a0b82980f0b50b012e3b299c2c6b12aa8a63fc4772649bdc2b5a755c21acc46fe2d226241918fb09a4202cca596b6e9633be95e79d8

diff --git a/dev-python/tomlkit/tomlkit-0.10.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.10.0.ebuild
deleted file mode 100644
index b5cb07612b11..
--- a/dev-python/tomlkit/tomlkit-0.10.0.ebuild
+++ /dev/null
@@ -1,30 +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=( pypy3 python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="https://github.com/sdispater/tomlkit;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
-
-BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   # use setup.py to avoid circular dep with poetry-core
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["setuptools", "wheel"]
-   build-backend = "setuptools.build_meta"
-   EOF
-}

diff --git a/dev-python/tomlkit/tomlkit-0.10.1.ebuild 
b/dev-python/tomlkit/tomlkit-0.10.1.ebuild
deleted file mode 100644
index 4de45e362c79..
--- a/dev-python/tomlkit/tomlkit-0.10.1.ebuild
+++ /dev/null
@@ -1,30 +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=( pypy3 python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="https://github.com/sdispater/tomlkit;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
-
-BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   # use setup.py to avoid circular dep with poetry-core
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["setuptools", "wheel"]
-   build-backend = "setuptools.build_meta"
-   EOF
-}



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

2022-05-01 Thread Jakov Smolić
commit: 670e6f86eb5d95cdd24deb922513e50c0d5180e2
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun May  1 12:18:24 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun May  1 12:18:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=670e6f86

dev-python/tomlkit: Stabilize 0.10.2 ALLARCHES, #841931

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.10.2.ebuild 
b/dev-python/tomlkit/tomlkit-0.10.2.ebuild
index 74d63c8af985..c66f726faca7 100644
--- a/dev-python/tomlkit/tomlkit-0.10.2.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.10.2.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 BDEPEND="
test? (



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

2022-05-01 Thread Michał Górny
commit: 6990b44fc0b46d08e5c4f12b35ffa9e752008f0a
Author: Michał Górny  gentoo  org>
AuthorDate: Sun May  1 06:54:16 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun May  1 06:54:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6990b44f

dev-python/tomlkit: Add python@ as co-maint.

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

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

diff --git a/dev-python/tomlkit/metadata.xml b/dev-python/tomlkit/metadata.xml
index 0437ab7ddee7..1a938ee652b2 100644
--- a/dev-python/tomlkit/metadata.xml
+++ b/dev-python/tomlkit/metadata.xml
@@ -5,6 +5,10 @@
 s...@gentoo.org
 Gentoo Science Project
   
+  
+pyt...@gentoo.org
+Python
+  
   
   
 tomlkit



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

2022-04-24 Thread Michał Górny
commit: ac796347229c831f9fccf0fc26f80ecab72083e9
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Apr 24 06:31:56 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Apr 24 06:41:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac796347

dev-python/tomlkit: Bump to 0.10.2

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

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

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index b82cca091295..94866175b5ce 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,2 +1,3 @@
 DIST tomlkit-0.10.0.tar.gz 183499 BLAKE2B 
b9906dea2dd8867dca0208f3ce86b3d587f8504addfe25cf29f9164f50dc12d244010df53791ed01e0e7dd16e71ad77ce22c9ea7a37a6216880059c058f112e8
 SHA512 
05d03ae71a1d72ca0e03276f2b2530ca9fab7d6f366166a79839c66eaa00b55abb5f70a669ecb4d762dbbd655f10e4c4a373a7683cd781ae034d0910a0c3eccf
 DIST tomlkit-0.10.1.tar.gz 183650 BLAKE2B 
373ab028b60503cfb9983a969e97318a61004a8db1bafed32b775e2a26a5557f8493ea9026ac9dbeff707d198c2913c34bf25c7e424345bb6b5ea3aa211e3a4a
 SHA512 
a5082b88a9b3832393d860258dd7584ed05788777d4c1dd98415bfb7c64acf8f77eaf18c3fcf824913d999ffa37b4481675b3fce9b8af8ef9c1be0712ad622a9
+DIST tomlkit-0.10.2.tar.gz 184537 BLAKE2B 
ab912e1c45d641e7c57f1121a6281ed0609c3ddf18c55eb887a67ac8a4df669a3e958e769a07f7ad456c80713337af4b892d4bb73671ce12e4b2fc4d09af0734
 SHA512 
e1d5353659f9a0f4ba2f6a0b82980f0b50b012e3b299c2c6b12aa8a63fc4772649bdc2b5a755c21acc46fe2d226241918fb09a4202cca596b6e9633be95e79d8

diff --git a/dev-python/tomlkit/tomlkit-0.10.2.ebuild 
b/dev-python/tomlkit/tomlkit-0.10.2.ebuild
new file mode 100644
index ..5e749d3f6d49
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.10.2.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=( pypy3 python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="
+   https://github.com/sdispater/tomlkit/
+   https://pypi.org/project/tomlkit/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   # use setup.py to avoid circular dep with poetry-core
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["setuptools", "wheel"]
+   build-backend = "setuptools.build_meta"
+   EOF
+}



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

2022-03-28 Thread Michał Górny
commit: 21e07be0e27c56736aa45bf72deeda2fa4c7018a
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar 28 09:11:25 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar 28 10:14:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21e07be0

dev-python/tomlkit: Bump to 0.10.1

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

 dev-python/tomlkit/Manifest  |  1 +
 dev-python/tomlkit/tomlkit-0.10.1.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 49ac9d899435..b82cca091295 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1 +1,2 @@
 DIST tomlkit-0.10.0.tar.gz 183499 BLAKE2B 
b9906dea2dd8867dca0208f3ce86b3d587f8504addfe25cf29f9164f50dc12d244010df53791ed01e0e7dd16e71ad77ce22c9ea7a37a6216880059c058f112e8
 SHA512 
05d03ae71a1d72ca0e03276f2b2530ca9fab7d6f366166a79839c66eaa00b55abb5f70a669ecb4d762dbbd655f10e4c4a373a7683cd781ae034d0910a0c3eccf
+DIST tomlkit-0.10.1.tar.gz 183650 BLAKE2B 
373ab028b60503cfb9983a969e97318a61004a8db1bafed32b775e2a26a5557f8493ea9026ac9dbeff707d198c2913c34bf25c7e424345bb6b5ea3aa211e3a4a
 SHA512 
a5082b88a9b3832393d860258dd7584ed05788777d4c1dd98415bfb7c64acf8f77eaf18c3fcf824913d999ffa37b4481675b3fce9b8af8ef9c1be0712ad622a9

diff --git a/dev-python/tomlkit/tomlkit-0.10.1.ebuild 
b/dev-python/tomlkit/tomlkit-0.10.1.ebuild
new file mode 100644
index ..4de45e362c79
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.10.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="https://github.com/sdispater/tomlkit;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+
+BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   # use setup.py to avoid circular dep with poetry-core
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["setuptools", "wheel"]
+   build-backend = "setuptools.build_meta"
+   EOF
+}



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

2022-03-15 Thread Michał Górny
commit: 313d408c16984eb0920af63d199eac6c88756817
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 15 14:24:43 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 15 14:24:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=313d408c

dev-python/tomlkit: Remove old

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

 dev-python/tomlkit/Manifest |  2 --
 dev-python/tomlkit/tomlkit-0.8.0.ebuild | 19 ---
 dev-python/tomlkit/tomlkit-0.9.2.ebuild | 30 --
 3 files changed, 51 deletions(-)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 69913d5edd7c..49ac9d899435 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,3 +1 @@
 DIST tomlkit-0.10.0.tar.gz 183499 BLAKE2B 
b9906dea2dd8867dca0208f3ce86b3d587f8504addfe25cf29f9164f50dc12d244010df53791ed01e0e7dd16e71ad77ce22c9ea7a37a6216880059c058f112e8
 SHA512 
05d03ae71a1d72ca0e03276f2b2530ca9fab7d6f366166a79839c66eaa00b55abb5f70a669ecb4d762dbbd655f10e4c4a373a7683cd781ae034d0910a0c3eccf
-DIST tomlkit-0.8.0.tar.gz 179067 BLAKE2B 
871eb8371d94c76552d78a56adfbde5ebb9da4b93aa29229ae9aa279ae35fac488a1b4986169b818d2e5366883b8f246b44dc9075d0d9785b2d7d6f97e222ec1
 SHA512 
77b267201021e740d8134d0d5edfbef2cf077adac0b320d80887fdedda3f63f74df1957e8230976f16c80fcc58fd4cfabb195cccf0eda7d6cd29f5f65d362147
-DIST tomlkit-0.9.2.tar.gz 176380 BLAKE2B 
3af0a397382c9c7dd948d32c3d359d8409b8c4a1beb93cb528632909ab834fb86298da1dd1791e474dd83395cf462e6ce6842c32ea3011ade744b495cf1fd40a
 SHA512 
9a5a422ad7f2602d164b486dea816f878791393675a17ae30d10f12b6eed0ca73cbfaac7c359f1a57aea4f734b5ba31ee395c521e41ce608eae972c2059b

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
deleted file mode 100644
index f6714ce552c6..
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( pypy3 python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="https://github.com/sdispater/tomlkit;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
-
-BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest

diff --git a/dev-python/tomlkit/tomlkit-0.9.2.ebuild 
b/dev-python/tomlkit/tomlkit-0.9.2.ebuild
deleted file mode 100644
index 4de45e362c79..
--- a/dev-python/tomlkit/tomlkit-0.9.2.ebuild
+++ /dev/null
@@ -1,30 +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=( pypy3 python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="https://github.com/sdispater/tomlkit;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
-
-BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   # use setup.py to avoid circular dep with poetry-core
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["setuptools", "wheel"]
-   build-backend = "setuptools.build_meta"
-   EOF
-}



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

2022-03-15 Thread Jakov Smolić
commit: 24cea246d48f8518c1fe38d04e19bbbea8981a7a
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Mar 15 13:28:25 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Tue Mar 15 13:30:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24cea246

dev-python/tomlkit: Stabilize 0.10.0 ALLARCHES, #835303

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.10.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.10.0.ebuild
index 4de45e362c79..b5cb07612b11 100644
--- a/dev-python/tomlkit/tomlkit-0.10.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.10.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-02-18 Thread Michał Górny
commit: d7958c541084486ec07c775c363bd3808e61d03f
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 18 08:15:26 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 18 09:18:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7958c54

dev-python/tomlkit: Bump to 0.10.0

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

 dev-python/tomlkit/Manifest  |  1 +
 dev-python/tomlkit/tomlkit-0.10.0.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index ba5f95bcc597..69913d5edd7c 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,2 +1,3 @@
+DIST tomlkit-0.10.0.tar.gz 183499 BLAKE2B 
b9906dea2dd8867dca0208f3ce86b3d587f8504addfe25cf29f9164f50dc12d244010df53791ed01e0e7dd16e71ad77ce22c9ea7a37a6216880059c058f112e8
 SHA512 
05d03ae71a1d72ca0e03276f2b2530ca9fab7d6f366166a79839c66eaa00b55abb5f70a669ecb4d762dbbd655f10e4c4a373a7683cd781ae034d0910a0c3eccf
 DIST tomlkit-0.8.0.tar.gz 179067 BLAKE2B 
871eb8371d94c76552d78a56adfbde5ebb9da4b93aa29229ae9aa279ae35fac488a1b4986169b818d2e5366883b8f246b44dc9075d0d9785b2d7d6f97e222ec1
 SHA512 
77b267201021e740d8134d0d5edfbef2cf077adac0b320d80887fdedda3f63f74df1957e8230976f16c80fcc58fd4cfabb195cccf0eda7d6cd29f5f65d362147
 DIST tomlkit-0.9.2.tar.gz 176380 BLAKE2B 
3af0a397382c9c7dd948d32c3d359d8409b8c4a1beb93cb528632909ab834fb86298da1dd1791e474dd83395cf462e6ce6842c32ea3011ade744b495cf1fd40a
 SHA512 
9a5a422ad7f2602d164b486dea816f878791393675a17ae30d10f12b6eed0ca73cbfaac7c359f1a57aea4f734b5ba31ee395c521e41ce608eae972c2059b

diff --git a/dev-python/tomlkit/tomlkit-0.10.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.10.0.ebuild
new file mode 100644
index ..4de45e362c79
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.10.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="https://github.com/sdispater/tomlkit;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+
+BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   # use setup.py to avoid circular dep with poetry-core
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["setuptools", "wheel"]
+   build-backend = "setuptools.build_meta"
+   EOF
+}



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

2022-02-11 Thread Arthur Zamarin
commit: 87a905685157cfd7bbd7a8914997c65c45f20f17
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb 11 21:44:13 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb 11 21:44:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87a90568

dev-python/tomlkit: Stabilize 0.8.0 x86, #833092

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index 523a85227100..f6714ce552c6 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-02-11 Thread Arthur Zamarin
commit: e545a734072a35629f3e3facd89dd3557262bc58
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb 11 21:31:56 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb 11 21:31:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e545a734

dev-python/tomlkit: Stabilize 0.8.0 hppa, #833092

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index 0ff32bfc1a5d..523a85227100 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc ~x86"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-02-11 Thread Arthur Zamarin
commit: 15fd67293e2449e6ea73ca2f88cb389b328bbde8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb 11 21:11:32 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb 11 21:11:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15fd6729

dev-python/tomlkit: Stabilize 0.8.0 ppc64, #833092

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index 1fde50d1d1f1..0ff32bfc1a5d 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-02-11 Thread Arthur Zamarin
commit: bf20562bb47329e73e086e208cf1badf41ade8a4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb 11 21:07:14 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb 11 21:07:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf20562b

dev-python/tomlkit: Stabilize 0.8.0 arm, #833092

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index 41e21ac53e66..1fde50d1d1f1 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-02-11 Thread Arthur Zamarin
commit: bf4cc3652e96465604b1d95bf22a4a2ad5a44726
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb 11 21:02:00 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb 11 21:02:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf4cc365

dev-python/tomlkit: Stabilize 0.8.0 arm64, #833092

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index 2d5f8dbd4bb8..41e21ac53e66 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-02-10 Thread Agostino Sarubbo
commit: d7e98af4cca47c795fd0a02022a6ba0e291d0d1b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Feb 11 07:26:44 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Feb 11 07:26:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7e98af4

dev-python/tomlkit: sparc stable wrt bug #833092

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index 1d6d55cb5091..2d5f8dbd4bb8 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-02-10 Thread Agostino Sarubbo
commit: f3938f112383f20ecb090e10696b702ce76ef559
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Feb 11 07:25:33 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Feb 11 07:25:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3938f11

dev-python/tomlkit: ppc stable wrt bug #833092

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index c7541a181493..1d6d55cb5091 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-02-10 Thread Agostino Sarubbo
commit: 982092bd48285280a644614e2a49be4be0c69189
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Feb 11 07:24:47 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Feb 11 07:24:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=982092bd

dev-python/tomlkit: amd64 stable wrt bug #833092

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index dc3affcb4f9b..c7541a181493 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-02-10 Thread Michał Górny
commit: 7620d14883d3b727c6a99bb594d7e7471aa3224d
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb 10 22:52:36 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb 10 22:54:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7620d148

dev-python/tomlkit: Remove old

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

 dev-python/tomlkit/Manifest|  2 --
 dev-python/tomlkit/tomlkit-0.9.0-r1.ebuild | 30 --
 dev-python/tomlkit/tomlkit-0.9.1.ebuild| 30 --
 3 files changed, 62 deletions(-)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 25902762f734..ba5f95bcc597 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,4 +1,2 @@
 DIST tomlkit-0.8.0.tar.gz 179067 BLAKE2B 
871eb8371d94c76552d78a56adfbde5ebb9da4b93aa29229ae9aa279ae35fac488a1b4986169b818d2e5366883b8f246b44dc9075d0d9785b2d7d6f97e222ec1
 SHA512 
77b267201021e740d8134d0d5edfbef2cf077adac0b320d80887fdedda3f63f74df1957e8230976f16c80fcc58fd4cfabb195cccf0eda7d6cd29f5f65d362147
-DIST tomlkit-0.9.0.tar.gz 176037 BLAKE2B 
2301b1c9d28eeb595b0580ae4172b0c044a67c75b417b0a004af2afa5bb4bddb07a73e8cdc2949008efa024ab603e44e43d830453827e02d2b7a4483cc360dc3
 SHA512 
36cb7fd683b4dc6e82a4828db76ad997de79302ed485751b14375e7483400adbce8e9b8bf913a6f404ffc16a06cf90158caca20c4419bd032a7d27a8790573db
-DIST tomlkit-0.9.1.tar.gz 176273 BLAKE2B 
99a7fff43a23b386e6570b52a34eaf599c1507d41fdf7ee068d8b545ee28ef4ce560a255c14008ee5d90f7b580a04c6c29b3a44767e10c25caf9fe19df029d20
 SHA512 
7c9a8d5fd9550cb23f90f6ed627f957fdfe29397be0a99b4b0f68767cee268343ebd8a4f8977b9a0f84573ce7e49116874ad1d1af419b86ee41bab0efbfdf400
 DIST tomlkit-0.9.2.tar.gz 176380 BLAKE2B 
3af0a397382c9c7dd948d32c3d359d8409b8c4a1beb93cb528632909ab834fb86298da1dd1791e474dd83395cf462e6ce6842c32ea3011ade744b495cf1fd40a
 SHA512 
9a5a422ad7f2602d164b486dea816f878791393675a17ae30d10f12b6eed0ca73cbfaac7c359f1a57aea4f734b5ba31ee395c521e41ce608eae972c2059b

diff --git a/dev-python/tomlkit/tomlkit-0.9.0-r1.ebuild 
b/dev-python/tomlkit/tomlkit-0.9.0-r1.ebuild
deleted file mode 100644
index 4de45e362c79..
--- a/dev-python/tomlkit/tomlkit-0.9.0-r1.ebuild
+++ /dev/null
@@ -1,30 +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=( pypy3 python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="https://github.com/sdispater/tomlkit;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
-
-BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   # use setup.py to avoid circular dep with poetry-core
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["setuptools", "wheel"]
-   build-backend = "setuptools.build_meta"
-   EOF
-}

diff --git a/dev-python/tomlkit/tomlkit-0.9.1.ebuild 
b/dev-python/tomlkit/tomlkit-0.9.1.ebuild
deleted file mode 100644
index 4de45e362c79..
--- a/dev-python/tomlkit/tomlkit-0.9.1.ebuild
+++ /dev/null
@@ -1,30 +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=( pypy3 python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="https://github.com/sdispater/tomlkit;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
-
-BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   # use setup.py to avoid circular dep with poetry-core
-   cat > pyproject.toml <<-EOF || die
-   [build-system]
-   requires = ["setuptools", "wheel"]
-   build-backend = "setuptools.build_meta"
-   EOF
-}



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

2022-02-08 Thread Michał Górny
commit: 27386a83dac84f19c961dd6b9c86c16676d11632
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Feb  8 19:35:16 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Feb  8 20:14:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27386a83

dev-python/tomlkit: Bump to 0.9.2

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

 dev-python/tomlkit/Manifest |  1 +
 dev-python/tomlkit/tomlkit-0.9.2.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 7179b5ed43fc..25902762f734 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,3 +1,4 @@
 DIST tomlkit-0.8.0.tar.gz 179067 BLAKE2B 
871eb8371d94c76552d78a56adfbde5ebb9da4b93aa29229ae9aa279ae35fac488a1b4986169b818d2e5366883b8f246b44dc9075d0d9785b2d7d6f97e222ec1
 SHA512 
77b267201021e740d8134d0d5edfbef2cf077adac0b320d80887fdedda3f63f74df1957e8230976f16c80fcc58fd4cfabb195cccf0eda7d6cd29f5f65d362147
 DIST tomlkit-0.9.0.tar.gz 176037 BLAKE2B 
2301b1c9d28eeb595b0580ae4172b0c044a67c75b417b0a004af2afa5bb4bddb07a73e8cdc2949008efa024ab603e44e43d830453827e02d2b7a4483cc360dc3
 SHA512 
36cb7fd683b4dc6e82a4828db76ad997de79302ed485751b14375e7483400adbce8e9b8bf913a6f404ffc16a06cf90158caca20c4419bd032a7d27a8790573db
 DIST tomlkit-0.9.1.tar.gz 176273 BLAKE2B 
99a7fff43a23b386e6570b52a34eaf599c1507d41fdf7ee068d8b545ee28ef4ce560a255c14008ee5d90f7b580a04c6c29b3a44767e10c25caf9fe19df029d20
 SHA512 
7c9a8d5fd9550cb23f90f6ed627f957fdfe29397be0a99b4b0f68767cee268343ebd8a4f8977b9a0f84573ce7e49116874ad1d1af419b86ee41bab0efbfdf400
+DIST tomlkit-0.9.2.tar.gz 176380 BLAKE2B 
3af0a397382c9c7dd948d32c3d359d8409b8c4a1beb93cb528632909ab834fb86298da1dd1791e474dd83395cf462e6ce6842c32ea3011ade744b495cf1fd40a
 SHA512 
9a5a422ad7f2602d164b486dea816f878791393675a17ae30d10f12b6eed0ca73cbfaac7c359f1a57aea4f734b5ba31ee395c521e41ce608eae972c2059b

diff --git a/dev-python/tomlkit/tomlkit-0.9.2.ebuild 
b/dev-python/tomlkit/tomlkit-0.9.2.ebuild
new file mode 100644
index ..4de45e362c79
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.9.2.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="https://github.com/sdispater/tomlkit;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+
+BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   # use setup.py to avoid circular dep with poetry-core
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["setuptools", "wheel"]
+   build-backend = "setuptools.build_meta"
+   EOF
+}



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

2022-02-07 Thread Michał Górny
commit: 041a4109e50957e49871aea45831d433f28fcaa5
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Feb  7 19:47:59 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Feb  7 20:30:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=041a4109

dev-python/tomlkit: Bump to 0.9.1

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

 dev-python/tomlkit/Manifest |  1 +
 dev-python/tomlkit/tomlkit-0.9.1.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 128b84c80e3d..7179b5ed43fc 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,2 +1,3 @@
 DIST tomlkit-0.8.0.tar.gz 179067 BLAKE2B 
871eb8371d94c76552d78a56adfbde5ebb9da4b93aa29229ae9aa279ae35fac488a1b4986169b818d2e5366883b8f246b44dc9075d0d9785b2d7d6f97e222ec1
 SHA512 
77b267201021e740d8134d0d5edfbef2cf077adac0b320d80887fdedda3f63f74df1957e8230976f16c80fcc58fd4cfabb195cccf0eda7d6cd29f5f65d362147
 DIST tomlkit-0.9.0.tar.gz 176037 BLAKE2B 
2301b1c9d28eeb595b0580ae4172b0c044a67c75b417b0a004af2afa5bb4bddb07a73e8cdc2949008efa024ab603e44e43d830453827e02d2b7a4483cc360dc3
 SHA512 
36cb7fd683b4dc6e82a4828db76ad997de79302ed485751b14375e7483400adbce8e9b8bf913a6f404ffc16a06cf90158caca20c4419bd032a7d27a8790573db
+DIST tomlkit-0.9.1.tar.gz 176273 BLAKE2B 
99a7fff43a23b386e6570b52a34eaf599c1507d41fdf7ee068d8b545ee28ef4ce560a255c14008ee5d90f7b580a04c6c29b3a44767e10c25caf9fe19df029d20
 SHA512 
7c9a8d5fd9550cb23f90f6ed627f957fdfe29397be0a99b4b0f68767cee268343ebd8a4f8977b9a0f84573ce7e49116874ad1d1af419b86ee41bab0efbfdf400

diff --git a/dev-python/tomlkit/tomlkit-0.9.1.ebuild 
b/dev-python/tomlkit/tomlkit-0.9.1.ebuild
new file mode 100644
index ..4de45e362c79
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.9.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="https://github.com/sdispater/tomlkit;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+
+BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   # use setup.py to avoid circular dep with poetry-core
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["setuptools", "wheel"]
+   build-backend = "setuptools.build_meta"
+   EOF
+}



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

2022-02-04 Thread Michał Górny
commit: afb93cb2bc21552d8dd73aff160babba2b51
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb  4 18:50:06 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb  4 18:50:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afb9

dev-python/tomlkit: Remove old

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

 dev-python/tomlkit/Manifest |  1 -
 dev-python/tomlkit/tomlkit-0.7.2.ebuild | 20 
 2 files changed, 21 deletions(-)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 98935d4192b2..128b84c80e3d 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,3 +1,2 @@
-DIST tomlkit-0.7.2.tar.gz 159643 BLAKE2B 
6946cdc4c991671eb9e38cf836196a0dfdb7aba2697db95f3fcee58652d3c8ba96295df447b8145f0143447339834015abbd60928d7588c68ae31c298fd6d2d4
 SHA512 
cfb17d133463c22ae8b76dd03587f23f6dafedfd2decdf15ae29fe5c05117ebd3e17057f49bdb17345386f5ce3073b1e5b1937c6ab6683aefb0fc0abd7571580
 DIST tomlkit-0.8.0.tar.gz 179067 BLAKE2B 
871eb8371d94c76552d78a56adfbde5ebb9da4b93aa29229ae9aa279ae35fac488a1b4986169b818d2e5366883b8f246b44dc9075d0d9785b2d7d6f97e222ec1
 SHA512 
77b267201021e740d8134d0d5edfbef2cf077adac0b320d80887fdedda3f63f74df1957e8230976f16c80fcc58fd4cfabb195cccf0eda7d6cd29f5f65d362147
 DIST tomlkit-0.9.0.tar.gz 176037 BLAKE2B 
2301b1c9d28eeb595b0580ae4172b0c044a67c75b417b0a004af2afa5bb4bddb07a73e8cdc2949008efa024ab603e44e43d830453827e02d2b7a4483cc360dc3
 SHA512 
36cb7fd683b4dc6e82a4828db76ad997de79302ed485751b14375e7483400adbce8e9b8bf913a6f404ffc16a06cf90158caca20c4419bd032a7d27a8790573db

diff --git a/dev-python/tomlkit/tomlkit-0.7.2.ebuild 
b/dev-python/tomlkit/tomlkit-0.7.2.ebuild
deleted file mode 100644
index bea9c9c660d2..
--- a/dev-python/tomlkit/tomlkit-0.7.2.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Style preserving TOML library"
-HOMEPAGE="https://github.com/sdispater/tomlkit;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest



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

2022-02-02 Thread Michał Górny
commit: 9170bba7020993928fb8cf38dc45ec9de0e6d924
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb  2 09:18:43 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb  2 09:26:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9170bba7

dev-python/tomlkit: Force setuptools build to fix poetry dep cycle

Closes: https://bugs.gentoo.org/832531
Signed-off-by: Michał Górny  gentoo.org>

 .../tomlkit/{tomlkit-0.9.0.ebuild => tomlkit-0.9.0-r1.ebuild} | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/dev-python/tomlkit/tomlkit-0.9.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.9.0-r1.ebuild
similarity index 68%
rename from dev-python/tomlkit/tomlkit-0.9.0.ebuild
rename to dev-python/tomlkit/tomlkit-0.9.0-r1.ebuild
index 7ec87f0790cf..4de45e362c79 100644
--- a/dev-python/tomlkit/tomlkit-0.9.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.9.0-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-DISTUTILS_USE_PEP517=poetry
+DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( pypy3 python3_{8..10} )
 
 inherit distutils-r1
@@ -19,3 +19,12 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips 
~ppc ~ppc64 ~riscv ~
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 
 distutils_enable_tests pytest
+
+src_configure() {
+   # use setup.py to avoid circular dep with poetry-core
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["setuptools", "wheel"]
+   build-backend = "setuptools.build_meta"
+   EOF
+}



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

2022-02-01 Thread Michał Górny
commit: 0b844ea2056ebe9b95dd06f165a1325250f83182
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Feb  1 21:08:14 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Feb  1 22:03:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b844ea2

dev-python/tomlkit: Bump to 0.9.0

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

 dev-python/tomlkit/Manifest |  1 +
 dev-python/tomlkit/tomlkit-0.9.0.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 8eb9d9a6271e..98935d4192b2 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1,2 +1,3 @@
 DIST tomlkit-0.7.2.tar.gz 159643 BLAKE2B 
6946cdc4c991671eb9e38cf836196a0dfdb7aba2697db95f3fcee58652d3c8ba96295df447b8145f0143447339834015abbd60928d7588c68ae31c298fd6d2d4
 SHA512 
cfb17d133463c22ae8b76dd03587f23f6dafedfd2decdf15ae29fe5c05117ebd3e17057f49bdb17345386f5ce3073b1e5b1937c6ab6683aefb0fc0abd7571580
 DIST tomlkit-0.8.0.tar.gz 179067 BLAKE2B 
871eb8371d94c76552d78a56adfbde5ebb9da4b93aa29229ae9aa279ae35fac488a1b4986169b818d2e5366883b8f246b44dc9075d0d9785b2d7d6f97e222ec1
 SHA512 
77b267201021e740d8134d0d5edfbef2cf077adac0b320d80887fdedda3f63f74df1957e8230976f16c80fcc58fd4cfabb195cccf0eda7d6cd29f5f65d362147
+DIST tomlkit-0.9.0.tar.gz 176037 BLAKE2B 
2301b1c9d28eeb595b0580ae4172b0c044a67c75b417b0a004af2afa5bb4bddb07a73e8cdc2949008efa024ab603e44e43d830453827e02d2b7a4483cc360dc3
 SHA512 
36cb7fd683b4dc6e82a4828db76ad997de79302ed485751b14375e7483400adbce8e9b8bf913a6f404ffc16a06cf90158caca20c4419bd032a7d27a8790573db

diff --git a/dev-python/tomlkit/tomlkit-0.9.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.9.0.ebuild
new file mode 100644
index ..7ec87f0790cf
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.9.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=poetry
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="https://github.com/sdispater/tomlkit;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+
+BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
+
+distutils_enable_tests pytest



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

2022-01-26 Thread Michał Górny
commit: 7f49dde9b3842dc98b6ec4a9cf6b4db7eb9dd01a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jan 26 23:15:21 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jan 26 23:19:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f49dde9

dev-python/tomlkit: Keyword 0.8.0 alpha, #831182

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index 24ebaacc4b63..dc3affcb4f9b 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-01-26 Thread Michał Górny
commit: 49ae255edcc75fbf94da8458c17682a4385c361c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jan 26 21:20:51 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jan 26 21:31:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49ae255e

dev-python/tomlkit: Add pypy3 love

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index d88374a7a3a9..24ebaacc4b63 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
 inherit distutils-r1
 
 DESCRIPTION="Style preserving TOML library"



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

2022-01-19 Thread Marek Szuba
commit: d22f9c2369156ccf9bf12431b486e4fb243f6387
Author: Marek Szuba  gentoo  org>
AuthorDate: Wed Jan 19 13:46:06 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Wed Jan 19 13:51:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d22f9c23

dev-python/tomlkit: keyword 0.8.0 for ~riscv

Signed-off-by: Marek Szuba  gentoo.org>

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index d65cb89f6d71..d88374a7a3a9 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-01-19 Thread Jakov Smolić
commit: 4bc5389bbbcca94b66da75238210d4c4451aad1f
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Jan 19 13:44:02 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Jan 19 13:44:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bc5389b

dev-python/tomlkit: Keyword 0.7.2 x86, #831359

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.7.2.ebuild 
b/dev-python/tomlkit/tomlkit-0.7.2.ebuild
index 9709c9794fea..bea9c9c660d2 100644
--- a/dev-python/tomlkit/tomlkit-0.7.2.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.7.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=7
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-01-17 Thread James Le Cuirot
commit: f66f651c9d7a79de00f9a429acdf484fdb6bfcb7
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Jan 17 12:58:28 2022 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jan 17 12:58:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f66f651c

dev-python/tomlkit: Keyword 0.8.0 for ~m68k

The tests pass.

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index 0b702f1a86ed..d65cb89f6d71 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-01-16 Thread Joshua Kinard
commit: 52bfd72d7a131fcdace391cb4056e355d2bfc9bc
Author: Joshua Kinard  gentoo  org>
AuthorDate: Mon Jan 17 06:42:31 2022 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Mon Jan 17 06:53:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52bfd72d

dev-python/tomlkit: Added ~mips to KEYWORDS

Bug: https://bugs.gentoo.org/831182
Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.30, Repoman-3.0.3

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index ae8cfff5f075..0b702f1a86ed 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-01-16 Thread Arthur Zamarin
commit: 343a21bce9de0526a133acd7e6161983ef849e25
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Jan 16 18:30:04 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Jan 16 18:30:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=343a21bc

dev-python/tomlkit: Keyword 0.8.0 ppc64, #831182

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index c048b1ed6f2a..2845dfb1cb9b 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~s390 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-01-16 Thread Arthur Zamarin
commit: f6d05c77b617734cff2a8a9cd42313a5ef03e514
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Jan 16 18:30:09 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Jan 16 18:30:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6d05c77

dev-python/tomlkit: Keyword 0.8.0 x86 x86, #831182

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index 2845dfb1cb9b..ae8cfff5f075 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-01-16 Thread Arthur Zamarin
commit: 71fd9a7a16cdcf1837e40083e3fc18c71711e270
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Jan 16 18:29:50 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Jan 16 18:29:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71fd9a7a

dev-python/tomlkit: Keyword 0.8.0 arm, #831182

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index f3bbdb3685d8..2b881e560f04 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ia64 ~s390 ~sparc"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~s390 ~sparc"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-01-16 Thread Arthur Zamarin
commit: 3ee8618dd633dedb5f8bd81aa938048257a3e529
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Jan 16 18:30:00 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Jan 16 18:30:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ee8618d

dev-python/tomlkit: Keyword 0.8.0 ppc, #831182

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index d39fdba316fd..c048b1ed6f2a 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~s390 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~s390 ~sparc"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-01-16 Thread Arthur Zamarin
commit: b1e395263d900cccf920006c82318739dc01883f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Jan 16 18:29:45 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Jan 16 18:29:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1e39526

dev-python/tomlkit: Keyword 0.8.0 sparc, #831182

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index 189a28733912..f3bbdb3685d8 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ia64 ~s390"
+KEYWORDS="~amd64 ~hppa ~ia64 ~s390 ~sparc"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-01-16 Thread Arthur Zamarin
commit: 2331fb3bf3560e78ba169e4524aced276f51a56b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Jan 16 18:29:54 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Jan 16 18:29:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2331fb3b

dev-python/tomlkit: Keyword 0.8.0 arm64, #831182

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index 2b881e560f04..d39fdba316fd 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~s390 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~s390 ~sparc"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2022-01-16 Thread Arthur Zamarin
commit: f4fd3cdccd78eb0222f9fc85407c5780e69eb625
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Jan 16 18:29:38 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Jan 16 18:29:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4fd3cdc

dev-python/tomlkit: Keyword 0.8.0 ia64, #831182

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

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

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
index ef4fd34516d6..189a28733912 100644
--- a/dev-python/tomlkit/tomlkit-0.8.0.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~s390"
+KEYWORDS="~amd64 ~hppa ~ia64 ~s390"
 
 BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 



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

2021-12-20 Thread Michał Górny
commit: 10ca5231a3c5f141417a29da546467e36aac952f
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Dec 20 08:07:58 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Dec 20 08:39:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10ca5231

dev-python/tomlkit: Bump to 0.8.0

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

 dev-python/tomlkit/Manifest |  1 +
 dev-python/tomlkit/tomlkit-0.8.0.ebuild | 19 +++
 2 files changed, 20 insertions(+)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
index 9229d0898d57..8eb9d9a6271e 100644
--- a/dev-python/tomlkit/Manifest
+++ b/dev-python/tomlkit/Manifest
@@ -1 +1,2 @@
 DIST tomlkit-0.7.2.tar.gz 159643 BLAKE2B 
6946cdc4c991671eb9e38cf836196a0dfdb7aba2697db95f3fcee58652d3c8ba96295df447b8145f0143447339834015abbd60928d7588c68ae31c298fd6d2d4
 SHA512 
cfb17d133463c22ae8b76dd03587f23f6dafedfd2decdf15ae29fe5c05117ebd3e17057f49bdb17345386f5ce3073b1e5b1937c6ab6683aefb0fc0abd7571580
+DIST tomlkit-0.8.0.tar.gz 179067 BLAKE2B 
871eb8371d94c76552d78a56adfbde5ebb9da4b93aa29229ae9aa279ae35fac488a1b4986169b818d2e5366883b8f246b44dc9075d0d9785b2d7d6f97e222ec1
 SHA512 
77b267201021e740d8134d0d5edfbef2cf077adac0b320d80887fdedda3f63f74df1957e8230976f16c80fcc58fd4cfabb195cccf0eda7d6cd29f5f65d362147

diff --git a/dev-python/tomlkit/tomlkit-0.8.0.ebuild 
b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
new file mode 100644
index ..4f5efac12e87
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.8.0.ebuild
@@ -0,0 +1,19 @@
+# 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
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="https://github.com/sdispater/tomlkit;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
+
+distutils_enable_tests pytest



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

2021-06-10 Thread Andrew Ammerlaan
commit: 2cacba4874ecba9f0677658e334f51b0cc860d35
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Jun 10 12:24:09 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Jun 10 12:24:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cacba48

dev-python/tomlkit: add missing test dep

Closes: https://bugs.gentoo.org/795219
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/tomlkit/tomlkit-0.7.2.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/tomlkit/tomlkit-0.7.2.ebuild 
b/dev-python/tomlkit/tomlkit-0.7.2.ebuild
index b90a5d8b8c8..9709c9794fe 100644
--- a/dev-python/tomlkit/tomlkit-0.7.2.ebuild
+++ b/dev-python/tomlkit/tomlkit-0.7.2.ebuild
@@ -15,4 +15,6 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
 
+BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
+
 distutils_enable_tests pytest



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

2021-06-10 Thread Andrew Ammerlaan
commit: ea1c31d0fcd15efcdc9c42604ee976ac8ded5c36
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Jun 10 09:20:31 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Jun 10 09:58:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea1c31d0

dev-python/tomlkit: add new dep of jupyter_packaging

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

 dev-python/tomlkit/Manifest |  1 +
 dev-python/tomlkit/metadata.xml | 13 +
 dev-python/tomlkit/tomlkit-0.7.2.ebuild | 18 ++
 3 files changed, 32 insertions(+)

diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
new file mode 100644
index 000..9229d0898d5
--- /dev/null
+++ b/dev-python/tomlkit/Manifest
@@ -0,0 +1 @@
+DIST tomlkit-0.7.2.tar.gz 159643 BLAKE2B 
6946cdc4c991671eb9e38cf836196a0dfdb7aba2697db95f3fcee58652d3c8ba96295df447b8145f0143447339834015abbd60928d7588c68ae31c298fd6d2d4
 SHA512 
cfb17d133463c22ae8b76dd03587f23f6dafedfd2decdf15ae29fe5c05117ebd3e17057f49bdb17345386f5ce3073b1e5b1937c6ab6683aefb0fc0abd7571580

diff --git a/dev-python/tomlkit/metadata.xml b/dev-python/tomlkit/metadata.xml
new file mode 100644
index 000..3fbb877c5ee
--- /dev/null
+++ b/dev-python/tomlkit/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+s...@gentoo.org
+Gentoo Science Project
+  
+  
+  
+tomlkit
+sdispater/tomlkit
+  
+

diff --git a/dev-python/tomlkit/tomlkit-0.7.2.ebuild 
b/dev-python/tomlkit/tomlkit-0.7.2.ebuild
new file mode 100644
index 000..b90a5d8b8c8
--- /dev/null
+++ b/dev-python/tomlkit/tomlkit-0.7.2.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Style preserving TOML library"
+HOMEPAGE="https://github.com/sdispater/tomlkit;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+distutils_enable_tests pytest