Gentoo Archives: gentoo-commits

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