diff options
author | Patrick McLean <patrick.mclean@sony.com> | 2019-12-02 18:45:24 -0800 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2019-12-02 18:45:24 -0800 |
commit | 4c8f90fcab0b41416d823d0354fe382e1ce63814 (patch) | |
tree | bc04e3f3397e87b1631ab28bd3b2803019d1b3e7 /app-misc | |
parent | dev-python/xmltodict-0.12.0-r1: revbump, add py38, new distutils funcs (diff) | |
download | gentoo-4c8f90fcab0b41416d823d0354fe382e1ce63814.tar.gz gentoo-4c8f90fcab0b41416d823d0354fe382e1ce63814.tar.bz2 gentoo-4c8f90fcab0b41416d823d0354fe382e1ce63814.zip |
app-misc/yq-2.9.2-r1: revbump, add py38 and pypy{,3}, kill extra deps
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/yq/yq-2.9.2-r1.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app-misc/yq/yq-2.9.2-r1.ebuild b/app-misc/yq/yq-2.9.2-r1.ebuild new file mode 100644 index 000000000000..13fea288b116 --- /dev/null +++ b/app-misc/yq/yq-2.9.2-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python2_7 python3_{5,6,7,8} pypy{,3} ) + +inherit distutils-r1 + +DESCRIPTION="Command-line YAML processor - jq wrapper for YAML documents" +HOMEPAGE="https://yq.readthedocs.io/ https://github.com/kislyuk/yq/ https://pypi.org/project/yq/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="app-misc/jq + >=dev-python/pyyaml-3.11[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/xmltodict[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + test? ( + dev-python/toml[${PYTHON_USEDEP}] + dev-python/wheel[${PYTHON_USEDEP}] + )" + +distutils_enable_tests unittest + +python_prepare_all() { + sed -e 's:unittest.main():unittest.main(verbosity=2):' \ + -i test/test.py || die + + sed -r -i 's:[[:space:]]*"coverage",:: ; s:[[:space:]]*"flake8",::' \ + setup.py || die + + distutils-r1_python_prepare_all +} + +python_test() { + "${EPYTHON}" test/test.py || die "tests failed under ${EPYTHON}" +} |