Skip to content

Commit

Permalink
jq: Add 1.7.1 for system-accounts handling
Browse files Browse the repository at this point in the history
Signed-off-by: Ikey Doherty <[email protected]>
  • Loading branch information
ikeycode committed Feb 5, 2024
1 parent 7089070 commit 37491c5
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 0 deletions.
Binary file added j/jq/manifest.x86_64.bin
Binary file not shown.
53 changes: 53 additions & 0 deletions j/jq/manifest.x86_64.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/** Human readable report. This is not consumed by boulder */
{
"manifest-version": "0.2",
"packages": {
"jq": {
"depends": [
"interpreter(/usr/lib/ld-linux-x86-64.so.2(x86_64))",
"soname(libc.so.6(x86_64))",
"soname(libm.so.6(x86_64))"
],
"files": [
"/usr/bin/jq",
"/usr/bin/onig-config",
"/usr/lib/libjq.so.1",
"/usr/lib/libjq.so.1.0.4",
"/usr/lib/libonig.so.5",
"/usr/lib/libonig.so.5.3.0",
"/usr/share/doc/jq/AUTHORS",
"/usr/share/doc/jq/COPYING",
"/usr/share/doc/jq/NEWS.md",
"/usr/share/doc/jq/README.md",
"/usr/share/man/man1/jq.1"
],
"name": "jq",
"provides": [
"binary(jq)",
"soname(libjq.so.1(x86_64))",
"soname(libonig.so.5(x86_64))",
"binary(onig-config)"
]
},
"jq-devel": {
"files": [
"/usr/include/jq.h",
"/usr/include/jv.h",
"/usr/include/oniggnu.h",
"/usr/include/oniguruma.h",
"/usr/lib/libjq.so",
"/usr/lib/libonig.so",
"/usr/lib/pkgconfig/libjq.pc",
"/usr/lib/pkgconfig/oniguruma.pc"
],
"name": "jq-devel",
"provides": [
"pkgconfig(libjq)",
"pkgconfig(oniguruma)"
]
}
},
"source-name": "jq",
"source-release": "1",
"source-version": "1.7.1"
}
2 changes: 2 additions & 0 deletions j/jq/monitoring.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
releases:
id: 13252
22 changes: 22 additions & 0 deletions j/jq/stone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#
# SPDX-FileCopyrightText: © 2020-2024 Serpent OS Developers
#
# SPDX-License-Identifier: MPL-2.0
#
name : jq
version : 1.7.1
release : 1
homepage : https://github.com/jqlang/jq
upstreams :
- https://github.com/jqlang/jq/releases/download/jq-1.7.1/jq-1.7.1.tar.gz : 478c9ca129fd2e3443fe27314b455e211e0d8c60bc8ff7df703873deeee580c2
summary : Command line JSON processor
description : |
jq is a lightweight and flexible command-line JSON processor akin to sed,awk,grep, and friends for JSON data. It's written in portable C and has zero runtime dependencies, allowing you to easily slice, filter, map, and transform structured data.
license :
- BSD-2-Clause
setup : |
%configure --disable-static
build : |
%make
install : |
%make_install

0 comments on commit 37491c5

Please sign in to comment.