sysstat: Update to version 12.7.9
Commit Message
- Update from version 12.7.6 to 12.7.9
- Update of rootfile
- Changelog
12.7.9
* sar: Fix pgsteal/s double value with recent kernels.
* Allow Truecolor (RGB) SGR codes in sysstat commands output.
* Don't display newline character within SGR-formatted text.
* Rework several functions based on Mistral AI Le Chat's suggestions.
* [Jun Lyu]: Fix missing dependencies in Makefile.in.
* mpstat: No longer call get_HZ() function.
* sar: Close file descriptors on fork() error.
* Fix version number in sysstat.xsd document.
* Check passed args in some functions.
* common.c: Include ioconf.h header file only if SOURCE_SADC is
defined.
* Mark various variables as constant.
* Improve code clarity and readability.
* Exit if calling sysconf() function fails.
* Create format strings using string's real max value.
* simtest: Fix gcc warning in legacy sar version.
* Update sar and sadf manual page.
* Update FAQ.
* NLS: Translations updated.
* Update non regression tests.
12.7.8
* sar/sadf: Add new metric kbshmem.
* sar/sadf: Now compute used memory as total memory - available memory.
* sadf: Set availablekb to frmkb during conversion.
* cifsiostat, iostat, mpstat, tapestat: Add new option -U to display
timestamps in seconds since the Epoch.
* Trap SIGTERM with all sysstat commands.
* mpstat: Go to next line when Ctrl/C is pressed.
* Add support for out-of-tree building and testing.
* sar: A_PWR_BAT: Fix wrong size used in memory initialization.
* Makefile.in: Update dependencies for install_man target.
* Makefile.in: Remove unused TFLAGS variable.
* Makefile.in: Remove old references to nfsiostat.
* DTD and XSD documents updated.
* NLS translations updated.
* sar, mpstat, iostat, cifsiostat and tapestat manual pages updated.
* Various cosmetic changes in code and Makefile.
* do_test: Add test target for out-of-tree build.
* systest: Explicitly set signal to SIGINT.
* Non regression tests: Remove root symlink in tests directory.
* Non regression tests updated.
12.7.7
* Rework overflow check function.
* pidstat: Add JSON output format (option "-o JSON").
* [Siddhi Katage]: pidstat: Fix bogus %usr values in pidstat output.
* pidstat: Free structures before exiting.
* pidstat: Make sure interval is specified when option -e is used.
* pidstat: Create separate functions to display data for current task.
* pidstat: Various cosmetic changes.
* cifsiostat: Add JSON output format (option "-o JSON").
* cifsiostat: Display error message when no CIFS fs are found.
* cifsiostat: Add new option -y to tell cifsiostat to omit the first
report with statistics since system restart.
* tapestat: Add JSON output format (option "-o JSON").
* tapestat: Set handler for SIGALRM in rw_tape_stat_loop() function.
* tapestat: Call write_sample_timestamp() to display timestamp.
* mpstat: Properly terminate JSON output when ^C entered on first
interval.
* iostat: Remove extra blank line when omitting first report.
* cifsiostat, tapestat and pidstat manual pages updated.
* Use the binary units (kibibytes, mebibytes...) instead of kilobytes,
megabytes... in all manual pages.
* FAQ updated.
* [Peter Portante]: Slight changes to compile on Mac OS X.
* [Peter Portante]: Add missing "void" parameter to
init_custom_color_palette() function.
* Use xflags variable for options used by multiple commands.
* Move write_sample_timestamp() function to common.c file.
* Update headers files included.
* Add new non regression tests.
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
config/rootfiles/common/sysstat | 12 ++++++------
lfs/sysstat | 9 +++++----
2 files changed, 11 insertions(+), 10 deletions(-)
@@ -11,12 +11,12 @@ usr/bin/sar
usr/lib/sa/sa1
usr/lib/sa/sa2
usr/lib/sa/sadc
-#usr/share/doc/sysstat-12.7.6
-#usr/share/doc/sysstat-12.7.6/CHANGES
-#usr/share/doc/sysstat-12.7.6/COPYING
-#usr/share/doc/sysstat-12.7.6/CREDITS
-#usr/share/doc/sysstat-12.7.6/FAQ.md
-#usr/share/doc/sysstat-12.7.6/README.md
+#usr/share/doc/sysstat-12.7.9
+#usr/share/doc/sysstat-12.7.9/CHANGES
+#usr/share/doc/sysstat-12.7.9/COPYING
+#usr/share/doc/sysstat-12.7.9/CREDITS
+#usr/share/doc/sysstat-12.7.9/FAQ.md
+#usr/share/doc/sysstat-12.7.9/README.md
#usr/share/locale/af/LC_MESSAGES/sysstat.mo
#usr/share/locale/be/LC_MESSAGES/sysstat.mo
#usr/share/locale/cs/LC_MESSAGES/sysstat.mo
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2024 IPFire Team <info@ipfire.org> #
+# Copyright (C) 2007-2026 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 = 12.7.6
+VER = 12.7.9
THISAPP = sysstat-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 5cb015dfad2b26a922862416d779ac26df18df0b4689ae1ad1b9f3dc3922dd577741bf019ebc979154d7bc708dbb7e9d21ce4c2e2c2a4896badf3847c06e82a7
+$(DL_FILE)_BLAKE2 = 8bbe38b98d85c8193578b8f5f5bb5d6296564e16d5af793d4bae4ed2b5de44b041e2651d247b612910ac8d033574a2e7f651b0f4dfacbcae1dc2146ecebd6094
install : $(TARGET)
@@ -70,7 +70,8 @@ $(subst %,%_BLAKE2,$(objects)) :
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
- cd $(DIR_APP) && ./configure --prefix=/usr
+ cd $(DIR_APP) && ./configure \
+ --prefix=/usr
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)