From 378c478b626f4d25a0644db1c12e4a6c60f6f4b8 Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: Feb 10 2014 22:29:13 +0000 Subject: Limit the arches on which we BuildRequire: prelink - only BuildRequire: prelink on the arches on which we know it runs (currently %%{ix86}, x86_64, ppc, ppc64, s390, s390x), so that it can be built on the rest (#1061889) --- diff --git a/hmaccalc.spec b/hmaccalc.spec index 69be54a..93f86cd 100644 --- a/hmaccalc.spec +++ b/hmaccalc.spec @@ -13,7 +13,7 @@ Name: hmaccalc Version: 0.9.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tools for computing and checking HMAC values for files Group: System Environment/Base @@ -23,7 +23,11 @@ Source0: https://fedorahosted.org/released/hmaccalc/hmaccalc-%{version}.tar.gz #Source1: https://fedorahosted.org/released/hmaccalc/hmaccalc-%{version}.tar.gz.sig BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) +%ifarch %{ix86} x86_64 ppc ppc64 s390 s390x BuildRequires: nss-devel, prelink +%else +BuildRequires: nss-devel +%endif %description The hmaccalc package contains tools which can calculate HMAC (hash-based @@ -62,6 +66,11 @@ make check %{_mandir}/*/* %changelog +* Mon Feb 10 2013 Nalin Dahyabhai - 0.9.13-2 +- only BuildRequire: prelink on the arches on which we know it runs (currently + %%{ix86}, x86_64, ppc, ppc64, s390, s390x), so that it can be built on the + rest (#1061889) + * Mon Oct 14 2013 Nalin Dahyabhai - 0.9.13-1 - treat unexpected command-line arguments as an error to avoid setting incorrect expectations, and warn when a check file doesn't appear to