From 35d440bb1ac53b57daae2e15796754166cf1f233 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Aug 01 2017 03:43:43 +0000 Subject: import fabtests-1.4.2-1.el7 --- diff --git a/.fabtests.metadata b/.fabtests.metadata index b90f544..ae9d629 100644 --- a/.fabtests.metadata +++ b/.fabtests.metadata @@ -1 +1 @@ -4cf498f6c0dc539be47858ccb2ed01e1a9cc23e8 SOURCES/fabtests-1.3.0.tar.bz2 +e757e812230a6017f5d577483db5c95530c9e248 SOURCES/fabtests-1.4.2.tar.bz2 diff --git a/.gitignore b/.gitignore index 4f75767..4da805a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -SOURCES/fabtests-1.3.0.tar.bz2 +SOURCES/fabtests-1.4.2.tar.bz2 diff --git a/SOURCES/0001-adjust-shebang-lines-in-rft_yaml_to_junit_xml-and-ru.patch b/SOURCES/0001-adjust-shebang-lines-in-rft_yaml_to_junit_xml-and-ru.patch new file mode 100644 index 0000000..2662714 --- /dev/null +++ b/SOURCES/0001-adjust-shebang-lines-in-rft_yaml_to_junit_xml-and-ru.patch @@ -0,0 +1,36 @@ +From 41d5a0d4048dc32ecbff36843e8aadad6b621ff5 Mon Sep 17 00:00:00 2001 +From: Michal Schmidt +Date: Tue, 19 Apr 2016 13:29:43 +0200 +Subject: [PATCH] adjust shebang lines in rft_yaml_to_junit_xml and + runfabtests.sh + +Do not use /usr/bin/env. Call the appropriate binary directly. +This way rpmbuild will record the right dependencies. +--- + scripts/rft_yaml_to_junit_xml | 2 +- + scripts/runfabtests.sh | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/scripts/rft_yaml_to_junit_xml b/scripts/rft_yaml_to_junit_xml +index feb646366a..2d3b3a30c4 100755 +--- a/scripts/rft_yaml_to_junit_xml ++++ b/scripts/rft_yaml_to_junit_xml +@@ -1,4 +1,4 @@ +-#!/usr/bin/env ruby ++#!/usr/bin/ruby + + # Copyright (c) 2015 Cisco Systems, Inc. All rights reserved. + # +diff --git a/scripts/runfabtests.sh b/scripts/runfabtests.sh +index a73340c8a6..85aceba6e3 100755 +--- a/scripts/runfabtests.sh ++++ b/scripts/runfabtests.sh +@@ -1,4 +1,4 @@ +-#!/usr/bin/env bash ++#!/bin/bash + + # + # Copyright (c) 2016, Cisco Systems, Inc. All rights reserved. +-- +2.7.3 + diff --git a/SPECS/fabtests.spec b/SPECS/fabtests.spec index 45c7b64..b70b50f 100644 --- a/SPECS/fabtests.spec +++ b/SPECS/fabtests.spec @@ -1,12 +1,17 @@ Name: fabtests -Version: 1.3.0 +Version: 1.4.2 Release: 1%{?dist} Summary: Test suite for libfabric API Group: System Environment/Libraries License: GPLv2 or BSD Url: http://www.github.com/ofiwg/fabtests Source: https://github.com/ofiwg/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.bz2 -BuildRequires: libfabric-devel +Patch1: 0001-adjust-shebang-lines-in-rft_yaml_to_junit_xml-and-ru.patch +BuildRequires: libfabric-devel >= %{version} +BuildRequires: gcc +%ifnarch s390 +BuildRequires: valgrind-devel +%endif %description Fabtests provides a set of examples that uses libfabric - a high-performance @@ -14,10 +19,15 @@ fabric software library. %prep %setup -q +%patch1 -p1 %build -%configure %{?_with_libfabric} -make %{?_smp_mflags} +%configure %{?_with_libfabric} \ +%ifnarch s390 + --with-valgrind +%endif + +make %{?_smp_mflags} V=1 %install %make_install @@ -31,6 +41,14 @@ rm -f %{buildroot}%{_libdir}/*.la %{_prefix}/share/fabtests/test_configs %changelog +* Thu May 18 2017 Honggang Li - 1.4.2-1 +- Rebase to upstream release 1.4.2. +- Resolves: bz1451214 + +* Mon Mar 6 2017 Honggang Li - 1.4.1-1 +- Rebase to upstream release 1.4.1. +- Resolves: bz1429296 + * Tue May 31 2016 Honggang Li - 1.3.0-1 - Rebase to upstream release 1.3.0. - Related: bz1280146