Compare commits
No commits in common. "c8" and "imports/c8/fabtests-1.6.2-1.el8" have entirely different histories.
c8
...
imports/c8
1
.fabtests.metadata
Normal file
1
.fabtests.metadata
Normal file
@ -0,0 +1 @@
|
||||
1500c433b5b6f2b01ca49caf290d0bd48ac2a09e SOURCES/fabtests-1.6.2.tar.bz2
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/fabtests-1.18.0.tar.bz2
|
||||
SOURCES/fabtests-1.6.2.tar.bz2
|
||||
|
||||
@ -1,20 +1,36 @@
|
||||
diff --git a/fabtests/scripts/rft_yaml_to_junit_xml b/fabtests/scripts/rft_yaml_to_junit_xml
|
||||
index feb646366..2d3b3a30c 100755
|
||||
--- a/fabtests/scripts/rft_yaml_to_junit_xml
|
||||
+++ b/fabtests/scripts/rft_yaml_to_junit_xml
|
||||
From c97eca499945232f0e6d40b254e64b168261931e Mon Sep 17 00:00:00 2001
|
||||
From: Michal Schmidt <mschmidt@redhat.com>
|
||||
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 feb6463..2d3b3a3 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/fabtests/scripts/runfabtests.sh b/fabtests/scripts/runfabtests.sh
|
||||
index aba23be6f..73f55d07b 100755
|
||||
--- a/fabtests/scripts/runfabtests.sh
|
||||
+++ b/fabtests/scripts/runfabtests.sh
|
||||
diff --git a/scripts/runfabtests.sh b/scripts/runfabtests.sh
|
||||
index decb11a..8cc02f5 100755
|
||||
--- a/scripts/runfabtests.sh
|
||||
+++ b/scripts/runfabtests.sh
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/usr/bin/env bash
|
||||
+#!/bin/bash
|
||||
|
||||
#
|
||||
# Copyright (c) 2017-2019, Intel Corporation. All rights reserved.
|
||||
# Copyright (c) 2017, Intel Corporation. All rights reserved.
|
||||
--
|
||||
2.17.0
|
||||
|
||||
|
||||
@ -1,31 +1,35 @@
|
||||
Name: fabtests
|
||||
Version: 1.18.0
|
||||
Release: 1%{?dist}.1
|
||||
Version: 1.6.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Test suite for libfabric API
|
||||
# include/jsmn.h and common/jsmn.c are licensed under MIT.
|
||||
# All other source files permit distribution under BSD. Some of them
|
||||
# additionaly expressly allow the option to be licensed under GPLv2.
|
||||
# See the license headers in individual source files to see which those are.
|
||||
License: BSD and (BSD or GPLv2) and MIT
|
||||
Url: https://github.com/ofiwg/libfabric
|
||||
Source: https://github.com/ofiwg/libfabric/releases/download/v%{version}/%{name}-%{version}.tar.bz2
|
||||
Url: https://github.com/ofiwg/fabtests
|
||||
Source: https://github.com/ofiwg/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.bz2
|
||||
Patch0: 0001-adjust-shebang-lines-in-rft_yaml_to_junit_xml-and-ru.patch
|
||||
BuildRequires: libfabric-devel >= %{version}
|
||||
%ifarch %{valgrind_arches}
|
||||
BuildRequires: valgrind-devel
|
||||
%endif
|
||||
BuildRequires: gcc
|
||||
BuildRequires: make
|
||||
Requires: python3-pytest
|
||||
|
||||
%description
|
||||
Fabtests provides a set of examples that uses libfabric - a high-performance
|
||||
fabric software library.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}
|
||||
%patch0 -p2
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
|
||||
%build
|
||||
%configure --with-valgrind
|
||||
%configure \
|
||||
%ifarch %{valgrind_arches}
|
||||
--with-valgrind \
|
||||
%endif
|
||||
|
||||
make %{?_smp_mflags} V=1
|
||||
|
||||
%install
|
||||
@ -36,58 +40,11 @@ rm -f %{buildroot}%{_libdir}/*.la
|
||||
%files
|
||||
%{_datadir}/%{name}/
|
||||
%{_bindir}/*
|
||||
%{_mandir}/man1/*
|
||||
%{_mandir}/man7/*
|
||||
%doc AUTHORS README
|
||||
%license COPYING
|
||||
|
||||
%changelog
|
||||
* Tue Jul 11 2023 Kamal Heib <kheib@redhat.com> - 1.18.0-1.1
|
||||
- Rebuilt for fixing tag.
|
||||
- Resolves: rhbz#2214187
|
||||
|
||||
* Mon Jun 12 2023 Kamal Heib <kheib@redhat.com> - 1.18.0-1
|
||||
- Update to upstream release 1.18.0
|
||||
- Add gating tests
|
||||
- Resolves: rhbz#2214187
|
||||
|
||||
* Wed Feb 08 2023 Michal Schmidt <mschmidt@redhat.com> - 1.17.0-2
|
||||
- Update to upstream release 1.17.0
|
||||
- Require python3-pytest
|
||||
- Resolves: rhbz#2168114, rhbz#2159964
|
||||
|
||||
* Fri Aug 19 2022 Michal Schmidt <mschmidt@redhat.com> - 1.15.1-1
|
||||
- Update to upstream release 1.15.1
|
||||
- Resolves: rhbz#2114061
|
||||
|
||||
* Fri Nov 26 2021 Honggang Li <honli@redhat.com> - 1.14.0-1
|
||||
- Rebase to upstream release v1.14.0
|
||||
- Resolves: bz2008510
|
||||
|
||||
* Thu May 13 2021 Honggang Li <honli@redhat.com> - 1.12.1-1
|
||||
- Rebase to upstream release v1.12.1
|
||||
- Resolves: bz1960071
|
||||
|
||||
* Tue Dec 22 2020 Honggang Li <honli@redhat.com> - 1.11.2-1
|
||||
- Rebase to upstream release v1.11.2
|
||||
- Resolves: bz1909635
|
||||
|
||||
* Tue Nov 17 2020 Honggang Li <honli@redhat.com> - 1.11.1-1
|
||||
- Rebase to upstream release v1.11.1
|
||||
- Resolves: bz1856274
|
||||
|
||||
* Sat Apr 25 2020 Honggang Li <honli@redhat.com> - 1.10.0
|
||||
- Rebase to upstream release v1.10.0
|
||||
- Resolves: bz1770651
|
||||
|
||||
* Mon Nov 11 2019 Honggang Li <honli@redhat.com> - 1.9.0rc1-1
|
||||
- Rebase to upstream release v1.9.0rc1
|
||||
- Resolves: bz1770650
|
||||
|
||||
* Mon Jul 1 2019 Honggang Li <honli@redhat.com> - 1.8.0-1
|
||||
- Rebase to upstream release v1.8.0
|
||||
- Resolves: bz1710870
|
||||
|
||||
* Mon Dec 10 2018 Honggang Li <honli@redhat.com> - 1.6.2-1
|
||||
- Rebase to upstream release v1.6.2
|
||||
- Resolves: bz1654871
|
||||
|
||||
Loading…
Reference in New Issue
Block a user