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: Fri, 24 Jun 2022 10:21:49
Message-Id: 1656066097.d2372459861a730a31f7dfb2d63961d7709df4df.mgorny@gentoo
1 commit: d2372459861a730a31f7dfb2d63961d7709df4df
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 24 09:46:16 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 24 10:21:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2372459
7
8 dev-python/tomlkit: Remove old
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.10.2.ebuild | 37 --------------------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/dev-python/tomlkit/Manifest b/dev-python/tomlkit/Manifest
17 index 6f8632ebbb5c..cd8bfc3e071a 100644
18 --- a/dev-python/tomlkit/Manifest
19 +++ b/dev-python/tomlkit/Manifest
20 @@ -1,2 +1 @@
21 -DIST tomlkit-0.10.2.tar.gz 184537 BLAKE2B ab912e1c45d641e7c57f1121a6281ed0609c3ddf18c55eb887a67ac8a4df669a3e958e769a07f7ad456c80713337af4b892d4bb73671ce12e4b2fc4d09af0734 SHA512 e1d5353659f9a0f4ba2f6a0b82980f0b50b012e3b299c2c6b12aa8a63fc4772649bdc2b5a755c21acc46fe2d226241918fb09a4202cca596b6e9633be95e79d8
22 DIST tomlkit-0.11.0.tar.gz 185695 BLAKE2B cd2a22afb8ea445e39567cdc65f636d8d9f2aef07575a2dd989c19abf1a6f7baf2e9adb78003576af9cdefebe4e8c6031efdabcc9487e10770565589a67b0c86 SHA512 2e89748140cfdae217ac3ac999f0b718414d28218d61fb5219adc503ede2ea1f4003be9ef4453f189b0ee86df463c59520244b9fd26553bd4d8047674cba61c9
23
24 diff --git a/dev-python/tomlkit/tomlkit-0.10.2.ebuild b/dev-python/tomlkit/tomlkit-0.10.2.ebuild
25 deleted file mode 100644
26 index efdc6369cdae..000000000000
27 --- a/dev-python/tomlkit/tomlkit-0.10.2.ebuild
28 +++ /dev/null
29 @@ -1,37 +0,0 @@
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", "wheel"]
64 - build-backend = "setuptools.build_meta"
65 - EOF
66 -}