yaml: update to 1.14.0, rename to yq-go.

Closes: #10107 [via git-merge-pr]
This commit is contained in:
maxice8 2017-12-19 01:48:38 -02:00 committed by Jürgen Buchmüller
parent 5c5f446a9e
commit a11aa856a1
4 changed files with 29 additions and 21 deletions

View file

@ -1,21 +0,0 @@
# Template file for 'yaml'
pkgname=yaml
version=1.13.1
revision=1
build_style=go
go_import_path="github.com/mikefarah/yaml"
hostmakedepends="git"
short_desc="A lightweight and portable command-line YAML processor written in go"
maintainer="maxice8 <thinkabit.ukim@gmail.com>"
license="MIT"
homepage="https://github.com/mikefarah/yaml"
distfiles="https://github.com/mikefarah/yaml/archive/${version}.tar.gz"
checksum=5512c586c6dd4f9b838d80facde656153b4fe3c1ce4992cc3057f0930fec4c7a
do_check() {
go test -v
}
post_install() {
vlicense LICENSE
}

View file

@ -0,0 +1,2 @@
the binary was renamed from yaml to yq-go to follow upstream but not
conflict with the original yq.

27
srcpkgs/yq-go/template Normal file
View file

@ -0,0 +1,27 @@
# Template file for 'yq-go'
pkgname=yq-go
version=1.14.0
revision=1
wrksrc="yq-${version}"
build_style=go
go_import_path="github.com/mikefarah/yq"
hostmakedepends="git"
short_desc="A lightweight and portable command-line YAML processor written in go"
maintainer="maxice8 <thinkabit.ukim@gmail.com>"
license="MIT"
homepage="https://github.com/mikefarah/yq"
distfiles="https://github.com/mikefarah/yq/archive/${version}.tar.gz"
checksum=cf61f84033ed8e1cb146798bfcedfabba5fa8852331a90122eafaae0f31c4b70
replaces="yaml>=0"
do_check() {
go test -v
}
post_install() {
# this came after yq 'the jq wrapper for yaml' so yq has the right tp
# /usr/bin/yq, rename it to yq-go
mv -v "${DESTDIR}"/usr/bin/{yq,yq-go}
vlicense LICENSE
}