[arch-commits] Commit in lib32-lm_sensors/repos/multilib-x86_64 (4 files)
Laurent Carlier
lcarlier at archlinux.org
Tue Oct 22 16:56:22 UTC 2019
Date: Tuesday, October 22, 2019 @ 16:56:22
Author: lcarlier
Revision: 518381
archrelease: copy trunk to multilib-x86_64
Added:
lib32-lm_sensors/repos/multilib-x86_64/PKGBUILD
(from rev 518380, lib32-lm_sensors/trunk/PKGBUILD)
lib32-lm_sensors/repos/multilib-x86_64/lm_sensors-fancontrol.patch
(from rev 518380, lib32-lm_sensors/trunk/lm_sensors-fancontrol.patch)
Deleted:
lib32-lm_sensors/repos/multilib-x86_64/PKGBUILD
lib32-lm_sensors/repos/multilib-x86_64/lm_sensors-fancontrol.patch
-----------------------------+
PKGBUILD | 74 +++++++++++++++++++++---------------------
lm_sensors-fancontrol.patch | 58 ++++++++++++++++----------------
2 files changed, 66 insertions(+), 66 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2019-10-22 16:56:17 UTC (rev 518380)
+++ PKGBUILD 2019-10-22 16:56:22 UTC (rev 518381)
@@ -1,37 +0,0 @@
-# Maintainer: Laurent Carlier <lordheavym at gmail.com>
-# Contributor: Eric Bélanger <eric at archlinux.org>
-# Contributor: Lubosz Sarnecki <lubosz0 at gmail.com>
-
-pkgname=lib32-lm_sensors
-pkgver=3.5.0
-_ver=${pkgver//\./-}
-pkgrel=2
-pkgdesc="Collection of user space tools for general SMBus access and hardware monitoring (32-bit)"
-arch=('x86_64')
-url="http://www.lm-sensors.org/"
-license=('GPL' 'LGPL')
-depends=('lm_sensors' 'lib32-glibc')
-source=(lm_sensors-${pkgver}::https://github.com/groeck/lm-sensors/archive/V${pkgver//\./-}.tar.gz)
-sha1sums=('3d1b3b82d62daeec1f151eaf993c61dc3cf21a6b')
-
-prepare() {
- cd lm-sensors-${_ver}
-
- sed -i 's/CC := gcc/CC := gcc -m32/' Makefile
-}
-
-build() {
- cd lm-sensors-${_ver}
-
- make PREFIX=/usr
-}
-
-package() {
- cd lm-sensors-${_ver}
-
- make PREFIX=/usr LIBDIR=/usr/lib32 DESTDIR="${pkgdir}" install
-
- rm -r ${pkgdir}/etc/
- rm -r ${pkgdir}/usr/{bin,sbin,include,man}
-}
-
Copied: lib32-lm_sensors/repos/multilib-x86_64/PKGBUILD (from rev 518380, lib32-lm_sensors/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2019-10-22 16:56:22 UTC (rev 518381)
@@ -0,0 +1,37 @@
+# Maintainer: Laurent Carlier <lordheavym at gmail.com>
+# Contributor: Eric Bélanger <eric at archlinux.org>
+# Contributor: Lubosz Sarnecki <lubosz0 at gmail.com>
+
+pkgname=lib32-lm_sensors
+pkgver=3.6.0
+_ver=${pkgver//\./-}
+pkgrel=1
+pkgdesc="Collection of user space tools for general SMBus access and hardware monitoring (32-bit)"
+arch=('x86_64')
+url="http://www.lm-sensors.org/"
+license=('GPL' 'LGPL')
+depends=('lm_sensors' 'lib32-glibc')
+source=(lm_sensors-${pkgver}::https://github.com/groeck/lm-sensors/archive/V${pkgver//\./-}.tar.gz)
+sha1sums=('2ef03242b62d70523919d06859503f12feb9f7d4')
+
+prepare() {
+ cd lm-sensors-${_ver}
+
+ sed -i 's/CC := gcc/CC := gcc -m32/' Makefile
+}
+
+build() {
+ cd lm-sensors-${_ver}
+
+ make PREFIX=/usr
+}
+
+package() {
+ cd lm-sensors-${_ver}
+
+ make PREFIX=/usr LIBDIR=/usr/lib32 DESTDIR="${pkgdir}" install
+
+ rm -r ${pkgdir}/etc/
+ rm -r ${pkgdir}/usr/{bin,sbin,include,man}
+}
+
Deleted: lm_sensors-fancontrol.patch
===================================================================
--- lm_sensors-fancontrol.patch 2019-10-22 16:56:17 UTC (rev 518380)
+++ lm_sensors-fancontrol.patch 2019-10-22 16:56:22 UTC (rev 518381)
@@ -1,29 +0,0 @@
---- prog/pwm/fancontrol 2012-11-07 03:26:37.000000000 +0200
-+++ prog/pwm/fancontrol 2013-03-22 18:15:00.566696011 +0200
-@@ -297,7 +297,7 @@
- cd $DIR
-
- # Check for configuration change
--if [ "$DIR" != "/" ] && [ -z "$DEVPATH" -o -z "$DEVNAME" ]
-+if [[ "$DIR" != "/" && ( -z "$DEVPATH" || -z "$DEVNAME" ) ]]
- then
- echo "Configuration is too old, please run pwmconfig again" >&2
- exit 1
-@@ -337,7 +337,7 @@
- # It didn't work, try pwmN_enable=1 pwmN=255
- echo 1 > $ENABLE 2> /dev/null
- echo $MAX > $1
-- if [ `cat $ENABLE` -eq 1 -a `cat $1` -ge 190 ]
-+ if [ `cat $ENABLE` -eq 1 ] && [ `cat $1` -ge 190 ]
- then
- # Success
- return 0
-@@ -469,7 +469,7 @@
- else
- # calculate the new value from temperature and settings
- pwmval="(${tval}-${mint})*(${maxpwm}-${minso})/(${maxt}-${mint})+${minso}"
-- if [ $pwmpval -eq 0 -o $min_fanval -eq 0 ]
-+ if [ $pwmpval -eq 0 ] || [ $min_fanval -eq 0 ]
- then # if fan was stopped start it using a safe value
- echo $minsa > $pwmo
- # Sleep while still handling signals
Copied: lib32-lm_sensors/repos/multilib-x86_64/lm_sensors-fancontrol.patch (from rev 518380, lib32-lm_sensors/trunk/lm_sensors-fancontrol.patch)
===================================================================
--- lm_sensors-fancontrol.patch (rev 0)
+++ lm_sensors-fancontrol.patch 2019-10-22 16:56:22 UTC (rev 518381)
@@ -0,0 +1,29 @@
+--- prog/pwm/fancontrol 2012-11-07 03:26:37.000000000 +0200
++++ prog/pwm/fancontrol 2013-03-22 18:15:00.566696011 +0200
+@@ -297,7 +297,7 @@
+ cd $DIR
+
+ # Check for configuration change
+-if [ "$DIR" != "/" ] && [ -z "$DEVPATH" -o -z "$DEVNAME" ]
++if [[ "$DIR" != "/" && ( -z "$DEVPATH" || -z "$DEVNAME" ) ]]
+ then
+ echo "Configuration is too old, please run pwmconfig again" >&2
+ exit 1
+@@ -337,7 +337,7 @@
+ # It didn't work, try pwmN_enable=1 pwmN=255
+ echo 1 > $ENABLE 2> /dev/null
+ echo $MAX > $1
+- if [ `cat $ENABLE` -eq 1 -a `cat $1` -ge 190 ]
++ if [ `cat $ENABLE` -eq 1 ] && [ `cat $1` -ge 190 ]
+ then
+ # Success
+ return 0
+@@ -469,7 +469,7 @@
+ else
+ # calculate the new value from temperature and settings
+ pwmval="(${tval}-${mint})*(${maxpwm}-${minso})/(${maxt}-${mint})+${minso}"
+- if [ $pwmpval -eq 0 -o $min_fanval -eq 0 ]
++ if [ $pwmpval -eq 0 ] || [ $min_fanval -eq 0 ]
+ then # if fan was stopped start it using a safe value
+ echo $minsa > $pwmo
+ # Sleep while still handling signals
More information about the arch-commits
mailing list