mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 15:33:28 +08:00
package/freeipmi: bump to version 1.6.11
Drop patch (already in version) and so also drop autoreconf https://lists.gnu.org/archive/html/freeipmi-announce/2023-06/msg00000.html Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
e1b2cd5835
commit
60e899bfa0
@ -439,7 +439,6 @@ package/flex/0003-build-make-it-possible-to-disable-the-build-of-the-d.patch Ups
|
||||
package/flite/0001-fix-alsa-static.patch Upstream
|
||||
package/fltk/0001-disable-tests.patch Upstream
|
||||
package/fluxbox/0001-fixes-bug-1138.patch Upstream
|
||||
package/freeipmi/0001-add-disable-doc.patch Upstream
|
||||
package/freeradius-client/0001-fix-for-nettle.patch Upstream
|
||||
package/freerdp/0001-Fix-variable-declaration-in-loop.patch Upstream
|
||||
package/freerdp/0002-Fixed-variable-declaration-in-loop.patch Upstream
|
||||
|
@ -1,72 +0,0 @@
|
||||
From 5324c88632c021a87251370b03067d857e9a9892 Mon Sep 17 00:00:00 2001
|
||||
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
Date: Wed, 2 Nov 2022 19:02:42 +0100
|
||||
Subject: [PATCH] add --disable-doc
|
||||
|
||||
Allow the user to disable documentation through --disable-doc to avoid
|
||||
the following build failure without makeinfo:
|
||||
|
||||
/home/buildroot/autobuild/instance-0/output-1/build/freeipmi-1.6.10/config/missing: line 81: makeinfo: command not found
|
||||
WARNING: 'makeinfo' is missing on your system.
|
||||
You should only need it if you modified a '.texi' file, or
|
||||
any other file indirectly affecting the aspect of the manual.
|
||||
You might want to install the Texinfo package:
|
||||
<https://www.gnu.org/software/texinfo/>
|
||||
The spurious makeinfo call might also be the consequence of
|
||||
using a buggy 'make' (AIX, DU, IRIX), in which case you might
|
||||
want to install GNU make:
|
||||
<https://www.gnu.org/software/make/>
|
||||
Makefile:442: recipe for target 'freeipmi-faq.info' failed
|
||||
|
||||
Fixes:
|
||||
- http://autobuild.buildroot.org/results/ac6ff1c746a354f885fc1674d10e7bff9e536134
|
||||
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
[Upstream status: https://github.com/chu11/freeipmi-mirror/pull/61]
|
||||
---
|
||||
Makefile.am | 6 +++++-
|
||||
configure.ac | 4 ++++
|
||||
2 files changed, 9 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/Makefile.am b/Makefile.am
|
||||
index cf757f634..d74952e30 100644
|
||||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
@@ -3,7 +3,6 @@
|
||||
ACLOCAL_AMFLAGS = -I config
|
||||
|
||||
SUBDIRS = \
|
||||
- doc \
|
||||
etc \
|
||||
common \
|
||||
libfreeipmi \
|
||||
@@ -33,6 +32,11 @@ SUBDIRS = \
|
||||
rmcpping \
|
||||
contrib
|
||||
|
||||
+if ENABLE_DOC
|
||||
+SUBDIRS += \
|
||||
+ doc
|
||||
+endif
|
||||
+
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 54fdf6367..7a94b958b 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -341,6 +341,10 @@ else
|
||||
fi
|
||||
AC_SUBST(WITH_DEBUG)
|
||||
|
||||
+AC_ARG_ENABLE(doc,
|
||||
+ AC_HELP_STRING([--disable-doc], [turn off documentation]))
|
||||
+AM_CONDITIONAL(ENABLE_DOC, test "$enable_doc" != "no")
|
||||
+
|
||||
dnl Allow advanced developers to compile with raw dumping
|
||||
AC_ARG_ENABLE(rawdumps,
|
||||
AC_HELP_STRING([--enable-rawdumps], [output raw packet dumps when debugging]))
|
||||
--
|
||||
2.35.1
|
||||
|
@ -1,5 +1,5 @@
|
||||
# Locally computed:
|
||||
sha256 fce4a1e401b6189c103d2b1203261d0bfbf45985c6f3fa44c51b186b13fe7a7d freeipmi-1.6.10.tar.gz
|
||||
sha256 65fbd6910fc010457748695414f27c5755b4e8d75734221221f3858c6230a897 freeipmi-1.6.11.tar.gz
|
||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING
|
||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING.bmc-watchdog
|
||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING.ipmiconsole
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
FREEIPMI_VERSION = 1.6.10
|
||||
FREEIPMI_VERSION = 1.6.11
|
||||
FREEIPMI_SITE = https://ftp.gnu.org/gnu/freeipmi
|
||||
FREEIPMI_LICENSE = GPL-3.0+, BSD-like (sunbmc)
|
||||
FREEIPMI_LICENSE_FILES = \
|
||||
@ -12,8 +12,6 @@ FREEIPMI_LICENSE_FILES = \
|
||||
COPYING.ipmidetect COPYING.ipmi-fru COPYING.ipmimonitoring \
|
||||
COPYING.ipmiping COPYING.ipmipower COPYING.ipmiseld COPYING.pstdout \
|
||||
COPYING.sunbmc COPYING.ZRESEARCH
|
||||
# We're patching configure.ac
|
||||
FREEIPMI_AUTORECONF = YES
|
||||
FREEIPMI_DEPENDENCIES = host-pkgconf
|
||||
FREEIPMI_INSTALL_STAGING = YES
|
||||
# Disable checking for /dev/urandom and /dev/random through AC_CHECK_FILE
|
||||
|
Loading…
Reference in New Issue
Block a user