yq: update to 2.7.0.

This commit is contained in:
maxice8 2018-08-04 23:20:22 -03:00
parent d53f0944a7
commit f4adaa3022
1 changed files with 8 additions and 8 deletions

View File

@ -1,24 +1,24 @@
# Template file for 'yq' # Template file for 'yq'
pkgname=yq pkgname=yq
version=2.6.0 version=2.7.0
revision=1 revision=1
noarch=yes noarch=yes
build_style=python3-module build_style=python3-module
hostmakedepends="python3-setuptools" hostmakedepends="python3-setuptools"
makedepends="python3-yaml" makedepends="python3-yaml"
checkdepends="jq python3-xmltodict" checkdepends="jq python3-xmltodict python3-toml"
depends="jq python3-xmltodict python3-yaml" depends="jq python3-xmltodict python3-yaml python3-toml"
short_desc="Command-line YAML processor written in Python that wraps around jq" short_desc="Command-line YAML processor written in Python that wraps around jq"
maintainer="maxice8 <thinkabit.ukim@gmail.com>" maintainer="maxice8 <thinkabit.ukim@gmail.com>"
license="Apache-2.0" license="Apache-2.0"
homepage="https://github.com/kislyuk/yq" homepage="https://github.com/kislyuk/yq"
distfiles="${PYPI_SITE}/y/yq/yq-${version}.tar.gz" distfiles="${PYPI_SITE}/y/yq/yq-${version}.tar.gz"
checksum=c64f763e8409ed55eb055793c26fc347b5a6666b303d49e9d2f8d7cea979df73 checksum=f62de3b596056bfb26517b88c1c1775b8364cdae963e36b29ba49623e689a8db
post_install() {
mv "${DESTDIR}/usr/bin/xq" "${DESTDIR}/usr/bin/yq-xq"
}
do_check() { do_check() {
python3 test/test.py python3 test/test.py
} }
post_install() {
mv "${DESTDIR}/usr/bin/xq" "${DESTDIR}/usr/bin/yq-xq"
}