Compare commits
No commits in common. "c8s" and "c9-beta" have entirely different histories.
@ -1 +0,0 @@
|
|||||||
1
|
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
SOURCES/jq-1.6.tar.gz
|
SOURCES/jq-1.6.tar.gz
|
||||||
/jq-1.6.tar.gz
|
|
||||||
|
1
.jq.metadata
Normal file
1
.jq.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
02959bca30672e0dfe678e7b36464c8fb08ec389 SOURCES/jq-1.6.tar.gz
|
File diff suppressed because it is too large
Load Diff
@ -1,46 +1,49 @@
|
|||||||
Name: jq
|
Name: jq
|
||||||
Version: 1.6
|
Version: 1.6
|
||||||
Release: 9%{?dist}
|
Release: 17%{?dist}
|
||||||
Summary: Command-line JSON processor
|
Summary: Command-line JSON processor
|
||||||
|
|
||||||
License: MIT and ASL 2.0 and CC-BY and GPLv3
|
License: MIT and ASL 2.0 and CC-BY and GPLv3
|
||||||
URL: http://stedolan.github.io/jq/
|
URL: http://stedolan.github.io/jq/
|
||||||
Source0: https://github.com/stedolan/jq/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz
|
Source0: https://github.com/stedolan/jq/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz
|
||||||
Patch0: 0000-jq-decimal-literal-number.patch
|
# Backport of PR#1752 for RHBZ#2008979
|
||||||
|
Patch0: jq-decimal-literal-number.patch
|
||||||
Patch1: 0001-iterration-problem-for-non-decimal-string.patch
|
Patch1: 0001-iterration-problem-for-non-decimal-string.patch
|
||||||
Patch2: 0002-add-mantest.patch
|
Patch2: 0002-add-mantest.patch
|
||||||
Patch3: 0003-fix-pthread-segfault.patch
|
Patch3: 0003-fix-pthread-segfault.patch
|
||||||
Patch4: 0004-make-jq-fast.patch
|
Patch4: 0004-make-jq-fast.patch
|
||||||
Patch5: 0005-sast.patch
|
Patch5: 0005-sast.patch
|
||||||
|
|
||||||
|
BuildRequires: gcc
|
||||||
BuildRequires: flex
|
BuildRequires: flex
|
||||||
BuildRequires: bison
|
BuildRequires: bison
|
||||||
BuildRequires: oniguruma-devel
|
BuildRequires: oniguruma-devel
|
||||||
BuildRequires: autoconf
|
|
||||||
BuildRequires: automake
|
|
||||||
BuildRequires: libtool
|
|
||||||
BuildRequires: chrpath
|
BuildRequires: chrpath
|
||||||
|
|
||||||
%ifnarch s390x
|
%ifarch %{valgrind_arches}
|
||||||
BuildRequires: valgrind
|
BuildRequires: valgrind
|
||||||
%endif
|
%endif
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: autoconf
|
||||||
|
BuildRequires: automake
|
||||||
|
BuildRequires: libtool
|
||||||
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
lightweight and flexible command-line JSON processor
|
lightweight and flexible command-line JSON processor
|
||||||
|
|
||||||
jq is like sed for JSON data – you can use it to slice
|
jq is like sed for JSON data – you can use it to slice
|
||||||
and filter and map and transform structured data with
|
and filter and map and transform structured data with
|
||||||
the same ease that sed, awk, grep and friends let you
|
the same ease that sed, awk, grep and friends let you
|
||||||
play with text.
|
play with text.
|
||||||
|
|
||||||
It is written in portable C, and it has zero runtime
|
It is written in portable C, and it has zero runtime
|
||||||
dependencies.
|
dependencies.
|
||||||
|
|
||||||
jq can mangle the data format that you have into the
|
jq can mangle the data format that you have into the
|
||||||
one that you want with very little effort, and the
|
one that you want with very little effort, and the
|
||||||
program to do so is often shorter and simpler than
|
program to do so is often shorter and simpler than
|
||||||
you'd expect.
|
you'd expect.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for %{name}
|
Summary: Development files for %{name}
|
||||||
@ -54,7 +57,7 @@ Development files for %{name}
|
|||||||
%autosetup -n %{name}-%{version} -p1
|
%autosetup -n %{name}-%{version} -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
autoreconf -fi
|
autoreconf -if
|
||||||
%configure --disable-static
|
%configure --disable-static
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
# Docs already shipped in jq's tarball.
|
# Docs already shipped in jq's tarball.
|
||||||
@ -100,45 +103,64 @@ make check
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri May 3 2024 Tomas Halman <thalman@redhat.com> - 1.6-9
|
* Fri May 3 2024 Tomas Halman <thalman@redhat.com> - 1.6-17
|
||||||
- Fix SAST findings in jq 1.6
|
- Fix SAST findings in jq 1.6
|
||||||
- Resolves: RHEL-37827
|
- Resolves: RHEL-28653
|
||||||
|
|
||||||
* Fri Oct 13 2023 Tomas Halman <thalman@redhat.com> - 1.6-8
|
* Fri Oct 13 2023 Tomas Halman <thalman@redhat.com> - 1.6-16
|
||||||
- Make jq 1.6 fast
|
- Make jq 1.6 fast
|
||||||
- Resolves: RHEL-5052
|
- Resolves: RHEL-13431
|
||||||
|
|
||||||
* Tue Mar 14 2023 Tomas Halman <thalman@redhat.com> - 1.6-7
|
* Thu Mar 9 2023 Tomas Halman <thalman@redhat.com> - 1.6-15
|
||||||
- Fix jq segfault when used in threads
|
- jq segfault when used in threads
|
||||||
- Resolves: rhbz#2092160
|
- Resolves: rhbz#2176542
|
||||||
|
|
||||||
* Fri Nov 4 2022 Tomas Halman <thalman@redhat.com> - 1.6-6
|
* Fri Nov 4 2022 Tomas Halman <thalman@redhat.com> - 1.6-6
|
||||||
- Add mantest to the gating
|
- Add mantest to the gating
|
||||||
- Related: rhbz#2049601
|
- Related: rhbz#2049594
|
||||||
|
|
||||||
* Tue Oct 11 2022 Tomas Halman <thalman@redhat.com> - 1.6-5
|
* Fri Oct 21 2022 Tomas Halman <thalman@redhat.com> - 1.6-13
|
||||||
- Remove rpath from jq binary
|
- jq try/catch stops iteration over items
|
||||||
- Related: rhbz#2049601
|
Resolves: rhbz#2049594
|
||||||
|
|
||||||
* Tue Oct 11 2022 Tomas Halman <thalman@redhat.com> - 1.6-4
|
* Mon Nov 15 2021 Tomas Halman <thalman@redhat.com>
|
||||||
- Fix iterration problem for non decimal string
|
- Strip rpath from jq binary
|
||||||
- Resolves: rhbz#2049601
|
Related: rhbz#2008983
|
||||||
|
|
||||||
* Mon Oct 4 2021 Tomas Halman <thalman@redhat.com>
|
* Wed Sep 29 2021 Davide Cavalca <dcavalca@centosproject.org> - 1.6-10
|
||||||
- Fix big integers issue
|
- Backport PR#1752 to fix an integer logic issue
|
||||||
- Resolves: bug#2008717
|
Resolves: rhbz#2008983
|
||||||
|
|
||||||
* Mon Oct 4 2021 Tomas Halman <thalman@redhat.com>
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.6-9
|
||||||
- Releasing v1.6
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
- Resolves: bug#1852514
|
Related: rhbz#1991688
|
||||||
|
|
||||||
* Wed Aug 11 2021 Tomas Halman <thalman@redhat.com>
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.6-8
|
||||||
- Publishing devel package
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
- Resolves: bug#1908928
|
|
||||||
|
|
||||||
* Sat Aug 11 2018 Troy Dawson <tdawson@redhat.com>
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.6-7
|
||||||
- Fix typo: s390 -> s390x
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
- Related: bug#1614611
|
|
||||||
|
* Sat Dec 05 2020 Richard W.M. Jones <rjones@redhat.com> - 1.6-6
|
||||||
|
- Use correct valgrind_arches macro to check for valgrind.
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.6-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.6-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.6-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.6-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Nov 08 2018 David Fetter <david@fetter.org> - 1.6-1
|
||||||
|
- Upstream 1.6.0
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
* Sun Apr 01 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.5-12
|
* Sun Apr 01 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.5-12
|
||||||
- Rebuild against oniguruma 6.8.1
|
- Rebuild against oniguruma 6.8.1
|
@ -1,6 +0,0 @@
|
|||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- rhel-8
|
|
||||||
decision_context: osci_compose_gate
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
|
@ -1,23 +0,0 @@
|
|||||||
summary: Run gating tests
|
|
||||||
discover:
|
|
||||||
how: fmf
|
|
||||||
dist-git-source: true
|
|
||||||
dist-git-type: centos
|
|
||||||
prepare:
|
|
||||||
- how: install
|
|
||||||
package:
|
|
||||||
- dnf-plugins-core
|
|
||||||
- https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
|
|
||||||
- how: shell
|
|
||||||
script: /usr/bin/crb enable
|
|
||||||
- how: install
|
|
||||||
package:
|
|
||||||
- jq
|
|
||||||
- jq-devel
|
|
||||||
- gcc
|
|
||||||
- wget
|
|
||||||
- how: shell
|
|
||||||
script: dnf config-manager --disable epel*
|
|
||||||
|
|
||||||
execute:
|
|
||||||
how: tmt
|
|
1
sources
1
sources
@ -1 +0,0 @@
|
|||||||
SHA512 (jq-1.6.tar.gz) = f5ae8be558ca2ff15324c378d623106b74bd0823be50835e23548584aa1eb24eb81f8f054693d5d3fe44f157d0735c5f0f40b9f21899ba068f2a11d1345ace19
|
|
@ -1,20 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
export LC_ALL=C
|
|
||||||
|
|
||||||
stress_jq() {
|
|
||||||
`which time` -p -f '%e\n' bash -c 'for i in `seq 1 1000` ; do echo '"'"'{"foo":"bar"}'"'"' | jq '"'"'has("bar")'"'"' > /dev/null ; done' 2>&1 | cut -d. -f1
|
|
||||||
}
|
|
||||||
|
|
||||||
FAIL=0
|
|
||||||
TIME=`stress_jq`
|
|
||||||
echo -n "Test jqspeed ... "
|
|
||||||
if [ $TIME -gt 8 ] ; then
|
|
||||||
echo "failed"
|
|
||||||
FAIL=1
|
|
||||||
else
|
|
||||||
echo "ok"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Runtime: ${TIME}s "
|
|
||||||
exit $FAIL
|
|
@ -1,6 +0,0 @@
|
|||||||
summary: Run jq performance/speed test
|
|
||||||
require:
|
|
||||||
- jq
|
|
||||||
- which
|
|
||||||
- time
|
|
||||||
test: ./jqspeed.sh
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
|
|
||||||
standard-inventory-qcow2:
|
|
||||||
qemu:
|
|
||||||
m: 2G
|
|
@ -1,19 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
FAIL=0
|
|
||||||
|
|
||||||
# Test for segfault in multithreaded environment
|
|
||||||
gcc -o test_segfault test_segfault_with_multithreaded_env.c -lpthread -ljq && \
|
|
||||||
./test_segfault
|
|
||||||
RET=$?
|
|
||||||
|
|
||||||
echo -n "Test jqsegfault ... "
|
|
||||||
|
|
||||||
if [ $RET != 0 ]; then
|
|
||||||
echo "failed"
|
|
||||||
FAIL=1
|
|
||||||
else
|
|
||||||
echo "ok"
|
|
||||||
fi
|
|
||||||
|
|
||||||
exit $FAIL
|
|
@ -1,8 +0,0 @@
|
|||||||
summary: Run segfault threads test
|
|
||||||
require:
|
|
||||||
- wget
|
|
||||||
- dnf-utils
|
|
||||||
- gcc
|
|
||||||
- jq
|
|
||||||
- jq-devel
|
|
||||||
test: ./jqsegfault.sh
|
|
@ -1,90 +0,0 @@
|
|||||||
#include <stdlib.h>
|
|
||||||
#include <jq.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <pthread.h>
|
|
||||||
|
|
||||||
int my_jq_parse(jq_state *jq, struct jv_parser *parser)
|
|
||||||
{
|
|
||||||
int rv = 0;
|
|
||||||
jv value;
|
|
||||||
|
|
||||||
value = jv_parser_next(parser);
|
|
||||||
while (jv_is_valid(value)) {
|
|
||||||
jq_start(jq, value, 0);
|
|
||||||
jv result;
|
|
||||||
|
|
||||||
while (jv_is_valid(result = jq_next(jq))) {
|
|
||||||
jv dumped = jv_dump_string(result, 0);
|
|
||||||
const char *str = jv_string_value(dumped);
|
|
||||||
printf("dumped: %s\n", str);
|
|
||||||
}
|
|
||||||
|
|
||||||
jv_free(result);
|
|
||||||
value = jv_parser_next(parser);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (jv_invalid_has_msg(jv_copy(value))) {
|
|
||||||
jv msg = jv_invalid_get_msg(value);
|
|
||||||
printf("invalid: %s\n", jv_string_value(msg));
|
|
||||||
jv_free(msg);
|
|
||||||
rv = 1;
|
|
||||||
} else {
|
|
||||||
jv_free(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
return rv;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *run(void *not_used) {
|
|
||||||
int rv;
|
|
||||||
jq_state *jq;
|
|
||||||
const char *prg = ".data";
|
|
||||||
|
|
||||||
jq = jq_init();
|
|
||||||
printf("jq_init jq: %p prg: %s\n", jq, prg);
|
|
||||||
if (jq_compile(jq, prg) == 0) {
|
|
||||||
jq_teardown(&jq);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
printf("compiled\n");
|
|
||||||
|
|
||||||
struct jv_parser *parser = jv_parser_new(0);
|
|
||||||
const char *buf = "{ \"data\": 1 }";
|
|
||||||
jv_parser_set_buf(parser, buf, strlen(buf), 0);
|
|
||||||
rv = my_jq_parse(jq, parser);
|
|
||||||
if (rv != 0) {
|
|
||||||
printf("my_jq_parse failed!\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
jv_parser_free(parser);
|
|
||||||
jq_teardown(&jq);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define THREADS 2
|
|
||||||
/* calling run() twice works fine */
|
|
||||||
/* calling them in threads causes core-dump */
|
|
||||||
int main (int argc, char *argv[])
|
|
||||||
{
|
|
||||||
pthread_t threads[THREADS];
|
|
||||||
int createerror;
|
|
||||||
int a;
|
|
||||||
|
|
||||||
memset(&threads, 0, sizeof(threads));
|
|
||||||
for (a = 0; a < THREADS; ++a) {
|
|
||||||
// sleep(1); // < if you want to run threads sequentionally
|
|
||||||
createerror = pthread_create(&threads[a], NULL, run, NULL);
|
|
||||||
if (createerror) {
|
|
||||||
printf("create thread error %d\n", a);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for(a = 0; a < THREADS; ++a) {
|
|
||||||
if (threads[a] != 0) {
|
|
||||||
pthread_join(threads[a], NULL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
@ -1,27 +0,0 @@
|
|||||||
---
|
|
||||||
- hosts: localhost
|
|
||||||
roles:
|
|
||||||
- role: standard-test-source
|
|
||||||
tags:
|
|
||||||
- always
|
|
||||||
|
|
||||||
- role: standard-test-basic
|
|
||||||
tags:
|
|
||||||
- classic
|
|
||||||
required_packages:
|
|
||||||
- jq
|
|
||||||
- gcc
|
|
||||||
- wget
|
|
||||||
- jq-devel
|
|
||||||
- valgrind
|
|
||||||
- rubygem-rake
|
|
||||||
tests:
|
|
||||||
- upstream:
|
|
||||||
dir: upstream
|
|
||||||
run: ./jqtests.sh
|
|
||||||
- segfault:
|
|
||||||
dir: segfault
|
|
||||||
run: ./jqsegfault.sh
|
|
||||||
- performance:
|
|
||||||
dir: performance
|
|
||||||
run: ./jqspeed.sh
|
|
@ -1,48 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
die () {
|
|
||||||
echo "$1" >&2
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
# If source not found, download it with dnf
|
|
||||||
if [ ! -d ./source ]; then
|
|
||||||
# Extract source from srpm
|
|
||||||
dnf download --source jq && \
|
|
||||||
rpm2cpio jq*.rpm|cpio -id && \
|
|
||||||
mkdir source && \
|
|
||||||
tar -zxf jq-*.tar.gz -C source --strip-components=1
|
|
||||||
if [ $? != 0 ]; then
|
|
||||||
echo "Failed to download upstream tests"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
pushd ./source || die "missing source directory"
|
|
||||||
rm -f jq tests/*.log 2>/dev/null
|
|
||||||
ln -s /usr/bin/jq || die "failed to link jq binary"
|
|
||||||
|
|
||||||
FAIL=0
|
|
||||||
|
|
||||||
# run the tests
|
|
||||||
# List of tests is taken from Makefile
|
|
||||||
TESTS="tests/optionaltest tests/mantest tests/jqtest tests/onigtest tests/shtest tests/utf8test tests/base64test"
|
|
||||||
|
|
||||||
for t in $TESTS; do
|
|
||||||
echo -n "Test $t ... "
|
|
||||||
./${t} >"${t}.log" 2>&1
|
|
||||||
RET=$?
|
|
||||||
if [ $RET = 0 ]; then
|
|
||||||
echo "ok"
|
|
||||||
else
|
|
||||||
echo "failed"
|
|
||||||
echo "-------------------- ${t}.log start -----------------------------"
|
|
||||||
cat "${t}.log"
|
|
||||||
echo "-------------------- ${t}.log end -----------------------------"
|
|
||||||
FAIL=1
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
popd # exit SOURCE_DIR
|
|
||||||
|
|
||||||
exit $FAIL
|
|
@ -1,11 +0,0 @@
|
|||||||
summary: Run jq gating tests
|
|
||||||
require:
|
|
||||||
- wget
|
|
||||||
- dnf-utils
|
|
||||||
- gcc
|
|
||||||
- jq
|
|
||||||
- jq-devel
|
|
||||||
- valgrind
|
|
||||||
- diffutils
|
|
||||||
test: ./jqtests.sh
|
|
||||||
duration: 30m
|
|
Loading…
Reference in New Issue
Block a user