[arch-commits] Commit in sysstat/repos/community-x86_64 (4 files)

Christian Rebischke shibumi at archlinux.org
Sat Jan 27 01:29:54 UTC 2018


    Date: Saturday, January 27, 2018 @ 01:29:52
  Author: shibumi
Revision: 287356

archrelease: copy trunk to community-x86_64

Added:
  sysstat/repos/community-x86_64/PKGBUILD
    (from rev 287355, sysstat/trunk/PKGBUILD)
  sysstat/repos/community-x86_64/lib64-fix.patch
    (from rev 287355, sysstat/trunk/lib64-fix.patch)
Deleted:
  sysstat/repos/community-x86_64/PKGBUILD
  sysstat/repos/community-x86_64/lib64-fix.patch

-----------------+
 PKGBUILD        |   96 +++++++++++++++++++++++++++---------------------------
 lib64-fix.patch |   50 ++++++++++++++--------------
 2 files changed, 73 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-01-27 01:29:40 UTC (rev 287355)
+++ PKGBUILD	2018-01-27 01:29:52 UTC (rev 287356)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Martin Devera <devik at cdi.cz>
-
-pkgname=sysstat
-pkgver=11.4.6
-pkgrel=1
-pkgdesc="a collection of performance monitoring tools (iostat,isag,mpstat,pidstat,sadf,sar)"
-arch=('i686' '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)
-sha256sums=('2bc1d98572169a901868afdf0c56f98580191353ba3bc5c7ce6efd12e7a7fa2e'
-            'e81090f78fda0aed9e750bea5a3a0b7ef76b44ade558ed569827ffdb5cb62a89')
-
-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 \
-	--enable-yesterday \
-	--mandir=/usr/share/man \
-	--enable-install-isag \
-	--enable-install-cron \
-	--enable-copy-only \
-	--disable-man-group
-  make -j1
-}
-
-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-x86_64/PKGBUILD (from rev 287355, sysstat/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-01-27 01:29:52 UTC (rev 287356)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Martin Devera <devik at cdi.cz>
+
+pkgname=sysstat
+pkgver=11.6.2
+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=('8f117601272d3d9b887c454d610d06f014b76902cdc68f6a11e693bdc58bb7ad1cac1006681774b3e6173f3cadd9b1f36e126d1d7501f0910b092d125d1c68ce'
+            '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 \
+	--enable-yesterday \
+	--mandir=/usr/share/man \
+	--enable-install-isag \
+	--enable-install-cron \
+	--enable-copy-only \
+	--disable-man-group
+  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*
+}

Deleted: lib64-fix.patch
===================================================================
--- lib64-fix.patch	2018-01-27 01:29:40 UTC (rev 287355)
+++ lib64-fix.patch	2018-01-27 01:29:52 UTC (rev 287356)
@@ -1,25 +0,0 @@
-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])

Copied: sysstat/repos/community-x86_64/lib64-fix.patch (from rev 287355, sysstat/trunk/lib64-fix.patch)
===================================================================
--- lib64-fix.patch	                        (rev 0)
+++ lib64-fix.patch	2018-01-27 01:29:52 UTC (rev 287356)
@@ -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