Strip rpath from jq binary

Related: rhbz#2008983
This commit is contained in:
Tomas Halman 2021-11-15 13:49:23 +01:00
parent ebc1d92bfc
commit d88867bb86
1 changed files with 17 additions and 11 deletions

28
jq.spec
View File

@ -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 <thalman@redhat.com>
- Strip rpath from jq binary
Related: rhbz#2008983
* Wed Sep 29 2021 Davide Cavalca <dcavalca@centosproject.org> - 1.6-10
- Backport PR#1752 to fix an integer logic issue
Resolves: rhbz#2008983