[arch-commits] Commit in sysstat/repos (3 files)
Anatol Pomozov
anatolik at gemini.archlinux.org
Fri Dec 10 17:27:17 UTC 2021
Date: Friday, December 10, 2021 @ 17:27:17
Author: anatolik
Revision: 1068125
archrelease: copy trunk to community-testing-x86_64
Added:
sysstat/repos/community-testing-x86_64/
sysstat/repos/community-testing-x86_64/PKGBUILD
(from rev 1068124, sysstat/trunk/PKGBUILD)
sysstat/repos/community-testing-x86_64/lib64-fix.patch
(from rev 1068124, sysstat/trunk/lib64-fix.patch)
-----------------+
PKGBUILD | 47 +++++++++++++++++++++++++++++++++++++++++++++++
lib64-fix.patch | 25 +++++++++++++++++++++++++
2 files changed, 72 insertions(+)
Copied: sysstat/repos/community-testing-x86_64/PKGBUILD (from rev 1068124, sysstat/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2021-12-10 17:27:17 UTC (rev 1068125)
@@ -0,0 +1,47 @@
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Martin Devera <devik at cdi.cz>
+
+pkgname=sysstat
+pkgver=12.5.5
+pkgrel=1
+pkgdesc="a collection of performance monitoring tools (iostat,isag,mpstat,pidstat,sadf,sar)"
+arch=('x86_64')
+url="http://pagesperso-orange.fr/sebastien.godard/"
+license=('GPL')
+depends=('lm_sensors')
+makedepends=('systemd')
+optdepends=('tk: to use isag'
+ 'gnuplot: to use isag')
+options=('zipman')
+backup=('etc/conf.d/sysstat'
+ 'etc/conf.d/sysstat.ioconf')
+source=("http://pagesperso-orange.fr/sebastien.godard/${pkgname}-${pkgver}.tar.xz"
+ 'lib64-fix.patch')
+sha512sums=('1a51f4942d7e1752c452d1d4dbd6a1034d5a5d42be536826ea5b83cd911ab4c1f4d64fd54f569c0f7b4fd5480dcc04b16e41172401612bf4069179b78335d14d'
+ '46ec3eebb12232d30cddba60f16a57cd8d625513cf002d9e501797a6660f9da9cb4116ec81d0c292644fb6d91eb05c7be458da667260b238bcfef532a020b114')
+
+prepare() {
+ cd "${srcdir}"/"${pkgname}"-"${pkgver}"
+ patch -p1 < "${srcdir}/lib64-fix.patch"
+ autoreconf
+}
+
+build() {
+ cd "${srcdir}"/"${pkgname}"-"${pkgver}"
+ conf_dir=/etc/conf.d ./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --enable-install-cron \
+ --enable-copy-only \
+ --disable-compress-manpg
+ # patch makefile for FULL RELRO builds
+ sed -e 's|CFLAGS = |CFLAGS += \$(CPPFLAGS) |' -e 's|LFLAGS = |LFLAGS = $(LDFLAGS) |' -i Makefile
+ make
+}
+
+package() {
+ cd "${srcdir}"/"${pkgname}"-"${pkgver}"
+ mkdir -p "${pkgdir}"/usr/lib/systemd/system
+ make DESTDIR="${pkgdir}" install
+ chown -R root:root "${pkgdir}"
+ rm -rf "${pkgdir}"/etc/rc*
+}
Copied: sysstat/repos/community-testing-x86_64/lib64-fix.patch (from rev 1068124, sysstat/trunk/lib64-fix.patch)
===================================================================
--- community-testing-x86_64/lib64-fix.patch (rev 0)
+++ community-testing-x86_64/lib64-fix.patch 2021-12-10 17:27:17 UTC (rev 1068125)
@@ -0,0 +1,25 @@
+diff -wbBur sysstat-11.1.3.org/configure.in sysstat-11.1.3/configure.in
+--- sysstat-11.1.3.org/configure.in 2015-02-13 17:05:44.000000000 +0300
++++ sysstat-11.1.3/configure.in 2015-02-16 13:25:26.201405593 +0300
+@@ -209,21 +209,6 @@
+ fi
+
+ SADC_DIR=$AuxPrefix/lib
+-if test -d $AuxPrefix/lib64; then
+- # Verify that this OS is really 64 bit
+- BITS=$(getconf LONG_BIT 2>/dev/null)
+- if test $? = 0; then
+- if test $BITS = 64; then
+- SADC_DIR=$AuxPrefix/lib64
+- fi
+- else
+- # Fallback: look for lm (long mode) flag to know if CPU is 64 bit
+- grep " lm " /proc/cpuinfo >/dev/null 2>&1
+- if test $? = 0; then
+- SADC_DIR=$AuxPrefix/lib64
+- fi
+- fi
+-fi
+
+ AC_MSG_CHECKING(sadc directory)
+ AC_ARG_VAR([sa_lib_dir],[sadc directory])
More information about the arch-commits
mailing list