Auto sync2gitlab import of smc-tools-1.6.1-1.git7202891.el8.src.rpm
This commit is contained in:
parent
52fa2af1d4
commit
9e7edc7b3f
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/smc-tools-7202891.tar.gz
|
29
smc-tools-1.6.0-smc_chk-py3.patch
Normal file
29
smc-tools-1.6.0-smc_chk-py3.patch
Normal file
@ -0,0 +1,29 @@
|
||||
--- 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
|
136
smc-tools.spec
Normal file
136
smc-tools.spec
Normal file
@ -0,0 +1,136 @@
|
||||
%global forgeurl https://github.com/ibm-s390-tools/smc-tools
|
||||
%global commitdate 20211001
|
||||
%global commit 720289183736102964c4884bedb84e8d50e84609
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%forgemeta -i
|
||||
|
||||
%define debug_package %{nil}
|
||||
|
||||
Name: smc-tools
|
||||
Version: 1.6.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Shared Memory Communication Tools
|
||||
|
||||
License: EPL
|
||||
URL: https://www.ibm.com/developerworks/linux/linux390/smc-tools.html
|
||||
|
||||
Requires: man
|
||||
BuildRequires: gcc
|
||||
BuildRequires: libnl3-devel
|
||||
BuildRequires: bash-completion
|
||||
|
||||
Source0: https://github.com/ibm-s390-tools/smc-tools/archive/%{commit}/%{name}-%{shortcommit}.tar.gz
|
||||
|
||||
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
|
||||
|
||||
%build
|
||||
%make_build CFLAGS="%{build_cflags} -I%{_includedir}/libnl3" LDFLAGS="%{build_ldflags}" V=1
|
||||
|
||||
%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
|
||||
%{_libdir}/libsmc-preload.so*
|
||||
|
||||
%changelog
|
||||
* Mon Oct 18 2021 Čestmír Kalina <ckalina@redhat.com> - 1.6.1-1
|
||||
- Upgrade smc-tools to latest version
|
||||
- Resolves: #1984975
|
||||
|
||||
* 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 Jul 16 2021 Čestmír Kalina <ckalina@redhat.com> - 1.6.0-2
|
||||
- Patch smc_chk to use platform-python
|
||||
- Resolves: #1981727
|
||||
|
||||
* 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
|
||||
|
||||
* 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
|
||||
|
||||
* Tue Jun 23 2020 Čestmír Kalina <ckalina@redhat.com> - 1.3.0-1
|
||||
- Resolves: #1780304
|
||||
- Update to 1.3.0
|
||||
|
||||
* 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.
|
||||
|
||||
* Wed Nov 06 2019 Čestmír Kalina <ckalina@redhat.com> - 1.2.2-2
|
||||
- Resolves: rhbz#1726264
|
||||
- update to 1.2.2
|
||||
|
||||
* 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
|
||||
- update to 1.2.0
|
||||
|
||||
* Mon Jul 09 2018 Dan Horák <dan@danny.cz> - 1.1.0-1
|
||||
- update to 1.1.0
|
||||
|
||||
* Mon Apr 16 2018 Dan Horák <dan@danny.cz> - 1.0.0-4
|
||||
- fix LDFLAGS injection (#1567902)
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Jan 10 2018 Dan Horák <dan@danny.cz> - 1.0.0-2
|
||||
- use make macro
|
||||
- comment patches
|
||||
- use distro LDFLAGS in build
|
||||
|
||||
* Mon Jan 8 2018 Dan Horák <dan@danny.cz> - 1.0.0-1
|
||||
- initial Fedora version
|
Loading…
Reference in New Issue
Block a user