Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/yamlpath/
Date: Wed, 28 Sep 2022 01:46:10
Message-Id: 1664329559.e68f69d481749a4fbb334846d574ba93558a64d4.zmedico@gentoo
1 commit: e68f69d481749a4fbb334846d574ba93558a64d4
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 28 01:45:53 2022 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 28 01:45:59 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e68f69d4
7
8 dev-python/yamlpath: add 3.6.7
9
10 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
11
12 dev-python/yamlpath/Manifest | 1 +
13 dev-python/yamlpath/yamlpath-3.6.7.ebuild | 50 +++++++++++++++++++++++++++++++
14 2 files changed, 51 insertions(+)
15
16 diff --git a/dev-python/yamlpath/Manifest b/dev-python/yamlpath/Manifest
17 index 7698c79652a6..25aa199e16b7 100644
18 --- a/dev-python/yamlpath/Manifest
19 +++ b/dev-python/yamlpath/Manifest
20 @@ -1,3 +1,4 @@
21 DIST yamlpath-3.6.4.gh.tar.gz 216016 BLAKE2B fc6537b7c80ecfb9f69c646970e43935374bb105df007c123cf837eb1de6827ac2cc443294b69500c966ea6bc5d7f56498aec13340238c7660118f17cc6685e5 SHA512 eb1ac0d5861818f4f4b57b07f9fa7f758846982abbb3ac4ec58a1adaca8ec36deba1e21ce3e13916e74a946512f4d66e341a9d45392ef7133d0293e5fd6f66c9
22 DIST yamlpath-3.6.5.gh.tar.gz 216508 BLAKE2B df1d849840356eb75d9e19a5b53ec94ce140d7474be2fde19ab7f438229d347f247ee3c0f25cef4948f71d95d6935aebc0f8e58bc869083849820f9d641d7f22 SHA512 1d80514516eb573b0c644af7eaab7211714e271cc4334db5d965e2da58f06d26b3cdcb8c1412d03151a196e1b48aeb0c0d5038364a09907bb2af1efa71dd71f3
23 DIST yamlpath-3.6.6.gh.tar.gz 222605 BLAKE2B b8e4345e68bb03b9aa48f31813ead149a1e547bab36deacfc255b6d8bb62148ed11bed6495e3e8db14b48859717ee87386e6d740c8b33dbf16bf4923bc19bbcf SHA512 3699cd2af82c77b29de60d0912dd5fc858a7b10ac960a8944dd0566073a7bdf5bccc6378d5aa6e52498482e51aa00cb2cae53f2a089308617d1358d744b5efcc
24 +DIST yamlpath-3.6.7.gh.tar.gz 219770 BLAKE2B 779b94f6aff7e6430c89508145d85d2b7b5ddb4bc1070fd68d402e27b7bf596c7e68f1bfb8683791ea2572ef6d01fe5f2de4fd646be32b8ab266747371f61f36 SHA512 7313d3eaa9268d4c2acb1bc87052068498840943be503fa160833c03f372e5c6d7604572d277b70c551784fd8c9507e084f12dd651b5c4f600f69e8ee7cefb62
25
26 diff --git a/dev-python/yamlpath/yamlpath-3.6.7.ebuild b/dev-python/yamlpath/yamlpath-3.6.7.ebuild
27 new file mode 100644
28 index 000000000000..e236b9aeee0e
29 --- /dev/null
30 +++ b/dev-python/yamlpath/yamlpath-3.6.7.ebuild
31 @@ -0,0 +1,50 @@
32 +# Copyright 2021-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_COMPAT=( python3_{8..11} )
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Command-line processors for YAML/JSON/Compatible data"
41 +HOMEPAGE="https://github.com/wwkimball/yamlpath https://github.com/wwkimball/yamlpath/wiki"
42 +SRC_URI="
43 + https://github.com/wwkimball/yamlpath/archive/v${PV}.tar.gz
44 + -> ${P}.gh.tar.gz
45 +"
46 +
47 +LICENSE="ISC"
48 +SLOT="0"
49 +KEYWORDS="~amd64"
50 +
51 +RDEPEND="
52 + dev-python/ruamel-yaml[${PYTHON_USEDEP}]
53 +"
54 +BDEPEND="
55 + test? (
56 + dev-python/pytest-console-scripts[${PYTHON_USEDEP}]
57 + dev-ruby/hiera-eyaml
58 + )
59 +"
60 +
61 +distutils_enable_tests --install pytest
62 +
63 +python_prepare_all() {
64 + sed -e '/ruamel\.yaml/d' \
65 + -e '/pytest-cov/d' \
66 + -e "/find_packages/s/()/(exclude=\['tests'\])/" \
67 + -i setup.py || die
68 +
69 + distutils-r1_python_prepare_all
70 +}
71 +
72 +python_install() {
73 + distutils-r1_python_install
74 +
75 + # install and optimize yamlpath/patches/aliasstyle.py
76 + local sitedir=$(python_get_sitedir)
77 + [[ -d ${D}${sitedir} ]] || die "${D}${sitedir}: No such directory"
78 + insinto "${sitedir}/yamlpath"
79 + doins -r "${S}/yamlpath/patches"
80 + python_optimize "${D}${sitedir}"
81 +}