forked from pool/OpenIPMI
Compare commits
4 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| efd4bac4c3 | |||
| b538ecfa39 | |||
| 50f4295611 | |||
| 41bf6bb5f5 |
@@ -1,240 +0,0 @@
|
||||
diff --git a/m4/ax_python_devel.m4 b/m4/ax_python_devel.m4
|
||||
index e0804c5..3696cef 100644
|
||||
--- a/m4/ax_python_devel.m4
|
||||
+++ b/m4/ax_python_devel.m4
|
||||
@@ -1,5 +1,5 @@
|
||||
# ===========================================================================
|
||||
-# http://www.gnu.org/software/autoconf-archive/ax_python_devel.html
|
||||
+# https://www.gnu.org/software/autoconf-archive/ax_python_devel.html
|
||||
# ===========================================================================
|
||||
#
|
||||
# SYNOPSIS
|
||||
@@ -52,7 +52,7 @@
|
||||
# Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License along
|
||||
-# with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
+# with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
# As a special exception, the respective Autoconf Macro's copyright owner
|
||||
# gives unlimited permission to copy, distribute and modify the configure
|
||||
@@ -67,7 +67,7 @@
|
||||
# modified version of the Autoconf Macro, you may extend this special
|
||||
# exception to the GPL to apply to your modified version as well.
|
||||
|
||||
-#serial 18
|
||||
+#serial 25
|
||||
|
||||
AU_ALIAS([AC_PYTHON_DEVEL], [AX_PYTHON_DEVEL])
|
||||
AC_DEFUN([AX_PYTHON_DEVEL],[
|
||||
@@ -118,15 +118,39 @@ to something else than an empty string.
|
||||
fi
|
||||
|
||||
#
|
||||
- # if the macro parameter ``version'' is set, honour it
|
||||
+ # If the macro parameter ``version'' is set, honour it.
|
||||
+ # A Python shim class, VPy, is used to implement correct version comparisons via
|
||||
+ # string expressions, since e.g. a naive textual ">= 2.7.3" won't work for
|
||||
+ # Python 2.7.10 (the ".1" being evaluated as less than ".3").
|
||||
#
|
||||
if test -n "$1"; then
|
||||
AC_MSG_CHECKING([for a version of Python $1])
|
||||
- ac_supports_python_ver=`$PYTHON -c "import sys; \
|
||||
- ver = sys.version.split ()[[0]]; \
|
||||
+ cat << EOF > ax_python_devel_vpy.py
|
||||
+class VPy:
|
||||
+ def vtup(self, s):
|
||||
+ return tuple(map(int, s.strip().replace("rc", ".").split(".")))
|
||||
+ def __init__(self):
|
||||
+ import sys
|
||||
+ self.vpy = tuple(sys.version_info)
|
||||
+ def __eq__(self, s):
|
||||
+ return self.vpy == self.vtup(s)
|
||||
+ def __ne__(self, s):
|
||||
+ return self.vpy != self.vtup(s)
|
||||
+ def __lt__(self, s):
|
||||
+ return self.vpy < self.vtup(s)
|
||||
+ def __gt__(self, s):
|
||||
+ return self.vpy > self.vtup(s)
|
||||
+ def __le__(self, s):
|
||||
+ return self.vpy <= self.vtup(s)
|
||||
+ def __ge__(self, s):
|
||||
+ return self.vpy >= self.vtup(s)
|
||||
+EOF
|
||||
+ ac_supports_python_ver=`$PYTHON -c "import ax_python_devel_vpy; \
|
||||
+ ver = ax_python_devel_vpy.VPy(); \
|
||||
print (ver $1)"`
|
||||
+ rm -rf ax_python_devel_vpy*.py* __pycache__/ax_python_devel_vpy*.py*
|
||||
if test "$ac_supports_python_ver" = "True"; then
|
||||
- AC_MSG_RESULT([yes])
|
||||
+ AC_MSG_RESULT([yes])
|
||||
else
|
||||
AC_MSG_RESULT([no])
|
||||
AC_MSG_ERROR([this package requires Python $1.
|
||||
@@ -141,16 +165,25 @@ variable to configure. See ``configure --help'' for reference.
|
||||
#
|
||||
# Check if you have distutils, else fail
|
||||
#
|
||||
- AC_MSG_CHECKING([for the distutils Python package])
|
||||
- ac_distutils_result=`$PYTHON -c "import distutils" 2>&1`
|
||||
- if test -z "$ac_distutils_result"; then
|
||||
+ AC_MSG_CHECKING([for the sysconfig Python package])
|
||||
+ ac_sysconfig_result=`$PYTHON -c "import sysconfig" 2>&1`
|
||||
+ if test $? -eq 0; then
|
||||
AC_MSG_RESULT([yes])
|
||||
+ IMPORT_SYSCONFIG="import sysconfig"
|
||||
else
|
||||
AC_MSG_RESULT([no])
|
||||
- AC_MSG_ERROR([cannot import Python module "distutils".
|
||||
+
|
||||
+ AC_MSG_CHECKING([for the distutils Python package])
|
||||
+ ac_sysconfig_result=`$PYTHON -c "from distutils import sysconfig" 2>&1`
|
||||
+ if test $? -eq 0; then
|
||||
+ AC_MSG_RESULT([yes])
|
||||
+ IMPORT_SYSCONFIG="from distutils import sysconfig"
|
||||
+ else
|
||||
+ AC_MSG_ERROR([cannot import Python module "distutils".
|
||||
Please check your Python installation. The error was:
|
||||
-$ac_distutils_result])
|
||||
- PYTHON_VERSION=""
|
||||
+$ac_sysconfig_result])
|
||||
+ PYTHON_VERSION=""
|
||||
+ fi
|
||||
fi
|
||||
|
||||
#
|
||||
@@ -158,10 +191,19 @@ $ac_distutils_result])
|
||||
#
|
||||
AC_MSG_CHECKING([for Python include path])
|
||||
if test -z "$PYTHON_CPPFLAGS"; then
|
||||
- python_path=`$PYTHON -c "import distutils.sysconfig; \
|
||||
- print (distutils.sysconfig.get_python_inc ());"`
|
||||
- plat_python_path=`$PYTHON -c "import distutils.sysconfig; \
|
||||
- print (distutils.sysconfig.get_python_inc (plat_specific=1));"`
|
||||
+ if test "$IMPORT_SYSCONFIG" = "import sysconfig"; then
|
||||
+ # sysconfig module has different functions
|
||||
+ python_path=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||
+ print (sysconfig.get_path ('include'));"`
|
||||
+ plat_python_path=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||
+ print (sysconfig.get_path ('platinclude'));"`
|
||||
+ else
|
||||
+ # old distutils way
|
||||
+ python_path=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||
+ print (sysconfig.get_python_inc ());"`
|
||||
+ plat_python_path=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||
+ print (sysconfig.get_python_inc (plat_specific=1));"`
|
||||
+ fi
|
||||
if test -n "${python_path}"; then
|
||||
if test "${plat_python_path}" != "${python_path}"; then
|
||||
python_path="-I$python_path -I$plat_python_path"
|
||||
@@ -185,7 +227,7 @@ $ac_distutils_result])
|
||||
|
||||
# join all versioning strings, on some systems
|
||||
# major/minor numbers could be in different list elements
|
||||
-from distutils.sysconfig import *
|
||||
+from sysconfig import *
|
||||
e = get_config_var('VERSION')
|
||||
if e is not None:
|
||||
print(e)
|
||||
@@ -208,8 +250,8 @@ EOD`
|
||||
ac_python_libdir=`cat<<EOD | $PYTHON -
|
||||
|
||||
# There should be only one
|
||||
-import distutils.sysconfig
|
||||
-e = distutils.sysconfig.get_config_var('LIBDIR')
|
||||
+$IMPORT_SYSCONFIG
|
||||
+e = sysconfig.get_config_var('LIBDIR')
|
||||
if e is not None:
|
||||
print (e)
|
||||
EOD`
|
||||
@@ -217,8 +259,8 @@ EOD`
|
||||
# Now, for the library:
|
||||
ac_python_library=`cat<<EOD | $PYTHON -
|
||||
|
||||
-import distutils.sysconfig
|
||||
-c = distutils.sysconfig.get_config_vars()
|
||||
+$IMPORT_SYSCONFIG
|
||||
+c = sysconfig.get_config_vars()
|
||||
if 'LDVERSION' in c:
|
||||
print ('python'+c[['LDVERSION']])
|
||||
else:
|
||||
@@ -237,7 +279,7 @@ EOD`
|
||||
else
|
||||
# old way: use libpython from python_configdir
|
||||
ac_python_libdir=`$PYTHON -c \
|
||||
- "from distutils.sysconfig import get_python_lib as f; \
|
||||
+ "from sysconfig import get_python_lib as f; \
|
||||
import os; \
|
||||
print (os.path.join(f(plat_specific=1, standard_lib=1), 'config'));"`
|
||||
PYTHON_LIBS="-L$ac_python_libdir -lpython$ac_python_version"
|
||||
@@ -258,35 +300,58 @@ EOD`
|
||||
#
|
||||
AC_MSG_CHECKING([for Python site-packages path])
|
||||
if test -z "$PYTHON_SITE_PKG"; then
|
||||
- PYTHON_SITE_PKG=`$PYTHON -c "import distutils.sysconfig; \
|
||||
- print (distutils.sysconfig.get_python_lib(0,0));"`
|
||||
+ if test "$IMPORT_SYSCONFIG" = "import sysconfig"; then
|
||||
+ PYTHON_SITE_PKG=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||
+ print (sysconfig.get_path('purelib'));"`
|
||||
+ else
|
||||
+ # distutils.sysconfig way
|
||||
+ PYTHON_SITE_PKG=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||
+ print (sysconfig.get_python_lib(0,0));"`
|
||||
+ fi
|
||||
fi
|
||||
AC_MSG_RESULT([$PYTHON_SITE_PKG])
|
||||
AC_SUBST([PYTHON_SITE_PKG])
|
||||
|
||||
+ #
|
||||
+ # Check for platform-specific site packages
|
||||
+ #
|
||||
+ AC_MSG_CHECKING([for Python platform specific site-packages path])
|
||||
+ if test -z "$PYTHON_SITE_PKG"; then
|
||||
+ if test "$IMPORT_SYSCONFIG" = "import sysconfig"; then
|
||||
+ PYTHON_PLATFORM_SITE_PKG=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||
+ print (sysconfig.get_path('platlib'));"`
|
||||
+ else
|
||||
+ # distutils.sysconfig way
|
||||
+ PYTHON_PLATFORM_SITE_PKG=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||
+ print (sysconfig.get_python_lib(1,0));"`
|
||||
+ fi
|
||||
+ fi
|
||||
+ AC_MSG_RESULT([$PYTHON_PLATFORM_SITE_PKG])
|
||||
+ AC_SUBST([PYTHON_PLATFORM_SITE_PKG])
|
||||
+
|
||||
#
|
||||
# libraries which must be linked in when embedding
|
||||
#
|
||||
AC_MSG_CHECKING(python extra libraries)
|
||||
- if test -z "$PYTHON_EXTRA_LDFLAGS"; then
|
||||
- PYTHON_EXTRA_LDFLAGS=`$PYTHON -c "import distutils.sysconfig; \
|
||||
- conf = distutils.sysconfig.get_config_var; \
|
||||
+ if test -z "$PYTHON_EXTRA_LIBS"; then
|
||||
+ PYTHON_EXTRA_LIBS=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||
+ conf = sysconfig.get_config_var; \
|
||||
print (conf('LIBS') + ' ' + conf('SYSLIBS'))"`
|
||||
fi
|
||||
- AC_MSG_RESULT([$PYTHON_EXTRA_LDFLAGS])
|
||||
- AC_SUBST(PYTHON_EXTRA_LDFLAGS)
|
||||
+ AC_MSG_RESULT([$PYTHON_EXTRA_LIBS])
|
||||
+ AC_SUBST(PYTHON_EXTRA_LIBS)
|
||||
|
||||
#
|
||||
# linking flags needed when embedding
|
||||
#
|
||||
AC_MSG_CHECKING(python extra linking flags)
|
||||
- if test -z "$PYTHON_EXTRA_LIBS"; then
|
||||
- PYTHON_EXTRA_LIBS=`$PYTHON -c "import distutils.sysconfig; \
|
||||
- conf = distutils.sysconfig.get_config_var; \
|
||||
+ if test -z "$PYTHON_EXTRA_LDFLAGS"; then
|
||||
+ PYTHON_EXTRA_LDFLAGS=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||
+ conf = sysconfig.get_config_var; \
|
||||
print (conf('LINKFORSHARED'))"`
|
||||
fi
|
||||
- AC_MSG_RESULT([$PYTHON_EXTRA_LIBS])
|
||||
- AC_SUBST(PYTHON_EXTRA_LIBS)
|
||||
+ AC_MSG_RESULT([$PYTHON_EXTRA_LDFLAGS])
|
||||
+ AC_SUBST(PYTHON_EXTRA_LDFLAGS)
|
||||
|
||||
#
|
||||
# final check to see if everything compiles alright
|
||||
@@ -1,58 +0,0 @@
|
||||
C type errors in the SWIG-generated Perl bindings
|
||||
|
||||
The first change fixes an error with newer compilers:
|
||||
|
||||
OpenIPMI_wrap.c: In function ‘_wrap_strconstarray_val_set’:
|
||||
OpenIPMI_wrap.c:10491:27: error: assignment to ‘const char **’ from incompatible pointer type ‘char **’
|
||||
10491 | if (arg1) (arg1)->val = arg2;
|
||||
| ^
|
||||
|
||||
The second change is also about a compiler error:
|
||||
|
||||
In file included from /usr/lib64/perl5/CORE/perl.h:4530,
|
||||
from OpenIPMI_wrap.c:751:
|
||||
OpenIPMI_wrap.c: In function ‘_wrap_ipmi_sol_conn_t_write’:
|
||||
/usr/lib64/perl5/CORE/sv.h:1952:31: error: passing argument 3 of ‘Perl_SvPV_helper’ from incompatible pointer type
|
||||
1952 | Perl_SvPV_helper(aTHX_ sv, &len, flags, SvPVnormal_type_, \
|
||||
/usr/lib64/perl5/CORE/sv.h:1972:37: note: in expansion of macro ‘SvPV_flags’
|
||||
1972 | #define SvPV(sv, len) SvPV_flags(sv, len, SV_GMAGIC)
|
||||
| ^~~~~~~~~~
|
||||
OpenIPMI_wrap.c:27664:24: note: in expansion of macro ‘SvPV’
|
||||
27664 | (&arg2)->val = SvPV(tempsv, (&arg2)->len);
|
||||
| ^~~~
|
||||
In file included from /usr/lib64/perl5/CORE/perl.h:7812:
|
||||
/usr/lib64/perl5/CORE/sv_inline.h:908:33: note: expected ‘STRLEN * const’ {aka ‘long unsigned int * const’} but argument is of type ‘int *’
|
||||
908 | STRLEN * const lp,
|
||||
| ~~~~~~~~~~~~~~~^~
|
||||
|
||||
But the existing code looks broken on big-endian 64-bit architectures,
|
||||
too.
|
||||
|
||||
diff --git a/swig/OpenIPMI.i b/swig/OpenIPMI.i
|
||||
index 8e674a94e6f85f62..db2aa1b5292a276f 100644
|
||||
--- a/swig/OpenIPMI.i
|
||||
+++ b/swig/OpenIPMI.i
|
||||
@@ -359,7 +359,7 @@ typedef struct iargarray
|
||||
%}
|
||||
typedef struct strconstarray
|
||||
{
|
||||
- char **val;
|
||||
+ const char **val;
|
||||
int len;
|
||||
} strconstarray;
|
||||
typedef struct argarray
|
||||
diff --git a/swig/perl/OpenIPMI_lang.i b/swig/perl/OpenIPMI_lang.i
|
||||
index d13b62f09e69e02a..d7482d1135cdc3e4 100644
|
||||
--- a/swig/perl/OpenIPMI_lang.i
|
||||
+++ b/swig/perl/OpenIPMI_lang.i
|
||||
@@ -292,7 +292,9 @@
|
||||
$1.val = NULL;
|
||||
$1.len = 0;
|
||||
} else {
|
||||
- $1.val = SvPV(tempsv, $1.len);
|
||||
+ STRLEN len;
|
||||
+ $1.val = SvPV(tempsv, len);
|
||||
+ $1.len = len;
|
||||
}
|
||||
}
|
||||
|
||||
139
OpenIPMI.changes
139
OpenIPMI.changes
@@ -1,3 +1,142 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 11 12:28:45 UTC 2025 - trenn@suse.de
|
||||
|
||||
- Update to version 2.0.36.56+git.0a3a991:
|
||||
* lanserv: Mark serial channels special
|
||||
* sol: Refcount sol instance in ipmid_changed
|
||||
* lanserv: Set the channel info accurately for system interface
|
||||
* lanserv: Allow serial IPMI connections on channels besides 15
|
||||
* lanserv: Add limits to the receive queue
|
||||
* lanserv: Add timing for messages
|
||||
* lanserv: Fix a bug in response handling for LAN messages
|
||||
* lanserv: Yet another message dup bug
|
||||
* lanserv: Fix a bug in message duplication
|
||||
* lanserv: Remove one more unnecessary memset
|
||||
* lanserv: Remove unnecessary memsets
|
||||
* lanserv: Add the cmd to the things check for response matching
|
||||
* lanserv: Add a function to allocate and free message
|
||||
* lanserv: Fix a memory leak
|
||||
* lanserv: Don't allocate a new message for SMI handling
|
||||
* lanserv: Rework naming and message handling a bit
|
||||
* lanserv: More malloc/free cleanups
|
||||
* lanserv: Clean up memory handling
|
||||
* lanserv: Remove functions from channel and use sysinfo
|
||||
* lanserv: Create and use a message queue type
|
||||
* lanserv: Separate out the receive queue
|
||||
* lanserv: Reduce the size of the sim_addr_t passed around
|
||||
* lanserv: Get lun 2 commands working
|
||||
* lanserv: Rework receive queue to not have a dummy first byte
|
||||
* lanserv: More message routing work
|
||||
* lanserv: More work on the message routing
|
||||
* lanserv: More rework
|
||||
* lanserv: More work on restructure
|
||||
* lanserv: Rework address names
|
||||
* lanserv: More restructuring on message handling
|
||||
* lanserv: Move check_msg_length() to serv.c
|
||||
* lanserv: Round-robin sessions
|
||||
* lanserv: Rework the send message handling
|
||||
* lan: Don't set reponse LUN to 2 in bridged messages
|
||||
* lanserv: Allow RMCP authtype for no session messages
|
||||
* github: Add readline to the dependencies
|
||||
* Remove support for UCD SNMP
|
||||
* ipmish: Fix snmp trap handling
|
||||
* lanserv: Use ssize_t for the return value of read()
|
||||
* lanserv: Get rid of the rmcpplus session member
|
||||
* lanserv: Preserve handle when clearing session data
|
||||
* lanserv: Don't allow user 0 to be configured
|
||||
* utils:md5: Handle data for md5 cannot be NULL
|
||||
* lanserv: Validate message ordering at authentication
|
||||
* lanserv: Don't assign session privilege until after auth is done
|
||||
* lanserv: Clear out session data on a close
|
||||
* utils: Check for NULL before freeing MD5 data
|
||||
* lib:lan: Reject a zero sid
|
||||
* sample: Fix data parsing in ipmicmd
|
||||
* ui: Pass in a sockaddr_in to SNMP trap handler
|
||||
* Fix gen_random()
|
||||
* lanserv: Check that authdata is initialized before cleanup
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 25 10:40:09 UTC 2024 - trenn@suse.de
|
||||
|
||||
- Fix bsc#1229910 CVE-2024-42934 by below 2 patches:
|
||||
* lanserv: Fix an issue with authorization range checking
|
||||
* lanserv: Check some bounds on incoming messages
|
||||
- Remove mainlined patches:
|
||||
D OpenIPMI-autoconf-m4-ax-python-devel-serial25.patch
|
||||
D OpenIPMI-c99.patch
|
||||
- Update to version 2.0.36.4+git.c114912:
|
||||
* strings: Fix an incorrect string in sensor type 0x1f
|
||||
* lanserv: Check that message and negotiated authtypes are the same
|
||||
* Update some strings for newer IPMI standards
|
||||
* Fix error report in startup_set_sel_time
|
||||
* Move to version 2.0.36
|
||||
* lanserv: Fix an issue with authorization range checking
|
||||
* lanserv: Fix an issue logging an error on a message
|
||||
* include: Add a doc for the lifetime of ipmi_entity_get_fru()
|
||||
* Move to version 2.0.35
|
||||
* lanserv: Check some bounds on incoming messages
|
||||
* Create SECURITY.md
|
||||
* swig: Cast some values to get proper passing of values
|
||||
* sample: Fix an snprintf overflow issue
|
||||
* ui: Fix an snprintf overflow issue
|
||||
* Add github actions
|
||||
* cmdlang: Remove yet more dead code
|
||||
* swig: Remove a double free
|
||||
* ui: More print issues
|
||||
* sensor: Remove more dead code
|
||||
* swig: Fix more resource leaks
|
||||
* Finish up error updates
|
||||
* ui: Fix a ton of formatting errors
|
||||
* cmdlang: Remove some dead code
|
||||
* cmdlang: Remove some dead code
|
||||
* cmdlang: Remove an unneeded if
|
||||
* cmdlang: Remove an unnecessary loop
|
||||
* cmdlang: Remove some dead code
|
||||
* lanserv: Fix an invalid overlapping copy
|
||||
* lanserv: Add a missing break for watchdog handling
|
||||
* lanserv: Add a check for the picmg address controller not found
|
||||
* lanserv: Add a missing NULL pointer check
|
||||
* lanserv: Fix an error report
|
||||
* lanserv: Fix an unsigned compare issue
|
||||
* lanserv: Remove some dead code
|
||||
* lanserv: Fix reading persistance data
|
||||
* domain: Fix some various bugs
|
||||
* entity: Fix a ordering check issue
|
||||
* fru: Remove unnecessary check
|
||||
* smi: Remove some dead code
|
||||
* utils: Fix address comparison
|
||||
* fru: Fix record with possible NULL data
|
||||
* mc: Fix sel re-fetch
|
||||
* atca: Fix some various issues
|
||||
* oem_motorola_mxp: Fix some minor issues
|
||||
* control,sensor: Fix some string handling
|
||||
* sel: Add a missing NULL check
|
||||
* sample: Remove some dead code
|
||||
* sensor: Fix some wrong sizes
|
||||
* tcl: Fix an infinite loop
|
||||
* swig: Fix a wrong malloc size
|
||||
* lanserv: Fix a memory leak in sdrcomp
|
||||
* unix: Add missing unlock on an error handler
|
||||
* unix: Cast a variable to int from time()
|
||||
* swig: Fix issues with memory handling
|
||||
* Don't run perl tests in parallel
|
||||
* C type errors in the SWIG-generated Perl bindings
|
||||
* Move to version 2.0.34
|
||||
* swig:perl: Fix the tests
|
||||
* swig:perl: Add a way to print the test environment
|
||||
* lanserv: Allow zero to be specified for the port
|
||||
* lanserv: Return an error if sensor data is requested before ready
|
||||
* unix: Handle EAGAIN along with EINTR
|
||||
* ipmi_sim:sensor: Add the low 8 bits of discrete value to sensor reading
|
||||
* fix coredump when use ipmi_ui
|
||||
* Fix the name of global event support for sensors
|
||||
* Update configure.ac
|
||||
* Move to version 2.0.33
|
||||
* exec: fix race in symlink install
|
||||
* Make lan.conf and simulator startup file 600 permissions
|
||||
* Update the python m4 file
|
||||
* Avoid searching host library path
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 18 12:31:39 UTC 2024 - Martin Jambor <mjambor@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package OpenIPMI
|
||||
#
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,11 +16,6 @@
|
||||
#
|
||||
|
||||
|
||||
#Compat macro for new _fillupdir macro introduced in Nov 2017
|
||||
%if ! %{defined _fillupdir}
|
||||
%define _fillupdir %{_localstatedir}/adm/fillup-templates
|
||||
%endif
|
||||
|
||||
# IPMI.pdf build for devel package
|
||||
# It is not worth to build, but as I got it running I add it
|
||||
# how it worked for me in Tumbleweed, Leap 42.2 and 42.3 and SLE 15
|
||||
@@ -29,9 +24,12 @@
|
||||
%if 0%{?suse_version} < 1500
|
||||
%define doc_build 0
|
||||
%endif
|
||||
|
||||
#Compat macro for new _fillupdir macro introduced in Nov 2017
|
||||
%if ! %{defined _fillupdir}
|
||||
%define _fillupdir %{_localstatedir}/adm/fillup-templates
|
||||
%endif
|
||||
Name: OpenIPMI
|
||||
Version: 2.0.32.3+git.05faa36e
|
||||
Version: 2.0.36.56+git.0a3a991
|
||||
Release: 0
|
||||
Summary: Service processor access via IPMI
|
||||
License: LGPL-2.1-or-later
|
||||
@@ -49,13 +47,6 @@ Patch2: openipmi-tinfo.patch
|
||||
Patch3: OpenIMPI-add-libncurses.patch
|
||||
Patch4: fix_dia_version_detection.patch
|
||||
Patch5: use_python3_shebang
|
||||
# PATCH-FIX-UPSTREAM OpenIPMI-autoconf-m4-ax-python-devel-serial25.patch
|
||||
# replace autoconf script serial18 addtion by serial 25 capable of finding python3.10
|
||||
# retains upstream change https://sourceforge.net/p/openipmi/code/ci/53d2b36b58383d155e2410cae3b30975a92f417d
|
||||
Patch6: OpenIPMI-autoconf-m4-ax-python-devel-serial25.patch
|
||||
# Backport of upstream https://sourceforge.net/p/openipmi/patches/38/ to fix boo#1225871
|
||||
Patch7: OpenIPMI-c99.patch
|
||||
|
||||
BuildRequires: autoconf-archive
|
||||
BuildRequires: gd-devel
|
||||
BuildRequires: gdbm-devel
|
||||
@@ -79,6 +70,12 @@ BuildRequires: swig
|
||||
BuildRequires: systemd-rpm-macros
|
||||
BuildRequires: tcl-devel
|
||||
BuildRequires: tix
|
||||
Requires(post): %fillup_prereq
|
||||
Provides: ipmi_ui
|
||||
Provides: ipmicmd
|
||||
Provides: ipmilan
|
||||
%{?systemd_ordering}
|
||||
%{?perl_requires}
|
||||
%if 0%{?doc_build}
|
||||
BuildRequires: dia
|
||||
BuildRequires: ghostscript
|
||||
@@ -89,13 +86,6 @@ BuildRequires: texlive-latex
|
||||
BuildRequires: texlive-moreverb
|
||||
%endif
|
||||
|
||||
Requires(post): %fillup_prereq
|
||||
Provides: ipmi_ui
|
||||
Provides: ipmicmd
|
||||
Provides: ipmilan
|
||||
%{?systemd_ordering}
|
||||
%{?perl_requires}
|
||||
|
||||
%description
|
||||
OpenIPMI allows access to IPMI information on a server and to abstract it.
|
||||
|
||||
@@ -137,8 +127,8 @@ Group: System/Monitoring
|
||||
Requires: OpenIPMI
|
||||
Requires: python3-tk
|
||||
Requires: tix
|
||||
Provides: openipmigui
|
||||
Conflicts: OpenIPMI-python
|
||||
Provides: openipmigui
|
||||
|
||||
%description python3
|
||||
The Python parts provide an OpenIPMI Python library and a GUI, openipmigui,
|
||||
|
||||
1
_service
1
_service
@@ -2,6 +2,7 @@
|
||||
<service name="obs_scm" mode="localonly">
|
||||
<param name="url">https://github.com/cminyard/openipmi.git</param>
|
||||
<param name="scm">git</param>
|
||||
<!-- <param name="basename">OpenIPMI</param> -->
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="versionformat">@PARENT_TAG@.@TAG_OFFSET@+git.%h</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/cminyard/openipmi.git</param>
|
||||
<param name="changesrevision">05faa36e93eaf7e150bd43d7935e755b6e8ca617</param></service></servicedata>
|
||||
<param name="changesrevision">0a3a991cbcfb63a3529ed82991cd7f5336886758</param></service></servicedata>
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5fe3a9eb3bfb206a3a6977e9fbc032d78050812df7b6a476a468034749395502
|
||||
size 7294477
|
||||
BIN
openipmi-2.0.36.56+git.0a3a991.obscpio
LFS
Normal file
BIN
openipmi-2.0.36.56+git.0a3a991.obscpio
LFS
Normal file
Binary file not shown.
@@ -1,4 +1,4 @@
|
||||
name: openipmi
|
||||
version: 2.0.32.3+git.05faa36e
|
||||
mtime: 1649625713
|
||||
commit: 05faa36e93eaf7e150bd43d7935e755b6e8ca617
|
||||
version: 2.0.36.56+git.0a3a991
|
||||
mtime: 1743813769
|
||||
commit: 0a3a991cbcfb63a3529ed82991cd7f5336886758
|
||||
|
||||
Reference in New Issue
Block a user