Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tomlkit/
Date: Wed, 28 Sep 2022 18:34:31
Message-Id: 1664389976.f5a60f8fa487882252c2535b95978fbf7615d938.mgorny@gentoo
1 commit: f5a60f8fa487882252c2535b95978fbf7615d938
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 28 18:03:23 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 28 18:32:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5a60f8f
7
8 dev-python/tomlkit: Bump to 0.11.5
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/tomlkit/Manifest | 1 +
13 dev-python/tomlkit/tomlkit-0.11.5.ebuild | 37 ++++++++++++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
17 index e0e48999b611..0a9804ad75ca 100644
18 --- a/dev-python/tomlkit/Manifest
19 +++ b/dev-python/tomlkit/Manifest
20 @@ -1 +1,2 @@
21 DIST tomlkit-0.11.4.tar.gz 187608 BLAKE2B f6920eb53c4b5dc13afd5ccd8b9ac5ae867e4b353e6bcc2be4d5e4d8774e2869f93f4c222931b2b3c505371b8812de5ef1797891ce828889a806e665ab32aa84 SHA512 b68b5d2c5f2ad7aa2cbeac308008467f22c0c9975862506bcabbfdf1de677dbaab1c5cead17c68f4bf2977a7077ddcc46ef6383bd8a87e2ac1252641ae463335
22 +DIST tomlkit-0.11.5.tar.gz 188079 BLAKE2B 5ef55255904d3393c5a0937b6df30d95c9a41892848abaafab844233bfe9c656cdf4348a468cf2c9afa912d14a334874ac7854a9e94a4ee9b0bab35021d18667 SHA512 71225787e3543f995358b288bf459256632a8cd72a52aae2a1c6ea04e7c0978fb9ccfa856fa5e96e6d6c9d416abcefccec3e94985421ea14e31a755ee85a3dec
23
24 diff --git a/dev-python/tomlkit/tomlkit-0.11.5.ebuild b/dev-python/tomlkit/tomlkit-0.11.5.ebuild
25 new file mode 100644
26 index 000000000000..8f575bb2866a
27 --- /dev/null
28 +++ b/dev-python/tomlkit/tomlkit-0.11.5.ebuild
29 @@ -0,0 +1,37 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( pypy3 python3_{8..11} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Style preserving TOML library"
41 +HOMEPAGE="
42 + https://github.com/sdispater/tomlkit/
43 + https://pypi.org/project/tomlkit/
44 +"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
50 +
51 +BDEPEND="
52 + test? (
53 + dev-python/pyyaml[${PYTHON_USEDEP}]
54 + )
55 +"
56 +
57 +distutils_enable_tests pytest
58 +
59 +src_configure() {
60 + # use setup.py to avoid circular dep with poetry-core
61 + cat > pyproject.toml <<-EOF || die
62 + [build-system]
63 + requires = ["setuptools"]
64 + build-backend = "setuptools.build_meta"
65 + EOF
66 +}