commit:     09397815f3fe744d6d4a7b18ec0d8881363a883c
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 19 18:48:43 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 19 19:02:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09397815

dev-python/yamlpath: add 3.6.5

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/yamlpath/Manifest              |  1 +
 dev-python/yamlpath/yamlpath-3.6.5.ebuild | 50 +++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/dev-python/yamlpath/Manifest b/dev-python/yamlpath/Manifest
index bbb3675b2b2a..a1ff257227e5 100644
--- a/dev-python/yamlpath/Manifest
+++ b/dev-python/yamlpath/Manifest
@@ -1 +1,2 @@
 DIST yamlpath-3.6.4.gh.tar.gz 216016 BLAKE2B 
fc6537b7c80ecfb9f69c646970e43935374bb105df007c123cf837eb1de6827ac2cc443294b69500c966ea6bc5d7f56498aec13340238c7660118f17cc6685e5
 SHA512 
eb1ac0d5861818f4f4b57b07f9fa7f758846982abbb3ac4ec58a1adaca8ec36deba1e21ce3e13916e74a946512f4d66e341a9d45392ef7133d0293e5fd6f66c9
+DIST yamlpath-3.6.5.gh.tar.gz 216508 BLAKE2B 
df1d849840356eb75d9e19a5b53ec94ce140d7474be2fde19ab7f438229d347f247ee3c0f25cef4948f71d95d6935aebc0f8e58bc869083849820f9d641d7f22
 SHA512 
1d80514516eb573b0c644af7eaab7211714e271cc4334db5d965e2da58f06d26b3cdcb8c1412d03151a196e1b48aeb0c0d5038364a09907bb2af1efa71dd71f3

diff --git a/dev-python/yamlpath/yamlpath-3.6.5.ebuild 
b/dev-python/yamlpath/yamlpath-3.6.5.ebuild
new file mode 100644
index 000000000000..234c02f9ca7f
--- /dev/null
+++ b/dev-python/yamlpath/yamlpath-3.6.5.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Command-line processors for YAML/JSON/Compatible data"
+HOMEPAGE="https://github.com/wwkimball/yamlpath 
https://github.com/wwkimball/yamlpath/wiki";
+SRC_URI="
+       https://github.com/wwkimball/yamlpath/archive/v${PV}.tar.gz
+               -> ${P}.gh.tar.gz
+"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+       dev-python/ruamel-yaml[${PYTHON_USEDEP}]
+"
+BDEPEND="
+       test? (
+               dev-python/pytest-console-scripts[${PYTHON_USEDEP}]
+               dev-ruby/hiera-eyaml
+       )
+"
+
+distutils_enable_tests --install pytest
+
+python_prepare_all() {
+       sed -e '/ruamel\.yaml/d' \
+               -e '/pytest-cov/d' \
+               -e "/find_packages/s/()/(exclude=\['tests'\])/" \
+               -i setup.py || die
+
+       distutils-r1_python_prepare_all
+}
+
+python_install() {
+       distutils-r1_python_install
+
+       # install and optimize yamlpath/patches/aliasstyle.py
+       local sitedir=$(python_get_sitedir)
+       [[ -d ${D}${sitedir} ]] || die "${D}${sitedir}: No such directory"
+       insinto "${sitedir}/yamlpath"
+       doins -r "${S}/yamlpath/patches"
+       python_optimize "${D}${sitedir}"
+}

Reply via email to