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/ruamel-yaml/
Date: Thu, 03 Feb 2022 21:34:23
Message-Id: 1643923734.5ccd86dcb49c770d84b0222c1c772c7dc24b8b6d.mgorny@gentoo
1 commit: 5ccd86dcb49c770d84b0222c1c772c7dc24b8b6d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 3 21:28:54 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 3 21:28:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ccd86dc
7
8 dev-python/ruamel-yaml: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/ruamel-yaml/Manifest | 1 -
13 dev-python/ruamel-yaml/ruamel-yaml-0.17.19.ebuild | 47 -----------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/dev-python/ruamel-yaml/Manifest b/dev-python/ruamel-yaml/Manifest
17 index 263d6cd2cf06..f96cee2d5296 100644
18 --- a/dev-python/ruamel-yaml/Manifest
19 +++ b/dev-python/ruamel-yaml/Manifest
20 @@ -1,2 +1 @@
21 -DIST ruamel.yaml-0.17.19.tar.xz 184508 BLAKE2B dea922cab102f8a73888df2af8093a0c6ae51bae93ceb34f5cf58d1c9be407b65b52b000688213aed41ba14cf39506193a13102d8cd0a6597c8f7d30cc15a0fb SHA512 5f1daeead463e8fc0de43f2180ef1b536036d01c3aa1fdeaf6854789c0170dd54a09d72055b5528ed836f8323b3bec79b85c409812d7ab3c09de0e98f03f4c33
22 DIST ruamel.yaml-0.17.20.tar.xz 184628 BLAKE2B 0b50240717c10d6dd5aefed9e092fddf503f079066ed49d1f614928046544a67b9168c76a58ee5fbe782fe6e1296a6282416fa8567783f4543ef9c8c0ad340ca SHA512 8c2614ffecba1560e829cfc27f9b4effec589f9eba90792c470ba8f531fecd06ae6f12036ee5463f89021360fb4f35e9b78a16fc778507e88c5c6a8f6e293876
23
24 diff --git a/dev-python/ruamel-yaml/ruamel-yaml-0.17.19.ebuild b/dev-python/ruamel-yaml/ruamel-yaml-0.17.19.ebuild
25 deleted file mode 100644
26 index 10676c843014..000000000000
27 --- a/dev-python/ruamel-yaml/ruamel-yaml-0.17.19.ebuild
28 +++ /dev/null
29 @@ -1,47 +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 -PYTHON_COMPAT=( pypy3 python3_{8..10} )
36 -inherit distutils-r1
37 -
38 -MY_P="${P/-/.}"
39 -DESCRIPTION="YAML parser/emitter that supports roundtrip comment preservation"
40 -HOMEPAGE="
41 - https://pypi.org/project/ruamel.yaml/
42 - https://sourceforge.net/p/ruamel-yaml/"
43 -# PyPI tarballs do not include tests
44 -SRC_URI="mirror://sourceforge/ruamel-dl-tagged-releases/${MY_P}.tar.xz"
45 -S="${WORKDIR}"/${MY_P}
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
50 -
51 -RDEPEND="
52 - dev-python/namespace-ruamel[${PYTHON_USEDEP}]
53 - dev-python/ruamel-yaml-clib[${PYTHON_USEDEP}]"
54 -BDEPEND="
55 - test? (
56 - dev-python/ruamel-std-pathlib[${PYTHON_USEDEP}]
57 - )"
58 -
59 -distutils_enable_tests pytest
60 -
61 -# Old PyYAML tests from lib/ require special set-up and are invoked indirectly
62 -# via test_z_olddata, tell pytest itself to leave the subdir alone.
63 -python_test() {
64 - local deselect=()
65 -
66 - [[ ${EPYTHON} == pypy3 ]] && deselect+=(
67 - _test/test_deprecation.py::test_collections_deprecation
68 - )
69 -
70 - epytest --ignore _test/lib/ ${deselect[@]/#/--deselect }
71 -}
72 -
73 -python_install() {
74 - distutils-r1_python_install --single-version-externally-managed
75 - find "${ED}" -name '*.pth' -delete || die
76 -}