diff --git a/jq.spec b/jq.spec index c1abcea..1fbfe6a 100644 --- a/jq.spec +++ b/jq.spec @@ -1,6 +1,6 @@ Name: jq Version: 1.6 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Command-line JSON processor License: MIT and ASL 2.0 and CC-BY and GPLv3 @@ -13,6 +13,7 @@ BuildRequires: gcc BuildRequires: flex BuildRequires: bison BuildRequires: oniguruma-devel +BuildRequires: chrpath %ifarch %{valgrind_arches} BuildRequires: valgrind @@ -26,18 +27,18 @@ BuildRequires: libtool %description lightweight and flexible command-line JSON processor - jq is like sed for JSON data – you can use it to slice - and filter and map and transform structured data with - the same ease that sed, awk, grep and friends let you - play with text. +jq is like sed for JSON data – you can use it to slice +and filter and map and transform structured data with +the same ease that sed, awk, grep and friends let you +play with text. - It is written in portable C, and it has zero runtime - dependencies. +It is written in portable C, and it has zero runtime +dependencies. - jq can mangle the data format that you have into the - one that you want with very little effort, and the - program to do so is often shorter and simpler than - you'd expect. +jq can mangle the data format that you have into the +one that you want with very little effort, and the +program to do so is often shorter and simpler than +you'd expect. %package devel Summary: Development files for %{name} @@ -71,6 +72,7 @@ make %{?_smp_mflags} %install make DESTDIR=%{buildroot} install find %{buildroot} -name '*.la' -exec rm -f {} ';' +chrpath --delete %{buildroot}/usr/bin/jq %check # Valgrind used, so restrict architectures for check @@ -96,6 +98,10 @@ make check %changelog +* Mon Nov 15 2021 Tomas Halman +- Strip rpath from jq binary + Related: rhbz#2008983 + * Wed Sep 29 2021 Davide Cavalca - 1.6-10 - Backport PR#1752 to fix an integer logic issue Resolves: rhbz#2008983