-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
jq: Add 1.7.1 for system-accounts handling
Signed-off-by: Ikey Doherty <[email protected]>
- Loading branch information
Showing
4 changed files
with
77 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
releases: | ||
id: 13252 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |