Compare commits
No commits in common. "c8" and "imports/c9/smc-tools-1.8.1-1.el9" have entirely different histories.
c8
...
imports/c9
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/1.8.3.tar.gz
|
||||
SOURCES/1.8.1.tar.gz
|
||||
|
1
.smc-tools.metadata
Normal file
1
.smc-tools.metadata
Normal file
@ -0,0 +1 @@
|
||||
3d1c8dc3ff95341b367a4b9ed64f79bff4ebb308 SOURCES/1.8.1.tar.gz
|
@ -1,29 +0,0 @@
|
||||
--- a/smc_chk 2021-07-02 12:23:56.000000000 +0200
|
||||
+++ b/smc_chk 2021-07-16 14:48:40.988000000 +0200
|
||||
@@ -108,7 +108,7 @@
|
||||
}
|
||||
|
||||
function is_python3_available() {
|
||||
- if ! which python3 >/dev/null; then
|
||||
+ if ! which /usr/libexec/platform-python >/dev/null; then
|
||||
echo "Error: python3 is not available";
|
||||
signal_handler;
|
||||
fi
|
||||
@@ -124,7 +124,7 @@
|
||||
port6=`get_free_port $(expr $port + 1)`;
|
||||
srv=`mktemp /tmp/echo-srv.XXXXXX`;
|
||||
cat <<-EOF > $srv
|
||||
-#!/usr/bin/env python3
|
||||
+#!/usr/libexec/platform-python
|
||||
|
||||
import argparse
|
||||
import signal
|
||||
@@ -171,7 +171,7 @@
|
||||
is_python3_available;
|
||||
clt=`mktemp /tmp/echo-clt.XXXXXX`;
|
||||
cat <<-EOF > $clt
|
||||
-#!/usr/bin/env python3
|
||||
+#!/usr/libexec/platform-python
|
||||
|
||||
import argparse
|
||||
import socket
|
@ -1,130 +1,116 @@
|
||||
%define debug_package %{nil}
|
||||
|
||||
Name: smc-tools
|
||||
Version: 1.8.3
|
||||
Version: 1.8.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Shared Memory Communication Tools
|
||||
|
||||
License: EPL
|
||||
URL: https://www.ibm.com/developerworks/linux/linux390/smc-tools.html
|
||||
License: EPL-1.0
|
||||
URL: https://github.com/ibm-s390-linux/smc-tools
|
||||
Source0: https://github.com/ibm-s390-linux/%{name}/archive/refs/tags/%{version}.tar.gz
|
||||
|
||||
Requires: man
|
||||
BuildRequires: make
|
||||
BuildRequires: gcc
|
||||
BuildRequires: libnl3-devel
|
||||
BuildRequires: bash-completion
|
||||
|
||||
Source0: https://github.com/ibm-s390-linux/%{name}/archive/refs/tags/%{version}.tar.gz
|
||||
%ifarch s390 s390x
|
||||
# for smc_chk
|
||||
Requires: python3
|
||||
Requires: man
|
||||
%endif
|
||||
|
||||
Patch0: smc-tools-1.6.0-smc_chk-py3.patch
|
||||
|
||||
%description
|
||||
The Shared Memory Communication Tools (smc-tools) package enables usage of SMC
|
||||
sockets in Linux.
|
||||
|
||||
%prep
|
||||
%forgesetup
|
||||
%patch0 -p1
|
||||
%autosetup
|
||||
|
||||
|
||||
%build
|
||||
%make_build CFLAGS="%{build_cflags} -I%{_includedir}/libnl3" LDFLAGS="%{build_ldflags}" V=1
|
||||
%ifarch ppc64le
|
||||
# see arch/powerpc/include/uapi/asm/types.h
|
||||
%global optflags %optflags -D__SANE_USERSPACE_TYPES__
|
||||
%endif
|
||||
%set_build_flags
|
||||
%make_build
|
||||
|
||||
|
||||
%install
|
||||
%make_install V=1
|
||||
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{_datadir}/bash-completion/
|
||||
%{_mandir}/man7/af_smc.7.gz
|
||||
%{_mandir}/man8/smc*
|
||||
%{_bindir}/smc_pnet
|
||||
%{_bindir}/smc_run
|
||||
%{_bindir}/smcss
|
||||
%{_bindir}/smcd
|
||||
%{_bindir}/smcr
|
||||
%{_bindir}/smc_dbg
|
||||
%ifarch s390x
|
||||
%{_bindir}/smc_rnics
|
||||
%{_bindir}/smc_chk
|
||||
%endif
|
||||
%{_bindir}/smc_dbg
|
||||
%{_bindir}/smc_pnet
|
||||
%{_bindir}/smc_run
|
||||
%{_bindir}/smcss
|
||||
%{_libdir}/libsmc-preload.so*
|
||||
%{_mandir}/man7/af_smc.7*
|
||||
%{_mandir}/man8/smcd*.8*
|
||||
%{_mandir}/man8/smcr*.8*
|
||||
%{_mandir}/man8/smc_pnet.8*
|
||||
%{_mandir}/man8/smc_run.8*
|
||||
%{_mandir}/man8/smcss.8*
|
||||
%ifarch s390 s390x
|
||||
%{_bindir}/smc_chk
|
||||
%{_bindir}/smc_rnics
|
||||
%{_mandir}/man8/smc_chk.8*
|
||||
%{_mandir}/man8/smc_rnics.8*
|
||||
%endif
|
||||
%{_datadir}/bash-completion/
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Oct 09 2023 Čestmír Kalina <ckalina@redhat.com> - 1.8.3-1
|
||||
- Resolves: RHEL-11417 Upgrade smc-tools to latest version
|
||||
- smc_stats: Fix man page name
|
||||
- Bump version.
|
||||
* Mon May 02 2022 Čestmír Kalina <ckalina@redhat.com> - 1.8.1-1
|
||||
- Resolves: #2044219 Update smc-tools to latest version
|
||||
|
||||
* Mon Dec 05 2022 Čestmír Kalina <ckalina@redhat.com> - 1.8.2-1
|
||||
- Resolves: #2110414 Upgrade smc-tools to latest version
|
||||
* Fri Nov 26 2021 Čestmír Kalina <ckalina@redhat.com> - 1.6.1-1
|
||||
- Resolves: #2017065 Update smc-tools to 1.6.1
|
||||
|
||||
* Thu Jun 23 2022 Čestmír Kalina <ckalina@redhat.com> - 1.8.1-1
|
||||
- Upgrade smc-tools to latest version
|
||||
- Add User-defined EID (Enterprise ID) Support
|
||||
- Resolves: #1919228
|
||||
- Resolves: #2043841
|
||||
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.6.0-2
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Mon Oct 18 2021 Čestmír Kalina <ckalina@redhat.com> - 1.6.1-1
|
||||
- Upgrade smc-tools to latest version
|
||||
- Resolves: #1984975
|
||||
* Wed Jul 07 2021 Čestmír Kalina <ckalina@redhat.com> - 1.6.0-1
|
||||
- Resolves: #1869550 Upgrade smc-tools to latest version
|
||||
- Related: #1869743
|
||||
- Related: #1869747
|
||||
|
||||
* Fri Jul 16 2021 Čestmír Kalina <ckalina@redhat.com> - 1.6.0-3
|
||||
- Patch stats.c to fix overruns
|
||||
- Patch stats.c to fix leaks
|
||||
- Patch stats.c to fix fallback counter values
|
||||
- Resolves: #1993469
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.5.0-2
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Fri Jul 16 2021 Čestmír Kalina <ckalina@redhat.com> - 1.6.0-2
|
||||
- Patch smc_chk to use platform-python
|
||||
- Resolves: #1981727
|
||||
* Wed Mar 17 2021 Dan Horák <dan@danny.cz> - 1.5.0-1
|
||||
- update to 1.5.0
|
||||
|
||||
* Fri Jul 02 2021 Čestmír Kalina <ckalina@redhat.com> - 1.6.0-1
|
||||
- Resolves: #1869292 Statistics Support - smc-tools part
|
||||
- Resolves: #1919225 Add SMC-D Setup Check (smc-tools)
|
||||
- Resolves: #1919240 Upgrade smc-tools to latest version
|
||||
* Wed Feb 10 2021 Čestmír Kalina <ckalina@redhat.com> - 1.5.0-2
|
||||
- Resolves: #1924787
|
||||
- Add python3/man requires
|
||||
* Mon Feb 08 2021 Čestmír Kalina <ckalina@redhat.com> - 1.5.0-1
|
||||
- Resolves: #1924787
|
||||
- Upgrade to 1.5.0
|
||||
* Mon Jan 04 2021 Čestmír Kalina <ckalina@redhat.com> - 1.4.0-3
|
||||
- Resolves: #1879128
|
||||
- Add bash-completion to build requires
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Mon Jan 04 2021 Čestmír Kalina <ckalina@redhat.com> - 1.4.0-1
|
||||
- Resolves: #1851143
|
||||
- Update to 1.4.0
|
||||
- Explicitly state libnl3 in include path
|
||||
* Wed Sep 23 2020 Dan Horák <dan@danny.cz> - 1.3.1-1
|
||||
- update to 1.3.1
|
||||
|
||||
* Tue Jun 23 2020 Čestmír Kalina <ckalina@redhat.com> - 1.3.0-1
|
||||
- Resolves: #1780304
|
||||
- Update to 1.3.0
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Nov 06 2019 Čestmír Kalina <ckalina@redhat.com> - 1.2.2-3
|
||||
- Resolves: rhbz#1726264
|
||||
- Release bump to force brew rebuild due to tagging failure.
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Nov 06 2019 Čestmír Kalina <ckalina@redhat.com> - 1.2.2-2
|
||||
- Resolves: rhbz#1726264
|
||||
- update to 1.2.2
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Mon May 20 2019 Čestmír Kalina <ckalina@redhat.com> - 1.2.1-2
|
||||
- Resolves: rhbz#1706015
|
||||
- guards smc_rnics man with %ifarch s390x to avoid build failure
|
||||
|
||||
* Mon May 20 2019 Čestmír Kalina <ckalina@redhat.com> - 1.2.1-1
|
||||
- Resolves: rhbz#1706015
|
||||
|
||||
* Tue Apr 02 2019 Čestmír Kalina <ckalina@redhat.com> - 1.2.0-2
|
||||
- Resolves: rhbz#1683274
|
||||
- guards smc_rnics with %ifarch s390x
|
||||
|
||||
* Tue Apr 02 2019 Čestmír Kalina <ckalina@redhat.com> - 1.2.0-1
|
||||
- Resolves: rhbz#1683274
|
||||
* Thu Feb 28 2019 Dan Horák <dan@danny.cz> - 1.2.0-1
|
||||
- update to 1.2.0
|
||||
|
||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Mon Jul 09 2018 Dan Horák <dan@danny.cz> - 1.1.0-1
|
||||
- update to 1.1.0
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user