From d57065244f15dcfd40f5507743b1aed6dcda2b4b Mon Sep 17 00:00:00 2001 From: Miro Hrončok Date: Jan 02 2024 15:00:50 +0000 Subject: Orphaned for 6+ weeks --- diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 0a0bbc6..0000000 --- a/.gitignore +++ /dev/null @@ -1,14 +0,0 @@ -i386/ -i686/ -x86_64/ -ppc/ -ppc64/ -ia64/ -mips/ -arm*/ -noarch/ -.project -*.src.rpm -.build*.log -/ibutils-1.*.tar.gz -/ibutils-1.*/ diff --git a/add-ibdev2netdev.patch b/add-ibdev2netdev.patch deleted file mode 100644 index e1a60ee..0000000 --- a/add-ibdev2netdev.patch +++ /dev/null @@ -1,201 +0,0 @@ ---- /dev/null 2016-06-11 21:31:27.877143799 -0400 -+++ ibdev2netdev 2016-06-11 22:55:00.358718594 -0400 -@@ -0,0 +1,198 @@ -+#! /bin/bash -+ -+usage() -+{ -+ echo "$(basename $0) " -+ echo "-h, --help print help message" -+ echo "-v, --verbose print more info" -+} -+ -+case $1 in -+ "-h" | "--help") -+ usage -+ exit 0 -+ ;; -+esac -+ -+if (( $# > 1 )); then -+ usage -+ exit -1 -+fi -+ -+if (( $# == 1 )) && [ "$1" != "-v" ]; then -+ usage -+ exit -1 -+fi -+ -+ibdevs=$(ls /sys/class/infiniband/) -+ -+devs=$(ls /sys/class/net/ | grep ^[ei]) -+if [ "x$devs" == "x" ]; then -+ # no relevant devices - quit immediately -+ exit -+fi -+ -+for d in $devs; do -+ if [ -f /sys/class/net/$d/dev_id ]; then -+ oldstyle=n -+ break -+ fi -+done -+ -+if [ "x$oldstyle" == "xn" ]; then -+ for d in $ibdevs; do -+ ibrsc=$(cat /sys/class/infiniband/$d/device/resource) -+ eths=$(ls /sys/class/net/) -+ for eth in $eths; do -+ filepath_resource=/sys/class/net/$eth/device/resource -+ -+ if [ -f $filepath_resource ]; then -+ ethrsc=$(cat $filepath_resource) -+ if [ "x$ethrsc" == "x$ibrsc" ]; then -+ filepath_devid=/sys/class/net/$eth/dev_id -+ filepath_devport=/sys/class/net/$eth/dev_port -+ if [ -f $filepath_devid ]; then -+ port1=0 -+ if [ -f $filepath_devport ]; then -+ port1=$(cat $filepath_devport) -+ port1=$(printf "%d" $port1) -+ fi -+ -+ port=$(cat $filepath_devid) -+ port=$(printf "%d" $port) -+ if [ $port1 -gt $port ]; then -+ port=$port1 -+ fi -+ -+ port=$(( port + 1 )) -+ -+ filepath_carrier=/sys/class/net/$eth/carrier -+ -+ if [ -f $filepath_carrier ]; then -+ link_state=$(cat $filepath_carrier 2> /dev/null) -+ if (( link_state == 1 )); then -+ link_state="Up" -+ else -+ link_state="Down" -+ fi -+ else -+ link_state="NA" -+ fi -+ -+ if [ "$1" == "-v" ]; then -+ filepath_portstate=/sys/class/infiniband/$d/ports/$port/state -+ filepath_deviceid=/sys/class/infiniband/$d/device/device -+ filepath_fwver=/sys/class/infiniband/$d/fw_ver -+ filepath_vpd=/sys/class/infiniband/$d/device/vpd -+ -+ # read port state -+ if [ -f $filepath_portstate ]; then -+ ibstate=$(printf "%-6s" $(cat $filepath_portstate | gawk '{print $2}')) -+ else -+ ibstate="na" -+ fi -+ -+ # read device -+ if [ -f $filepath_deviceid ]; then -+ devid=$(printf "mt%d" $(cat $filepath_deviceid)) -+ else -+ devid="na" -+ fi -+ -+ # read fw version -+ if [ -f $filepath_fwver ]; then -+ fwver=$(cat $filepath_fwver) -+ else -+ fwver="na" -+ fi -+ -+ # read device description and part id from the vpd -+ if [ -f $filepath_vpd ]; then -+ tmp=$ifs -+ ifs=":" -+ vpd_content=`cat $filepath_vpd` -+ devdesc=$(printf "%-15s" $(echo $vpd_content | strings | head -1)) -+ partid=$(printf "%-11s" $(echo $vpd_content | strings | head -4 | tail -1 | gawk '{print $1}')) -+ ifs=$tmp -+ else -+ devdesc="" -+ partid="na" -+ fi -+ -+ echo "$d ($devid - $partid) $devdesc fw $fwver port $port ($ibstate) ==> $eth ($link_state)" -+ else -+ echo "$d port $port ==> $eth ($link_state)" -+ fi -+ fi -+ fi -+ fi -+ done -+ done -+else -+########################## -+### old style -+########################## -+ -+function print_line() -+{ -+ echo "$1 port $2 <===> $3" -+} -+ -+function find_guid() -+{ -+ ibdevs=$(ls /sys/class/infiniband/) -+ for ibdev in $ibdevs; do -+ ports=$(ls /sys/class/infiniband/$ibdev/ports/) -+ for port in $ports; do -+ gids=$(ls /sys/class/infiniband/$ibdev/ports/$port/gids) -+ for gid in $gids; do -+ pguid=$(cat /sys/class/infiniband/$ibdev/ports/$port/gids/$gid | cut -b 21- | sed -e 's/://g') -+ if [ x$pguid == x$1 ]; then -+ print_line $ibdev $port $2 -+ fi -+ done -+ done -+ done -+} -+ -+function find_mac() -+{ -+ ibdevs=$(ls /sys/class/infiniband/) -+ for ibdev in $ibdevs; do -+ type=$(cat /sys/class/infiniband/$ibdev/node_type|cut -d ' ' -f 2) -+ ports=$(ls /sys/class/infiniband/$ibdev/ports/) -+ for port in $ports; do -+ gids=$(ls /sys/class/infiniband/$ibdev/ports/$port/gids) -+ for gid in $gids; do -+ if [[ "$type" = "RNIC" ]]; then -+ pmac=$(cat /sys/class/infiniband/$ibdev/ports/$port/gids/$gid | cut -b 1-14|sed -e 's/://g') -+ else -+ first=$(cat /sys/class/infiniband/$ibdev/ports/$port/gids/$gid | cut -b 21-22) -+ first=$(( first ^ 2 )) -+ first=$(printf "%02x" $first) -+ second=$(cat /sys/class/infiniband/$ibdev/ports/$port/gids/$gid | cut -b 21- | sed -e 's/://g' | cut -b 3-6) -+ third=$(cat /sys/class/infiniband/$ibdev/ports/$port/gids/$gid | cut -b 21- | sed -e 's/://g' | cut -b 11-) -+ pmac=$first$second$third -+ fi -+ if [ x$pmac == x$1 ]; then -+ print_line $ibdev $port $2 -+ fi -+ done -+ done -+ done -+} -+ -+ifcs=$(ifconfig -a | egrep '^eth|^ib' | gawk '{print $1}') -+ -+for ifc in $ifcs; do -+ len=$(cat /sys/class/net/$ifc/addr_len) -+ if (( len == 20 )); then -+ guid=$(cat /sys/class/net/$ifc/address | cut -b 37- | sed -e 's/://g') -+ find_guid $guid $ifc -+ elif (( len == 6)); then -+ mac=$(cat /sys/class/net/$ifc/address | sed -e 's/://g') -+ find_mac $mac $ifc -+ fi -+done -+fi -+ diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..5204a84 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Orphaned for 6+ weeks diff --git a/ibutils-1.5.7-format-security.patch b/ibutils-1.5.7-format-security.patch deleted file mode 100644 index 229dd62..0000000 --- a/ibutils-1.5.7-format-security.patch +++ /dev/null @@ -1,39 +0,0 @@ -diff --git a/ibis/src/ibis.i b/ibis/src/ibis.i -index 8fc4440..0b596bf 100644 ---- a/ibis/src/ibis.i -+++ b/ibis/src/ibis.i -@@ -362,7 +362,7 @@ ibisp_is_debug(void) - } - - int ibis_puts( osm_log_level_t verbosity, char *msg) { -- osm_log(&(IbisObj.log), verbosity, msg ); -+ osm_log(&(IbisObj.log), verbosity, "%s", msg ); - return TCL_OK; - } - -diff --git a/ibis/src/ibis_wrap.c b/ibis/src/ibis_wrap.c -index 5098c2a..93154ba 100644 ---- a/ibis/src/ibis_wrap.c -+++ b/ibis/src/ibis_wrap.c -@@ -3186,7 +3186,7 @@ typedef struct { - } - - int ibis_puts( osm_log_level_t verbosity, char *msg) { -- osm_log(&(IbisObj.log), verbosity, msg ); -+ osm_log(&(IbisObj.log), verbosity, "%s", msg ); - return TCL_OK; - } - -diff --git a/ibis/src/ibissh_wrap.cpp b/ibis/src/ibissh_wrap.cpp -index f75cde6..d312915 100644 ---- a/ibis/src/ibissh_wrap.cpp -+++ b/ibis/src/ibissh_wrap.cpp -@@ -3186,7 +3186,7 @@ typedef struct { - } - - int ibis_puts( osm_log_level_t verbosity, char *msg) { -- osm_log(&(IbisObj.log), verbosity, msg ); -+ osm_log(&(IbisObj.log), verbosity, "%s", msg ); - return TCL_OK; - } - diff --git a/ibutils-1.5.7-gcc10.patch b/ibutils-1.5.7-gcc10.patch deleted file mode 100644 index 44d4213..0000000 --- a/ibutils-1.5.7-gcc10.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -up ibutils-1.5.7/ibis/src/ibis.c.me ibutils-1.5.7/ibis/src/ibis.c -diff -up ibutils-1.5.7/ibis/src/ibis.i.me ibutils-1.5.7/ibis/src/ibis.i -diff -up ibutils-1.5.7/ibis/src/ibis_wrap.c.me ibutils-1.5.7/ibis/src/ibis_wrap.c ---- ibutils-1.5.7/ibis/src/ibis_wrap.c.me 2020-03-06 14:20:14.131825861 +0100 -+++ ibutils-1.5.7/ibis/src/ibis_wrap.c 2020-03-06 15:03:55.330170055 +0100 -@@ -3004,7 +3004,6 @@ typedef struct { - - - /* globals */ -- ibis_t IbisObj; - static ibis_opt_t *ibis_opt_p; - ibis_opt_t IbisOpts; - -diff -up ibutils-1.5.7/ibis/src/ibissh_wrap.cpp.me ibutils-1.5.7/ibis/src/ibissh_wrap.cpp ---- ibutils-1.5.7/ibis/src/ibissh_wrap.cpp.me 2020-03-06 15:20:56.161234609 +0100 -+++ ibutils-1.5.7/ibis/src/ibissh_wrap.cpp 2020-03-06 15:21:08.705388057 +0100 -@@ -3004,7 +3004,6 @@ typedef struct { - - - /* globals */ -- ibis_t IbisObj; - static ibis_opt_t *ibis_opt_p; - ibis_opt_t IbisOpts; - diff --git a/ibutils-1.5.7-tk86.patch b/ibutils-1.5.7-tk86.patch deleted file mode 100644 index 60cbfeb..0000000 --- a/ibutils-1.5.7-tk86.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff --git a/ibdiag/config/tk.m4 b/ibdiag/config/tk.m4 -index 91ff1cb..e992392 100644 ---- a/ibdiag/config/tk.m4 -+++ b/ibdiag/config/tk.m4 -@@ -18,14 +18,16 @@ dnl if we were not given a path - try finding one: - if test "x$with_tk_lib" = "xnone"; then - dirs="/usr /usr/local /usr/local/ibgd /usr/local/ibg2 /usr/local/ibed /usr/local/ofed" - for d in $dirs; do -- if test -e $d/lib/libtk8.4.so -o -e $d/lib/libtk8.5.so; then -+ for v in 8.4 8.5 8.6; do -+ if test -e $d/lib/libtk$v.so; then - with_tk_lib=$d/lib - AC_MSG_NOTICE(TK: found in:$with_tk_lib) -- fi -- if test -e $d/lib64/libtk8.4.so -o -e $d/lib64/libtk8.5.so; then -+ fi -+ if test -e $d/lib64/libtk$v.so; then - with_tk_lib=$d/lib64 - AC_MSG_NOTICE(TK: found in:$with_tk_lib) -- fi -+ fi -+ done - done - fi - diff --git a/ibutils.spec b/ibutils.spec deleted file mode 100644 index 7a73292..0000000 --- a/ibutils.spec +++ /dev/null @@ -1,373 +0,0 @@ -# -# Copyright (c) 2006 Mellanox Technologies. All rights reserved. -# -# This Software is licensed under one of the following licenses: -# -# 3) under the terms of the "GNU General Public License (GPL) Version 2" a -# copy of which is available from the Open Source Initiative, see -# http://www.opensource.org/licenses/gpl-license.php. -# -# Redistributions of source code must retain the above copyright -# notice and one of the license notices. -# -# Redistributions in binary form must reproduce both the above copyright -# notice, one of the license notices in the documentation -# and/or other materials provided with the distribution. -# -# -# $Id: ibutils.spec.in 7656 2006-06-04 09:38:34Z vlad $ -# - -Summary: OpenIB Mellanox InfiniBand Diagnostic Tools -Name: ibutils -Version: 1.5.7 -Release: 40%{?dist} -# This is dual-licensed upstream, all code available under either license -License: GPLv2 or BSD -Url: https://www.openfabrics.org/ -Source0: https://www.openfabrics.org/downloads/%{name}/%{name}-%{version}-0.2.gbd7e502.tar.gz -Patch0: ibutils-1.5.7-tk86.patch -Patch1: ibutils-1.5.7-format-security.patch -Patch2: add-ibdev2netdev.patch -Patch3: ibutils-1.5.7-gcc10.patch -Requires: tcl, tk, graphviz-tcl -Requires: %{name}-libs%{?_isa} = %{version}-%{release} - -BuildRequires: libibverbs-devel >= 1.1 -BuildRequires: opensm-devel >= 3.3.0 -BuildRequires: tcl-devel -BuildRequires: swig -BuildRequires: tk-devel -BuildRequires: libibumad-devel -BuildRequires: autoconf -BuildRequires: graphviz-tcl -BuildRequires: chrpath -BuildRequires: perl-podlators -BuildRequires: autoconf, automake, libtool -BuildRequires: libstdc++-devel -BuildRequires: gcc, gcc-c++ -BuildRequires: make -# RDMA is not currently built on 32-bit ARM: #1484155 -ExcludeArch: s390 s390x %{arm} - -%description -ibutils provides IB network and path diagnostics. - -%package libs -Summary: Shared libraries used by ibutils binaries -%description libs -Shared libraries used by the Mellanox Infiniband diagnostic utilities - -%package devel -Summary: Development files to use the ibutils shared libraries -Requires: ibutils-libs%{?_isa} = %{version}-%{release} -%description devel -Headers and static libraries needed to develop applications that use -the Mellanox Infiniband diagnostic utilities libraries - -%package static -Summary: Static libraries for ibutils -Requires: ibutils-devel%{?_isa} = %{version}-%{release} -%description static -Static libraries from the Mellanox Infiniband diagnostic utilities - -%prep -%setup -q -%patch0 -p1 -%patch1 -p1 -%patch2 -%patch3 -p1 -b .gcc10 - -%build -autoreconf -fiv -I config -sed -i "s/^libibmscli_la_LIBADD =/& -lpthread/" ibmgtsim/src/Makefile.in -sed -e 's#all-am: Makefile $(PROGRAMS) $(LIBRARIES) $(LTLIBRARIES)#all-am: Makefile $(LIBRARIES) $(LTLIBRARIES) $(PROGRAMS)#' -i ibis/src/Makefile.in -%configure --with-osm=%{_prefix} --enable-ibmgtsim --disable-rpath CXXFLAGS="$CXXFLAGS -fno-strict-aliasing -fPIC -std=c++03" -# Workaround libtool reordering -Wl,--as-needed after all the libraries. -sed -e 's|^LTCC="gcc"|LTCC="gcc -Wl,--as-needed"|' \ - -e 's|^CC="g++"|CC="g++ -Wl,--as-needed"|' \ - -i ibdm/libtool ibis/libtool ibmgtsim/libtool - -# The build isn't smp safe, so no %{?_smp_mflags} -export CXXFLAGS="$CXXFLAGS -fno-strict-aliasing -fPIC" -make - -%install -make install DESTDIR=%{buildroot} -rm -f %{buildroot}%{_bindir}/git_version.tcl -# None of these files are scripts, but because in the tarball some have -# execute privs, that gets copied on install and rpmlint doesn't like them -chmod -x %{buildroot}%{_libdir}/ibdm%{version}/ibnl/* -find %{buildroot} -name \*.la -delete -chrpath -d %{buildroot}%{_bindir}/ib{mssh,nlparse,dmsh,topodiff,is,msquit,dmtr,dmchk} -chrpath -d %{buildroot}%{_libdir}/libib{sysapi,dm}.so.1.[01].[01] -chrpath -d %{buildroot}%{_libdir}/*/libib{dm,is}.so.%{version} -install -m 0755 ibdev2netdev %{buildroot}%{_bindir} - -%ldconfig_scriptlets libs - -%files -%{_bindir}/dump2psl.pl -%{_bindir}/dump2slvl.pl -%{_bindir}/ibis -%{_bindir}/ibdmsh -%{_bindir}/ibtopodiff -%{_bindir}/ibnlparse -%{_bindir}/ibdmtr -%{_bindir}/ibdmchk -%{_bindir}/ibdiagnet -%{_bindir}/ibdiagpath -%{_bindir}/ibdiagui -%{_bindir}/mkSimNodeDir -%{_bindir}/ibmssh -%{_bindir}/ibmsquit -%{_bindir}/RunSimTest -%{_bindir}/IBMgtSim -%{_bindir}/ibdev2netdev -%{_datadir}/ibmgtsim -%{_mandir}/*/* - -%files libs -%license COPYING -%{_libdir}/libibdmcom.so.* -%{_libdir}/libibdm.so.* -%{_libdir}/libibmscli.so.* -%{_libdir}/libibsysapi.so.* -%dir %{_libdir}/ibis%{version} -%dir %{_libdir}/ibdm%{version} -%dir %{_libdir}/ibdiagnet%{version} -%dir %{_libdir}/ibdiagpath%{version} -%dir %{_libdir}/ibdiagui%{version} -%{_libdir}/ibis%{version}/* -%{_libdir}/ibdm%{version}/* -%{_libdir}/ibdiagnet%{version}/* -%{_libdir}/ibdiagpath%{version}/* -%{_libdir}/ibdiagui%{version}/* - -%files devel -%{_libdir}/libibdmcom.so -%{_libdir}/libibdm.so -%{_libdir}/libibmscli.so -%{_libdir}/libibsysapi.so -%{_includedir}/ibdm -%{_includedir}/ibmgtsim - -%files static -%{_libdir}/*.a - -%changelog -* Thu Jul 20 2023 Fedora Release Engineering - 1.5.7-40 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Thu Jan 19 2023 Fedora Release Engineering - 1.5.7-39 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Thu Jul 21 2022 Fedora Release Engineering - 1.5.7-38 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Thu Jan 20 2022 Fedora Release Engineering - 1.5.7-37 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Thu Jul 22 2021 Fedora Release Engineering - 1.5.7-36 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Tue Jan 26 2021 Fedora Release Engineering - 1.5.7-35 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Tue Jul 28 2020 Fedora Release Engineering - 1.5.7-34 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Fri Mar 06 2020 Than Ngo - 1.5.7-33 -- Fixed FTBFS against gcc10 - -* Wed Jan 29 2020 Fedora Release Engineering - 1.5.7-32 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Thu Jul 25 2019 Fedora Release Engineering - 1.5.7-31 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Mon Apr 22 2019 Björn Esser - 1.5.7-30 -- rebuilt(opensm) - -* Fri Feb 01 2019 Fedora Release Engineering - 1.5.7-29 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Fri Jul 13 2018 Fedora Release Engineering - 1.5.7-28 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Fri Mar 16 2018 Honggang Li - 1.5.7-27 -- Add Buildrequires: gcc, gcc-c++ -- Fix a bug in ibis Makefile.in -- Add script ibdev2netdev -- Resolves: bz1556746 - -* Wed Feb 07 2018 Fedora Release Engineering - 1.5.7-26 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Sat Aug 26 2017 Honggang Li - 1.5.7-25 -- Disable support for ARM32 -- Resolves: bz1484155 - -* Wed Aug 02 2017 Fedora Release Engineering - 1.5.7-24 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 1.5.7-23 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Feb 10 2017 Fedora Release Engineering - 1.5.7-22 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Fri Mar 18 2016 Honggang Li - 1.5.7-21 -- Fix g++ compiling issue for Fedora 24 and later - -* Wed Mar 16 2016 Doug Ledford - 1.5.7-20 -- Update to latest git tarball - -* Thu Feb 04 2016 Fedora Release Engineering - 1.5.7-19 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Wed Jun 17 2015 Fedora Release Engineering - 1.5.7-18 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Sat May 02 2015 Kalev Lember - 1.5.7-17 -- Rebuilt for GCC 5 C++11 ABI change - -* Sat Aug 16 2014 Fedora Release Engineering - 1.5.7-16 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Tue Jul 15 2014 Peter Robinson 1.5.7-15 -- Sync platform Excludes with rest of OpenFabrics package set -- Minor spec cleanups - -* Mon Jun 30 2014 Yaakov Selkowitz - 1.5.7-14 -- Fix FTBFS with tcl-8.6 and -Werror=format-security (#1037127, #1106783) - -* Sat Jun 07 2014 Fedora Release Engineering - 1.5.7-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Wed May 21 2014 Jaroslav Škarvada - 1.5.7-12 -- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86 - -* Tue May 13 2014 Jaromir Capik - 1.5.7-11 -- Replacing ppc64 with the power64 macro (#1076681) - -* Sat Aug 03 2013 Fedora Release Engineering - 1.5.7-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Mon Feb 18 2013 Peter Robinson 1.5.7-9 -- Build on ARM too - -* Tue Feb 12 2013 Jon Stanley - 1.5.7-8 -- Bump - -* Tue Feb 12 2013 Jon Stanley - 1.5.7-7.1 -- perl-podlators added to BR for F19 build - -* Wed Oct 24 2012 Jon Stanley - 1.5.7-7 -- Minor spec cleanup - -* Wed Oct 24 2012 Jon Stanley - 1.5.7-6 -- Drop a static lib from -devel that I missed -- Add comment explaining dual license -- Drop swig runtime requirement -- Eliminate unnecessary linkage and undefined weak symbols -- Drop autoconf BR - -* Tue Oct 23 2012 Jon Stanley - 1.5.7-5 -- Split out static libs into their own subpackage -- Remove unnecesary BuildRoot and defattr -- Add %%{?_isa} to explict deps -- Related: bz773485 - -* Fri Sep 02 2011 Doug Ledford - 1.5.7-4 -- Add a Requires for ibutils-libs to base ibutils package (found by rpmdiff) - -* Thu Sep 01 2011 Doug Ledford - 1.5.7-3 -- Add a Requires on graphviz-tcl -- Resolves: bz734979 - -* Mon Aug 08 2011 Doug Ledford - 1.5.7-2 -- Fix the build so it generates proper debuginfo files -- Resolves: bz729019 -- Related: bz725016 - -* Thu Aug 04 2011 Doug Ledford - 1.5.7-1 -- Update to latest upstream release -- Related: bz725016 - -* Thu Apr 28 2011 Doug Ledford - 1.5.4-3.el6 -- Build for i686 too -- Related: bz695204 - -* Tue Apr 19 2011 Dennis Gregorovic - 1.5.4-2.el6 -- Build for ppc64 -- Resolves: bz695204 - -* Mon Mar 08 2010 Doug Ledford - 1.5.4-1.el6 -- Update to latest upstream version, which cleans up some licensing issues - found in the previous versions during review -- Related: bz555835 - -* Mon Jan 25 2010 Doug Ledford - 1.2-12.el6 -- Update license for pkgwranger approval -- Related: bz543948 - -* Tue Dec 22 2009 Doug Ledford - 1.2-11.el5 -- Update to latest compatible upstream version -- Related: bz518218 - -* Fri Apr 17 2009 Doug Ledford - 1.2-10 -- Update to ofed 1.4.1-rc3 version -- Related: bz459652 - -* Tue Nov 11 2008 Doug Ledford - 1.2-9 -- Oops, forgot to remove the man page for ibdiagui, fix that -- Related: bz468122 - -* Mon Nov 10 2008 Doug Ledford - 1.2-8 -- Remove ibdiagui from the package entirely since it still doesn't work - without graphviz-tcl -- Related: bz468122 - -* Thu Oct 23 2008 Doug Ledford - 1.2-7 -- Grab the upstream ibutils git repo, find a checkout that supports the - recent opensm library versions and yet doesn't require graphviz-tcl, - export that tree to a tarball with a git designation, build from it. -- Resolves: bz468122 - -* Thu Sep 18 2008 Doug Ledford - 1.2-6 -- Add a build flag to silence some compile warnings - -* Wed Sep 17 2008 Doug Ledford - 1.2-4 -- Upstream has updated the tarball without changing the version number, - grab the tarball from the OFED-1.4-beta1 tarball and use it. -- Resolves: bz451467 - -* Tue Jan 29 2008 Doug Ledford - 1.2-3 -- Bump and rebuild against OFED 1.3 libraries -- Resolves: bz428198 - -* Wed Jun 27 2007 Doug Ledford - 1.2-2 -- Bump and rebuild against openib-1.2 libraries - -* Mon Jun 25 2007 Doug Ledford - 1.2-1 -- Update to OFED 1.2 released package -- Related: bz245817 - -* Wed Oct 25 2006 Tim Powers - 1.0-3 -- rebuild against openib package set due to soname change - -* Fri Oct 20 2006 Doug Ledford -- Bump and rebuild against latest openib packages -- Disable ibmgtsim until I can figure out why it's failing to wrap a - perfectly existent library function (I hate c++) - -* Mon Jul 31 2006 Doug Ledford 1.0-2 -- Make spec file name convention/multilib compliant -- Move all the files to FHS compliant locations for a distributor - -* Tue May 16 2006 Vladimir Sokolovsky -- Added ibutils sh, csh and conf to update environment - -* Sun Apr 2 2006 Vladimir Sokolovsky -- Initial packaging for openib gen2 stack diff --git a/sources b/sources deleted file mode 100644 index 4d1844f..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -8c296a4262a91078d61f20dc58adee9d ibutils-1.5.7-0.2.gbd7e502.tar.gz