[arch-commits] Commit in lm_sensors/repos/extra-x86_64 (5 files)

2018-05-26 Thread Antonio Rojas via arch-commits
Date: Saturday, May 26, 2018 @ 13:29:46
  Author: arojas
Revision: 325024

archrelease: copy trunk to extra-x86_64

Added:
  lm_sensors/repos/extra-x86_64/PKGBUILD
(from rev 325023, lm_sensors/trunk/PKGBUILD)
  lm_sensors/repos/extra-x86_64/healthd
(from rev 325023, lm_sensors/trunk/healthd)
  lm_sensors/repos/extra-x86_64/healthd.conf
(from rev 325023, lm_sensors/trunk/healthd.conf)
  lm_sensors/repos/extra-x86_64/healthd.service
(from rev 325023, lm_sensors/trunk/healthd.service)
  lm_sensors/repos/extra-x86_64/sensord.conf
(from rev 325023, lm_sensors/trunk/sensord.conf)

-+
 PKGBUILD|   47 +++
 healthd |   53 +
 healthd.conf|   17 +
 healthd.service |9 +
 sensord.conf|9 +
 5 files changed, 135 insertions(+)

Copied: lm_sensors/repos/extra-x86_64/PKGBUILD (from rev 325023, 
lm_sensors/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-05-26 13:29:46 UTC (rev 325024)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=lm_sensors
+pkgver=3.4.0
+pkgrel=4
+pkgdesc="Collection of user space tools for general SMBus access and hardware 
monitoring"
+arch=('x86_64')
+url="https://hwmon.wiki.kernel.org/lm_sensors;
+license=('GPL' 'LGPL')
+depends=('perl')
+makedepends=('rrdtool')
+optdepends=('rrdtool: for logging with sensord')
+backup=('etc/sensors3.conf' 'etc/healthd.conf' 'etc/conf.d/sensord')
+source=($pkgname-$pkgver::https://github.com/groeck/lm-sensors/archive/V${pkgver//\./-}.tar.gz
+   healthd healthd.conf healthd.service sensord.conf)
+sha256sums=('e334c1c2b06f7290e3e66bdae330a5d36054701ffd47a5dde7a06f9a7402cb4e'
+'0ac9afb2a9155dd74ab393756ed552cd542dde1081149beb2ab4ec7ff55b8f4a'
+'5d17a366b175cf9cb4bb0115c030d4b8d91231546f713784a74935b6e533da9f'
+'2638cd363e60f8d36bcac468f414a6ba29a1b5599f40fc651ca953858c8429d7'
+'23bebef4c250f8c0aaba2c75fd3d2c8ee9473cc91a342161a9f5b3a34ddfa9e5')
+validpgpkeys=('7CA69F4460F1BDC41FD2C858A5526B9BB3CD4E6A')
+
+prepare() {
+  cd ${pkgname/_/-}-${pkgver//\./-}
+  sed -i 's|/etc/sysconfig|/etc/conf.d|' 
prog/{detect/sensors-detect,init/{sensord,lm_sensors}.service}
+  sed -i 's/EnvironmentFile=/EnvironmentFile=-/' prog/init/lm_sensors.service
+}
+
+build() {
+  cd ${pkgname/_/-}-${pkgver//\./-}
+  make PREFIX=/usr
+}
+
+package() {
+  cd ${pkgname/_/-}-${pkgver//\./-}
+  make PROG_EXTRA=sensord BUILD_STATIC_LIB=0 \
+PREFIX=/usr SBINDIR=/usr/bin MANDIR=/usr/share/man DESTDIR="${pkgdir}" 
install
+
+  install -D -m755 "${srcdir}/healthd" "${pkgdir}/usr/bin/healthd"
+
+  install -D -m644 "${srcdir}/healthd.conf" "${pkgdir}/etc/healthd.conf"
+  install -D -m644 "${srcdir}/sensord.conf" "${pkgdir}/etc/conf.d/sensord"
+ 
+  install -D -m644 "${srcdir}/healthd.service" 
"${pkgdir}/usr/lib/systemd/system/healthd.service"
+  install -D -m644 prog/init/*.service "${pkgdir}/usr/lib/systemd/system/"
+}

Copied: lm_sensors/repos/extra-x86_64/healthd (from rev 325023, 
lm_sensors/trunk/healthd)
===
--- healthd (rev 0)
+++ healthd 2018-05-26 13:29:46 UTC (rev 325024)
@@ -0,0 +1,53 @@
+#!/bin/bash
+
+#
+# /usr/bin/healthd
+#
+
+. /etc/healthd.conf
+
+cmd="${ALARM_CMD}"
+addr="${ADMIN_EMAIL}"
+slp="${ALARM_SLEEP}"
+sensors="/usr/bin/sensors"
+
+
+while [ $# -gt 0 ] ; do
+   case "${1}" in
+   -c ) cmd="${2}" ; shift 2 ;;
+   -m ) addr="${2}" ; shift 2 ;;
+   -s ) slp="${2}" ; shift 2 ;;
+   *  ) shift 1 ;;
+   esac
+done
+
+case "${ALARM_RESET}" in
+   yes) /usr/bin/sensors > /dev/null
+   ;;
+no) true
+   ;;
+esac
+
+[ -n "${cmd}" ] && [ -n "$( which -- "${cmd%% *}" )" ] || \
+   [ -n "${addr}" ] || exit 1
+
+[ "${slp}" -ge 2 ] || slp=600
+
+while true ; do
+   sleep 15
+   message="$( $sensors )"
+   case "$message" in
+   ''  ) message='Could not get any sensor values !' ;;
+   *ALARM* ) : ;;
+   *   ) message='' ;;
+   esac
+   if [ -n "$message" ]; then
+   if [ -n "${addr}" ]; then
+   echo "$message" | mail -s \
+   "Sensors ALARM detected at host: $( hostname )" 
\
+   "${addr}"
+   fi
+   [ -z "${cmd}" ] || ${cmd} &
+   sleep ${slp}
+   fi
+done &

Copied: lm_sensors/repos/extra-x86_64/healthd.conf (from rev 325023, 
lm_sensors/trunk/healthd.conf)
===
--- healthd.conf(rev 0)
+++ healthd.conf2018-05-26 13:29:46 UTC (rev 325024)
@@ 

[arch-commits] Commit in lm_sensors/repos/extra-x86_64 (6 files)

2018-05-26 Thread Antonio Rojas via arch-commits
Date: Saturday, May 26, 2018 @ 12:24:46
  Author: arojas
Revision: 325012

archrelease: copy trunk to extra-x86_64

Deleted:
  lm_sensors/repos/extra-x86_64/PKGBUILD
  lm_sensors/repos/extra-x86_64/healthd
  lm_sensors/repos/extra-x86_64/healthd.conf
  lm_sensors/repos/extra-x86_64/healthd.service
  lm_sensors/repos/extra-x86_64/lm_sensors-fancontrol.patch
  lm_sensors/repos/extra-x86_64/sensord.conf

-+
 PKGBUILD|   50 ---
 healthd |   53 --
 healthd.conf|   17 -
 healthd.service |9 ---
 lm_sensors-fancontrol.patch |   29 --
 sensord.conf|9 ---
 6 files changed, 167 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-05-26 12:24:31 UTC (rev 325011)
+++ PKGBUILD2018-05-26 12:24:46 UTC (rev 325012)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=lm_sensors
-pkgver=3.4.0
-pkgrel=3
-pkgdesc="Collection of user space tools for general SMBus access and hardware 
monitoring"
-arch=('x86_64')
-url="http://www.lm-sensors.org/;
-license=('GPL' 'LGPL')
-depends=('perl')
-makedepends=('rrdtool')
-optdepends=('rrdtool: for logging with sensord')
-backup=('etc/sensors3.conf' 'etc/healthd.conf' 'etc/conf.d/sensord')
-source=($pkgname-$pkgver::https://github.com/groeck/lm-sensors/archive/V${pkgver//\./-}.tar.gz
-   healthd healthd.conf healthd.service sensord.conf
-lm_sensors-fancontrol.patch)
-sha1sums=('4a9026e4db894c98ee7cea0bec1188108e415f71'
-  '1c91ae403d3cd02b6177ad1f1b2f2c3a7a3257f5'
-  '1edd4d72ade22adfc128fb8d670e85c633fd1d18'
-  'd72ec328e9303acef86342483b6f8537de6117d9'
-  'f4b5f21fdb3b2a55aa353afa1603f953b207b73b'
-  'b0bc977348610d6a008d75a43f65800251c4c9f7')
-validpgpkeys=('7CA69F4460F1BDC41FD2C858A5526B9BB3CD4E6A')
-
-prepare() {
-  cd ${pkgname/_/-}-${pkgver//\./-}
-  sed -i 's|/etc/sysconfig|/etc/conf.d|' 
prog/{detect/sensors-detect,init/{sensord,lm_sensors}.service}
-  sed -i 's/EnvironmentFile=/EnvironmentFile=-/' prog/init/lm_sensors.service
-  patch -p0 -i "${srcdir}/lm_sensors-fancontrol.patch"
-}
-
-build() {
-  cd ${pkgname/_/-}-${pkgver//\./-}
-  make PREFIX=/usr
-}
-
-package() {
-  cd ${pkgname/_/-}-${pkgver//\./-}
-  make PROG_EXTRA=sensord BUILD_STATIC_LIB=0 \
-PREFIX=/usr SBINDIR=/usr/bin MANDIR=/usr/share/man DESTDIR="${pkgdir}" 
install
-
-  install -D -m755 "${srcdir}/healthd" "${pkgdir}/usr/bin/healthd"
-
-  install -D -m644 "${srcdir}/healthd.conf" "${pkgdir}/etc/healthd.conf"
-  install -D -m644 "${srcdir}/sensord.conf" "${pkgdir}/etc/conf.d/sensord"
- 
-  install -D -m644 "${srcdir}/healthd.service" 
"${pkgdir}/usr/lib/systemd/system/healthd.service"
-  install -D -m644 prog/init/*.service "${pkgdir}/usr/lib/systemd/system/"
-}

Deleted: healthd
===
--- healthd 2018-05-26 12:24:31 UTC (rev 325011)
+++ healthd 2018-05-26 12:24:46 UTC (rev 325012)
@@ -1,53 +0,0 @@
-#!/bin/bash
-
-#
-# /usr/bin/healthd
-#
-
-. /etc/healthd.conf
-
-cmd="${ALARM_CMD}"
-addr="${ADMIN_EMAIL}"
-slp="${ALARM_SLEEP}"
-sensors="/usr/bin/sensors"
-
-
-while [ $# -gt 0 ] ; do
-   case "${1}" in
-   -c ) cmd="${2}" ; shift 2 ;;
-   -m ) addr="${2}" ; shift 2 ;;
-   -s ) slp="${2}" ; shift 2 ;;
-   *  ) shift 1 ;;
-   esac
-done
-
-case "${ALARM_RESET}" in
-   yes) /usr/bin/sensors > /dev/null
-   ;;
-no) true
-   ;;
-esac
-
-[ -n "${cmd}" ] && [ -n "$( which -- "${cmd%% *}" )" ] || \
-   [ -n "${addr}" ] || exit 1
-
-[ "${slp}" -ge 2 ] || slp=600
-
-while true ; do
-   sleep 15
-   message="$( $sensors )"
-   case "$message" in
-   ''  ) message='Could not get any sensor values !' ;;
-   *ALARM* ) : ;;
-   *   ) message='' ;;
-   esac
-   if [ -n "$message" ]; then
-   if [ -n "${addr}" ]; then
-   echo "$message" | mail -s \
-   "Sensors ALARM detected at host: $( hostname )" 
\
-   "${addr}"
-   fi
-   [ -z "${cmd}" ] || ${cmd} &
-   sleep ${slp}
-   fi
-done &

Deleted: healthd.conf
===
--- healthd.conf2018-05-26 12:24:31 UTC (rev 325011)
+++ healthd.conf2018-05-26 12:24:46 UTC (rev 325012)
@@ -1,17 +0,0 @@
-#
-# /etc/healthd.conf
-#
-
-# reset any pending alarms on startup
-ALARM_RESET="yes"
-
-# where to sent mails on alarm
-ADMIN_EMAIL="root"
-
-# Seconds to sleep when alarm detected before checking again
-# If you want to fill up your mail inbox set this to 2. ;-)
-ALARM_SLEEP=600
-
-# 

[arch-commits] Commit in lm_sensors/repos/extra-x86_64 (12 files)

2018-05-21 Thread Antonio Rojas via arch-commits
Date: Monday, May 21, 2018 @ 06:28:48
  Author: arojas
Revision: 324661

archrelease: copy trunk to extra-x86_64

Added:
  lm_sensors/repos/extra-x86_64/PKGBUILD
(from rev 324660, lm_sensors/trunk/PKGBUILD)
  lm_sensors/repos/extra-x86_64/healthd
(from rev 324660, lm_sensors/trunk/healthd)
  lm_sensors/repos/extra-x86_64/healthd.conf
(from rev 324660, lm_sensors/trunk/healthd.conf)
  lm_sensors/repos/extra-x86_64/healthd.service
(from rev 324660, lm_sensors/trunk/healthd.service)
  lm_sensors/repos/extra-x86_64/lm_sensors-fancontrol.patch
(from rev 324660, lm_sensors/trunk/lm_sensors-fancontrol.patch)
  lm_sensors/repos/extra-x86_64/sensord.conf
(from rev 324660, lm_sensors/trunk/sensord.conf)
Deleted:
  lm_sensors/repos/extra-x86_64/PKGBUILD
  lm_sensors/repos/extra-x86_64/healthd
  lm_sensors/repos/extra-x86_64/healthd.conf
  lm_sensors/repos/extra-x86_64/healthd.service
  lm_sensors/repos/extra-x86_64/lm_sensors-fancontrol.patch
  lm_sensors/repos/extra-x86_64/sensord.conf

-+
 PKGBUILD|  100 +++
 healthd |  106 +-
 healthd.conf|   34 ++---
 healthd.service |   18 +++
 lm_sensors-fancontrol.patch |   58 +++---
 sensord.conf|   18 +++
 6 files changed, 167 insertions(+), 167 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-05-21 06:28:17 UTC (rev 324660)
+++ PKGBUILD2018-05-21 06:28:48 UTC (rev 324661)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=lm_sensors
-pkgver=3.4.0
-pkgrel=2
-pkgdesc="Collection of user space tools for general SMBus access and hardware 
monitoring"
-arch=('i686' 'x86_64')
-url="http://www.lm-sensors.org/;
-license=('GPL' 'LGPL')
-depends=('perl' 'sysfsutils')
-makedepends=('rrdtool')
-optdepends=('rrdtool: for logging with sensord')
-backup=('etc/sensors3.conf' 'etc/healthd.conf' 'etc/conf.d/sensord')
-source=($pkgname-$pkgver::https://github.com/groeck/lm-sensors/archive/V${pkgver//\./-}.tar.gz
-   healthd healthd.conf healthd.service sensord.conf
-lm_sensors-fancontrol.patch)
-sha1sums=('4a9026e4db894c98ee7cea0bec1188108e415f71'
-  '1c91ae403d3cd02b6177ad1f1b2f2c3a7a3257f5'
-  '1edd4d72ade22adfc128fb8d670e85c633fd1d18'
-  'd72ec328e9303acef86342483b6f8537de6117d9'
-  'f4b5f21fdb3b2a55aa353afa1603f953b207b73b'
-  'b0bc977348610d6a008d75a43f65800251c4c9f7')
-validpgpkeys=('7CA69F4460F1BDC41FD2C858A5526B9BB3CD4E6A')
-
-prepare() {
-  cd ${pkgname/_/-}-${pkgver//\./-}
-  sed -i 's|/etc/sysconfig|/etc/conf.d|' 
prog/{detect/sensors-detect,init/{sensord,lm_sensors}.service}
-  sed -i 's/EnvironmentFile=/EnvironmentFile=-/' prog/init/lm_sensors.service
-  patch -p0 -i "${srcdir}/lm_sensors-fancontrol.patch"
-}
-
-build() {
-  cd ${pkgname/_/-}-${pkgver//\./-}
-  make PREFIX=/usr
-}
-
-package() {
-  cd ${pkgname/_/-}-${pkgver//\./-}
-  make PROG_EXTRA=sensord BUILD_STATIC_LIB=0 \
-PREFIX=/usr SBINDIR=/usr/bin MANDIR=/usr/share/man DESTDIR="${pkgdir}" 
install
-
-  install -D -m755 "${srcdir}/healthd" "${pkgdir}/usr/bin/healthd"
-
-  install -D -m644 "${srcdir}/healthd.conf" "${pkgdir}/etc/healthd.conf"
-  install -D -m644 "${srcdir}/sensord.conf" "${pkgdir}/etc/conf.d/sensord"
- 
-  install -D -m644 "${srcdir}/healthd.service" 
"${pkgdir}/usr/lib/systemd/system/healthd.service"
-  install -D -m644 prog/init/*.service "${pkgdir}/usr/lib/systemd/system/"
-}

Copied: lm_sensors/repos/extra-x86_64/PKGBUILD (from rev 324660, 
lm_sensors/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-05-21 06:28:48 UTC (rev 324661)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=lm_sensors
+pkgver=3.4.0
+pkgrel=3
+pkgdesc="Collection of user space tools for general SMBus access and hardware 
monitoring"
+arch=('x86_64')
+url="http://www.lm-sensors.org/;
+license=('GPL' 'LGPL')
+depends=('perl')
+makedepends=('rrdtool')
+optdepends=('rrdtool: for logging with sensord')
+backup=('etc/sensors3.conf' 'etc/healthd.conf' 'etc/conf.d/sensord')
+source=($pkgname-$pkgver::https://github.com/groeck/lm-sensors/archive/V${pkgver//\./-}.tar.gz
+   healthd healthd.conf healthd.service sensord.conf
+lm_sensors-fancontrol.patch)
+sha1sums=('4a9026e4db894c98ee7cea0bec1188108e415f71'
+  '1c91ae403d3cd02b6177ad1f1b2f2c3a7a3257f5'
+  '1edd4d72ade22adfc128fb8d670e85c633fd1d18'
+  'd72ec328e9303acef86342483b6f8537de6117d9'
+  'f4b5f21fdb3b2a55aa353afa1603f953b207b73b'
+  'b0bc977348610d6a008d75a43f65800251c4c9f7')
+validpgpkeys=('7CA69F4460F1BDC41FD2C858A5526B9BB3CD4E6A')
+
+prepare() {
+  cd ${pkgname/_/-}-${pkgver//\./-}
+ 

[arch-commits] Commit in lm_sensors/repos/extra-x86_64 (12 files)

2014-12-31 Thread Eric Bélanger
Date: Thursday, January 1, 2015 @ 03:32:08
  Author: eric
Revision: 228304

archrelease: copy trunk to extra-x86_64

Added:
  lm_sensors/repos/extra-x86_64/PKGBUILD
(from rev 228303, lm_sensors/trunk/PKGBUILD)
  lm_sensors/repos/extra-x86_64/healthd
(from rev 228303, lm_sensors/trunk/healthd)
  lm_sensors/repos/extra-x86_64/healthd.conf
(from rev 228303, lm_sensors/trunk/healthd.conf)
  lm_sensors/repos/extra-x86_64/healthd.service
(from rev 228303, lm_sensors/trunk/healthd.service)
  lm_sensors/repos/extra-x86_64/lm_sensors-fancontrol.patch
(from rev 228303, lm_sensors/trunk/lm_sensors-fancontrol.patch)
  lm_sensors/repos/extra-x86_64/sensord.conf
(from rev 228303, lm_sensors/trunk/sensord.conf)
Deleted:
  lm_sensors/repos/extra-x86_64/PKGBUILD
  lm_sensors/repos/extra-x86_64/healthd
  lm_sensors/repos/extra-x86_64/healthd.conf
  lm_sensors/repos/extra-x86_64/healthd.service
  lm_sensors/repos/extra-x86_64/lm_sensors-fancontrol.patch
  lm_sensors/repos/extra-x86_64/sensord.conf

-+
 PKGBUILD|  101 
 healthd |  106 +-
 healthd.conf|   34 ++---
 healthd.service |   18 +++
 lm_sensors-fancontrol.patch |   58 +++---
 sensord.conf|   18 +++
 6 files changed, 168 insertions(+), 167 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-01 02:29:44 UTC (rev 228303)
+++ PKGBUILD2015-01-01 02:32:08 UTC (rev 228304)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=lm_sensors
-pkgver=3.3.5
-pkgrel=1
-pkgdesc=Collection of user space tools for general SMBus access and hardware 
monitoring
-arch=('i686' 'x86_64')
-url=http://www.lm-sensors.org/;
-license=('GPL' 'LGPL')
-depends=('perl' 'sysfsutils')
-makedepends=('rrdtool')
-optdepends=('rrdtool: for logging with sensord')
-backup=('etc/sensors3.conf' 'etc/healthd.conf' 'etc/conf.d/sensord')
-source=(http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-${pkgver}.tar.bz2{,.sig}
-   healthd healthd.conf healthd.service sensord.conf
-lm_sensors-fancontrol.patch)
-sha1sums=('179989a52bae8f01ba8ed77e8a15af6ec653d89e'
-  'SKIP'
-  '1c91ae403d3cd02b6177ad1f1b2f2c3a7a3257f5'
-  '1edd4d72ade22adfc128fb8d670e85c633fd1d18'
-  'd72ec328e9303acef86342483b6f8537de6117d9'
-  'f4b5f21fdb3b2a55aa353afa1603f953b207b73b'
-  'b0bc977348610d6a008d75a43f65800251c4c9f7')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed -i 's|/etc/sysconfig|/etc/conf.d|' 
prog/{detect/sensors-detect,init/{sensord,lm_sensors}.service}
-  sed -i 's/EnvironmentFile=/EnvironmentFile=-/' prog/init/lm_sensors.service
-  patch -p0 -i ${srcdir}/lm_sensors-fancontrol.patch
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make PROG_EXTRA=sensord BUILD_STATIC_LIB=0 \
-PREFIX=/usr SBINDIR=/usr/bin MANDIR=/usr/share/man DESTDIR=${pkgdir} 
install
-
-  install -D -m755 ${srcdir}/healthd ${pkgdir}/usr/bin/healthd
-
-  install -D -m644 ${srcdir}/healthd.conf ${pkgdir}/etc/healthd.conf
-  install -D -m644 ${srcdir}/sensord.conf ${pkgdir}/etc/conf.d/sensord
- 
-  install -D -m644 ${srcdir}/healthd.service 
${pkgdir}/usr/lib/systemd/system/healthd.service
-  install -D -m644 prog/init/*.service ${pkgdir}/usr/lib/systemd/system/
-}

Copied: lm_sensors/repos/extra-x86_64/PKGBUILD (from rev 228303, 
lm_sensors/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-01 02:32:08 UTC (rev 228304)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=lm_sensors
+pkgver=3.3.5
+pkgrel=1
+pkgdesc=Collection of user space tools for general SMBus access and hardware 
monitoring
+arch=('i686' 'x86_64')
+url=http://www.lm-sensors.org/;
+license=('GPL' 'LGPL')
+depends=('perl' 'sysfsutils')
+makedepends=('rrdtool')
+optdepends=('rrdtool: for logging with sensord')
+backup=('etc/sensors3.conf' 'etc/healthd.conf' 'etc/conf.d/sensord')
+source=(http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-${pkgver}.tar.bz2{,.sig}
+   healthd healthd.conf healthd.service sensord.conf
+lm_sensors-fancontrol.patch)
+sha1sums=('179989a52bae8f01ba8ed77e8a15af6ec653d89e'
+  'SKIP'
+  '1c91ae403d3cd02b6177ad1f1b2f2c3a7a3257f5'
+  '1edd4d72ade22adfc128fb8d670e85c633fd1d18'
+  'd72ec328e9303acef86342483b6f8537de6117d9'
+  'f4b5f21fdb3b2a55aa353afa1603f953b207b73b'
+  'b0bc977348610d6a008d75a43f65800251c4c9f7')
+validpgpkeys=('90DFD6523C57373D81F63D19865688D038F02FC8')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i 's|/etc/sysconfig|/etc/conf.d|' 

[arch-commits] Commit in lm_sensors/repos (extra-x86_64)

2011-08-07 Thread Ionut Biru
Date: Sunday, August 7, 2011 @ 15:18:03
  Author: ibiru
Revision: 134791

db-move: lm_sensors removed by ibiru for move to [extra] (x86_64)

Deleted:
  lm_sensors/repos/extra-x86_64/



[arch-commits] Commit in lm_sensors/repos (extra-x86_64 testing-x86_64)

2011-08-07 Thread Ionut Biru
Date: Sunday, August 7, 2011 @ 15:18:03
  Author: ibiru
Revision: 134792

db-move: moved lm_sensors from [testing] to [extra] (x86_64)

Added:
  lm_sensors/repos/extra-x86_64/
Deleted:
  lm_sensors/repos/testing-x86_64/



[arch-commits] Commit in lm_sensors/repos (extra-x86_64)

2011-07-22 Thread Eric Bélanger
Date: Friday, July 22, 2011 @ 20:44:42
  Author: eric
Revision: 132328

archrelease: remove extra-x86_64

Deleted:
  lm_sensors/repos/extra-x86_64/



[arch-commits] Commit in lm_sensors/repos (extra-x86_64)

2011-07-22 Thread Eric Bélanger
Date: Friday, July 22, 2011 @ 20:44:51
  Author: eric
Revision: 132329

archrelease: copy trunk to extra-x86_64

Added:
  lm_sensors/repos/extra-x86_64/



[arch-commits] Commit in lm_sensors/repos (extra-x86_64)

2011-05-10 Thread Eric Bélanger
Date: Tuesday, May 10, 2011 @ 23:51:40
  Author: eric
Revision: 123405

archrelease: remove extra-x86_64

Deleted:
  lm_sensors/repos/extra-x86_64/



[arch-commits] Commit in lm_sensors/repos (extra-x86_64)

2011-05-10 Thread Eric Bélanger
Date: Tuesday, May 10, 2011 @ 23:51:48
  Author: eric
Revision: 123406

archrelease: copy trunk to extra-x86_64

Added:
  lm_sensors/repos/extra-x86_64/



[arch-commits] Commit in lm_sensors/repos (extra-x86_64)

2011-05-05 Thread Eric Bélanger
Date: Thursday, May 5, 2011 @ 03:25:28
  Author: eric
Revision: 122625

archrelease: remove extra-x86_64

Deleted:
  lm_sensors/repos/extra-x86_64/



[arch-commits] Commit in lm_sensors/repos (extra-x86_64)

2011-05-05 Thread Eric Bélanger
Date: Thursday, May 5, 2011 @ 03:25:38
  Author: eric
Revision: 122626

archrelease: copy trunk to extra-x86_64

Added:
  lm_sensors/repos/extra-x86_64/



[arch-commits] Commit in lm_sensors/repos (extra-x86_64)

2011-03-28 Thread Eric Bélanger
Date: Monday, March 28, 2011 @ 21:08:02
  Author: eric
Revision: 117147

archrelease: remove extra-x86_64

Deleted:
  lm_sensors/repos/extra-x86_64/



[arch-commits] Commit in lm_sensors/repos (extra-x86_64)

2011-03-28 Thread Eric Bélanger
Date: Monday, March 28, 2011 @ 21:08:09
  Author: eric
Revision: 117148

archrelease: copy trunk to extra-x86_64

Added:
  lm_sensors/repos/extra-x86_64/



[arch-commits] Commit in lm_sensors/repos (extra-x86_64)

2010-10-11 Thread Eric Bélanger
Date: Monday, October 11, 2010 @ 21:13:05
  Author: eric
Revision: 94900

archrelease: remove extra-x86_64

Deleted:
  lm_sensors/repos/extra-x86_64/



[arch-commits] Commit in lm_sensors/repos (extra-x86_64)

2010-10-11 Thread Eric Bélanger
Date: Monday, October 11, 2010 @ 21:13:18
  Author: eric
Revision: 94901

archrelease: copy trunk to extra-x86_64

Added:
  lm_sensors/repos/extra-x86_64/



[arch-commits] Commit in lm_sensors/repos (extra-x86_64)

2010-05-10 Thread Daniel Griffiths
Date: Monday, May 10, 2010 @ 16:33:44
  Author: dgriffiths
Revision: 80067

archrelease: remove extra-x86_64

Deleted:
  lm_sensors/repos/extra-x86_64/



[arch-commits] Commit in lm_sensors/repos (extra-x86_64)

2010-05-10 Thread Daniel Griffiths
Date: Monday, May 10, 2010 @ 16:33:52
  Author: dgriffiths
Revision: 80068

archrelease: copy trunk to extra-x86_64

Added:
  lm_sensors/repos/extra-x86_64/



[arch-commits] Commit in lm_sensors/repos (extra-x86_64)

2010-05-10 Thread Daniel Griffiths
Date: Monday, May 10, 2010 @ 16:34:44
  Author: dgriffiths
Revision: 80070

archrelease: remove extra-x86_64

Deleted:
  lm_sensors/repos/extra-x86_64/



[arch-commits] Commit in lm_sensors/repos (extra-x86_64)

2010-05-10 Thread Daniel Griffiths
Date: Monday, May 10, 2010 @ 16:34:52
  Author: dgriffiths
Revision: 80071

archrelease: copy trunk to extra-x86_64

Added:
  lm_sensors/repos/extra-x86_64/