man: Update to version 2.13.0
Commit Message
- Update from version 2.12.0 to 2.13.0
- Update of rootfile
- Changelog
2.13.0
Compatibility notes:
* Drop support for versions of groff before 1.21 (released on 2010-12-31).
Fixes:
* Fix `man-suffixed-extension` test failure when not using the GNU
hierarchy organization.
* Fix `-Wmissing-variable-declarations` warnings with GCC 14.
* Fix `-Wflex-array-member-not-at-end` warning with GCC 14.
Improvements:
* Upgrade to Gnulib `stable-202407`.
* Support running the test suite against an installed package; this is
useful for systems such as Debian's autopkgtest framework.
2.12.1
Fixes:
* Fix excessive cleanup of `/var/cache/man` by `systemd-tmpfiles`.
Improvements:
* `man` matches the display width more accurately to the configured width.
* Upgrade to Gnulib `stable-202401`.
* Mention `groff`'s `pdf` device in `man(1)`.
* Speed up `seccomp` filter slightly.
* Document how to format pages using italic rather than underlined text.
Compatibility notes:
* Remove the obsolete `chconfig` tool for converting man-db configuration
files to the FHS. This transition took place almost 25 years ago (at
least in Debian), so it's not worth keeping it around now.
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
config/rootfiles/common/man | 5 +++--
lfs/man | 25 ++++++++++++-------------
2 files changed, 15 insertions(+), 15 deletions(-)
@@ -8,10 +8,10 @@
#usr/bin/manpath
#usr/bin/whatis
#usr/lib/man-db
-#usr/lib/man-db/libman-2.12.0.so
+#usr/lib/man-db/libman-2.13.0.so
#usr/lib/man-db/libman.la
#usr/lib/man-db/libman.so
-#usr/lib/man-db/libmandb-2.12.0.so
+#usr/lib/man-db/libmandb-2.13.0.so
#usr/lib/man-db/libmandb.la
#usr/lib/man-db/libmandb.so
#usr/libexec/man-db
@@ -81,6 +81,7 @@
#usr/share/locale/tr/LC_MESSAGES/man-db-gnulib.mo
#usr/share/locale/tr/LC_MESSAGES/man-db.mo
#usr/share/locale/uk/LC_MESSAGES/man-db-gnulib.mo
+#usr/share/locale/uk/LC_MESSAGES/man-db.mo
#usr/share/locale/vi/LC_MESSAGES/man-db-gnulib.mo
#usr/share/locale/vi/LC_MESSAGES/man-db.mo
#usr/share/locale/zh_CN/LC_MESSAGES/man-db-gnulib.mo
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2023 IPFire Team <info@ipfire.org> #
+# Copyright (C) 2007-2024 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -24,7 +24,7 @@
include Config
-VER = 2.12.0
+VER = 2.13.0
THISAPP = man-db-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = a6258c1fc9cd81be5d288298660f5b9bda22d726ef98dd5c0a1998809a32391f7244be6897ee8e03483e705a426d6a59d442de3dc2e84f45500daa825ac639db
+$(DL_FILE)_BLAKE2 = 7ce91a7abc6d3bbd92d4707f13caacd8ab5caee0502a2b115f8aa53f4d38df05b0e03346f70584618cce6f5457113e826828a02b847bff57abd6ba6ec1b2d407
install : $(TARGET)
@@ -71,17 +71,16 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
$(UPDATE_AUTOMAKE)
-
cd $(DIR_APP) && ./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --disable-setuid \
- --enable-cache-owner=bin \
- --with-browser=/usr/bin/lynx \
- --with-vgrind=/usr/bin/vgrind \
- --with-grap=/usr/bin/grap \
- --with-systemdtmpfilesdir= \
- --with-systemdsystemunitdir=
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --disable-setuid \
+ --enable-cache-owner=bin \
+ --with-browser=/usr/bin/lynx \
+ --with-vgrind=/usr/bin/vgrind \
+ --with-grap=/usr/bin/grap \
+ --with-systemdtmpfilesdir= \
+ --with-systemdsystemunitdir=
cd $(DIR_APP) && make
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)