mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-23 16:49:10 -07:00
app-misc/gojq: add 0.12.17
Signed-off-by: Zac Medico <zmedico@gentoo.org>
This commit is contained in:
@@ -1,2 +1,4 @@
|
||||
DIST gojq-0.12.16-deps.tar.xz 537848 BLAKE2B 11e0a6a03cb88eac6345b4cb02b0a2132b08d0d3198e8d12a7e7cd4d51c0ee4bf6fc0222de9aa1bca75a1a55fef1f60567bb7aaf52a86ea4c09b83d3210fb135 SHA512 b68c7d4401880f8ef232fe2880b9439b9198fd17dd356f95680195a30f8833a80b896e1ab27a075b2aa495657a1cb91ecd48bece5b3db6c6d9d20441af36f617
|
||||
DIST gojq-0.12.16.tar.gz 131894 BLAKE2B 094b51e9200ce9cda01b67e68be362ac111418f67e2ef9d96ede1a3da0c9469bde76bd958152b15f9231d84f8d2e6200ea10d1cad9102f2f1ef51c2623af159a SHA512 08129dac68e280b4a7c2d64ea3da4cf8a00ab0ba8431e76468cb9d4b52e052eb5f2b92d1dc8545c3a5e08e354b0d4ec60c39137a13b4df6ea9027f0278e148c5
|
||||
DIST gojq-0.12.17-deps.tar.xz 537768 BLAKE2B 5526f97f5dce68d40255849cdfd096834183f2a2540add18bbf96ffd54b27926d1f5a9d995cf039b99f138eb7b940cfbe66bed6ab2824e2eca9c941fe1473cb5 SHA512 3fa1bdab3815d7dac71a9162de40a854fce431ae399e3375e4bd5a54c37a60ccfa0449be140e40038210388dca96602bbf461353f3ca562136d11a932b40f850
|
||||
DIST gojq-0.12.17.tar.gz 132749 BLAKE2B 9dc62ca9578f62f3d065f13d9a7fe3c1a4c90208e7cc4ff1000491276183c2b67ca86bd93e2c3b965641a3812388cfcfe4c81cec603cfc98edb78f2e25b58194 SHA512 e90fbf337c4390ac5664024fa64666f878ac509f0b844efea42169c6e19e3e90af5f22b32c15babfc4ca05ee734b23ce3ee5b7b1d179db28d6877b62ce7d0a00
|
||||
|
||||
43
app-misc/gojq/gojq-0.12.17.ebuild
Normal file
43
app-misc/gojq/gojq-0.12.17.ebuild
Normal file
@@ -0,0 +1,43 @@
|
||||
# Copyright 2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
inherit go-module
|
||||
|
||||
EGIT_COMMIT=f4c2cfe
|
||||
DESCRIPTION="Pure Go implementation of jq with yaml support"
|
||||
HOMEPAGE="https://github.com/itchyny/gojq"
|
||||
SRC_URI="https://github.com/itchyny/gojq/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
|
||||
https://dev.gentoo.org/~zmedico/dist/${P}-deps.tar.xz"
|
||||
|
||||
LICENSE="MIT"
|
||||
LICENSE+=" Apache-2.0 BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
DOCS=(README.md)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
local -a sed_args=(
|
||||
-e "s/^VERSION := .*/VERSION := ${PV}/"
|
||||
-e "s/^CURRENT_REVISION = .*/CURRENT_REVISION = ${EGIT_COMMIT}/"
|
||||
)
|
||||
# -buildmode=pie not supported when -race is enabled
|
||||
[[ ${GOFLAGS} == *buildmode=pie* ]] && sed_args+=(
|
||||
-e 's/ -race / /'
|
||||
)
|
||||
sed "${sed_args[@]}" -i Makefile || die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake build
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
dobin "${PN}"
|
||||
}
|
||||
|
||||
src_test() {
|
||||
emake test
|
||||
}
|
||||
Reference in New Issue
Block a user