Browse Source

sysstat: update to 12.7.5

Waldemar Brodkorb 2 years ago
parent
commit
1bfee65f68
2 changed files with 7 additions and 82 deletions
  1. 7 3
      package/sysstat/Makefile
  2. 0 79
      package/sysstat/patches/patch-Makefile

+ 7 - 3
package/sysstat/Makefile

@@ -4,17 +4,21 @@
 include ${ADK_TOPDIR}/rules.mk
 
 PKG_NAME:=		sysstat
-PKG_VERSION:=		11.4.4
+PKG_VERSION:=		12.7.5
 PKG_RELEASE:=		1
-PKG_HASH:=		6585f08e24347d2d6462aee6ef97e80fe4cc869605193184500df0f80fa61cc8
+PKG_HASH:=		a4d30e37c0c894214b941b51184723e19d492118c946cfdeac74b6d1f0068016
 PKG_DESCR:=		system monitoring and performance analysis
 PKG_SECTION:=		sys/utils
-PKG_SITES:=		http://pagesperso-orange.fr/sebastien.godard/
+PKG_SITES:=		https://github.com/sysstat/sysstat/archive/refs/tags/
+
+DISTFILES:=		v$(PKG_VERSION).tar.gz
 
 include ${ADK_TOPDIR}/mk/package.mk
 
 $(eval $(call PKG_template,SYSSTAT,sysstat,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
 
+CONFIGURE_ENV+=		sa_lib_dir=/usr/lib/sa
+
 sysstat-install:
 	${INSTALL_DIR} ${IDIR_SYSSTAT}/usr/lib/sa
 	${INSTALL_DIR} ${IDIR_SYSSTAT}/usr/bin

+ 0 - 79
package/sysstat/patches/patch-Makefile

@@ -1,79 +0,0 @@
-$Id$
-
-	removes manpages, some chown-stuff and the cron-stuff (no need for it)
-	fixes cross-compilation
-
---- sysstat-7.0.3.orig/Makefile	Sun Oct 22 16:27:03 2006
-+++ sysstat-7.0.3/Makefile	Fri May 18 18:31:06 2007
-@@ -7,7 +7,7 @@ VERSION = 7.0.3
- include build/CONFIG
- 
- # Compiler to use
--CC = gcc
-+CC ?= gcc
- # Other commands
- SED = sed
- CHMOD = chmod
-@@ -37,8 +37,9 @@ NLS_DIR = $(PREFIX)/share/locale
- SYSCONFIG_DIR = /etc/sysconfig
- 
- # Compiler flags
--CFLAGS = -Wall -Wstrict-prototypes -pipe -O2 -fno-strength-reduce
--LFLAGS = -s
-+CFLAGS ?= -O2 -pipe
-+CFLAGS += -Wall -Wstrict-prototypes -fno-strength-reduce
-+LFLAGS = -s ${LDFLAGS}
- # SAS_DFLAGS may also contain SMP_RACE definition
- SAS_DFLAGS += -DSA_DIR=\"$(SA_DIR)\" -DSADC_PATH=\"$(SADC_PATH)\"
- 
-@@ -179,10 +180,8 @@ endif
- .PHONY: clean distclean config install install_base install_all uninstall \
- 	uninstall_base uninstall_all dist bdist
- 
--install_base: all man/sadc.8 man/sar.1 man/sadf.1 man/sa1.8 man/sa2.8 man/iostat.1
-+install_base: all 
- 	mkdir -p $(DESTDIR)$(SA_LIB_DIR)
--	mkdir -p $(DESTDIR)$(MAN1_DIR)
--	mkdir -p $(DESTDIR)$(MAN8_DIR)
- 	mkdir -p $(DESTDIR)$(SA_DIR)
- ifeq ($(CLEAN_SA_DIR),y)
- 	rm -f $(DESTDIR)$(SA_DIR)/sa??
-@@ -191,19 +190,12 @@ endif
- 	mkdir -p $(DESTDIR)$(DOC_DIR)
- 	mkdir -p $(DESTDIR)$(SYSCONFIG_DIR)
- 	install -m 755 sa1 $(DESTDIR)$(SA_LIB_DIR)
--	install -m 644 $(MANGRPARG) man/sa1.8 $(DESTDIR)$(MAN8_DIR)
- 	install -m 755 sa2 $(DESTDIR)$(SA_LIB_DIR)
--	install -m 644 $(MANGRPARG) man/sa2.8 $(DESTDIR)$(MAN8_DIR)
- 	install -m 755 sadc $(DESTDIR)$(SA_LIB_DIR)
--	install -m 644 $(MANGRPARG) man/sadc.8 $(DESTDIR)$(MAN8_DIR)
- 	install -m 755 sar $(DESTDIR)$(BIN_DIR)
--	install -m 644 $(MANGRPARG) man/sar.1 $(DESTDIR)$(MAN1_DIR)
- 	install -m 755 sadf $(DESTDIR)$(BIN_DIR)
--	install -m 644 $(MANGRPARG) man/sadf.1 $(DESTDIR)$(MAN1_DIR)
- 	install -m 755 iostat $(DESTDIR)$(BIN_DIR)
--	install -m 644 $(MANGRPARG) man/iostat.1 $(DESTDIR)$(MAN1_DIR)
- 	install -m 755 mpstat $(DESTDIR)$(BIN_DIR)
--	install -m 644 $(MANGRPARG) man/mpstat.1 $(DESTDIR)$(MAN1_DIR)
- 	install -m 644 sysstat.ioconf $(DESTDIR)$(SYSCONFIG_DIR);
- 	install -m 644 CHANGES $(DESTDIR)$(DOC_DIR)
- 	install -m 644 COPYING $(DESTDIR)$(DOC_DIR)
-@@ -243,18 +235,6 @@ ifdef REQUIRE_NLS
- endif
- 
- install_all: install_base
--	$(CHOWN) $(CRON_OWNER) $(DESTDIR)$(SA_DIR)
--	if [ -d $(DESTDIR)/etc/cron.d ]; then \
--	   install -m 644 sysstat.crond $(DESTDIR)/etc/cron.d/sysstat; \
--	elif [ -d $(DESTDIR)/etc/cron.hourly -a -d $(DESTDIR)/etc/cron.daily ]; then \
--	   install -m 755 sysstat.cron.hourly $(DESTDIR)/etc/cron.hourly/sysstat; \
--	   install -m 755 sysstat.cron.daily $(DESTDIR)/etc/cron.daily/sysstat; \
--	else \
--	   su $(CRON_OWNER) -c "crontab -l > /tmp/crontab-$(CRON_OWNER).save"; \
--	   $(CP) -a /tmp/crontab-$(CRON_OWNER).save ./crontab-$(CRON_OWNER).`date '+%Y%m%d.%H%M%S'`.save; \
--	   echo "USER PREVIOUS CRONTAB SAVED IN CURRENT DIRECTORY (USING .save SUFFIX)."; \
--	   su $(CRON_OWNER) -c "crontab crontab"; \
--	fi
- 	if [ -d $(DESTDIR)$(INIT_DIR) ]; then \
- 	   install -m 755 sysstat $(DESTDIR)$(INIT_DIR)/sysstat; \
- 	   if [ -x $(CHKCONFIG) ]; then \