public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] man: Update to version 2.13.0
Date: Wed, 20 Nov 2024 22:49:04 +0100	[thread overview]
Message-ID: <20241120214909.2717383-2-adolf.belka@ipfire.org> (raw)
In-Reply-To: <20241120214909.2717383-1-adolf.belka@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 4784 bytes --]

- 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(a)ipfire.org>
---
 config/rootfiles/common/man |  5 +++--
 lfs/man                     | 25 ++++++++++++-------------
 2 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/config/rootfiles/common/man b/config/rootfiles/common/man
index 948cd9d4c..a761880b2 100644
--- a/config/rootfiles/common/man
+++ b/config/rootfiles/common/man
@@ -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
diff --git a/lfs/man b/lfs/man
index 9a5ea7675..3b5c50d11 100644
--- a/lfs/man
+++ b/lfs/man
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2023  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2024  IPFire Team  <info(a)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)
-- 
2.47.0


  reply	other threads:[~2024-11-20 21:49 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-20 21:49 [PATCH] lsof: Update to version 4.99.4 Adolf Belka
2024-11-20 21:49 ` Adolf Belka [this message]
2024-11-20 21:49 ` [PATCH] memtest: Update to version 7.20 Adolf Belka
2024-11-20 21:49 ` [PATCH] meson: Update to version 1.6.0 Adolf Belka
2024-11-20 21:49 ` [PATCH] oath-toolkit: Update to version 2.6.12 Adolf Belka
2024-11-20 21:49 ` [PATCH] openldap: Update to version 2.6.8 Adolf Belka
2024-11-20 21:49 ` [PATCH] openssl: Update to version 3.4.0 Adolf Belka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20241120214909.2717383-2-adolf.belka@ipfire.org \
    --to=adolf.belka@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox