From c413f0a2def6407cd0d89c3151fa4f47fe104943 Mon Sep 17 00:00:00 2001 From: groni Date: Sat, 28 Jan 2017 19:56:23 +0100 Subject: [PATCH] change issues --- hardware/cpu/irqbalance/pspec.xml | 10 ++-------- hardware/disk/dosfstools/actions.py | 7 ++++++- hardware/disk/reiserfsprogs/pspec.xml | 1 + hardware/disk/sg3_utils/pspec.xml | 2 +- hardware/disk/smartmontools/actions.py | 11 ++++++++--- hardware/disk/sshfs/actions.py | 2 +- 6 files changed, 19 insertions(+), 14 deletions(-) diff --git a/hardware/cpu/irqbalance/pspec.xml b/hardware/cpu/irqbalance/pspec.xml index 111bd95db1..7ff9d7f85b 100644 --- a/hardware/cpu/irqbalance/pspec.xml +++ b/hardware/cpu/irqbalance/pspec.xml @@ -12,11 +12,12 @@ service Distribute hardware interrupts across processors Daemon to balance IRQs across multiple CPUs on systems.This can lead to better performance and I/O balance on SMP systems. - https://github.com/Irqbalance/irqbalance/archive/v1.2.0.tar.gz + https://github.com/Irqbalance/irqbalance/archive/v1.1.0.tar.gz numactl-devel glib2-devel libcap-ng-devel + ncurses-devel @@ -44,13 +45,6 @@ - - 2017-01-28 - 1.2.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - 2016-06-09 1.1.0 diff --git a/hardware/disk/dosfstools/actions.py b/hardware/disk/dosfstools/actions.py index 437983c0ca..246c67bc43 100644 --- a/hardware/disk/dosfstools/actions.py +++ b/hardware/disk/dosfstools/actions.py @@ -8,7 +8,12 @@ from pisi.actionsapi import get from pisi.actionsapi import autotools def build(): - autotools.make("CFLAGS='%s -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fno-strict-aliasing'" % get.CFLAGS()) + autotools.make("--prefix=/usr \ + --libexecdir=/usr/lib \ + --sbindir=/usr/bin \ + --mandir=/usr/share/man -\ + --docdir=/usr/share/doc/dosfstools \ + --enable-compat-symlinks") def install(): autotools.rawInstall("DESTDIR=%s install-bin install-man PREFIX=%s SBINDIR=/sbin" % (get.installDIR(), get.defaultprefixDIR())) diff --git a/hardware/disk/reiserfsprogs/pspec.xml b/hardware/disk/reiserfsprogs/pspec.xml index af2f0f7db5..4ca5fc27e1 100644 --- a/hardware/disk/reiserfsprogs/pspec.xml +++ b/hardware/disk/reiserfsprogs/pspec.xml @@ -16,6 +16,7 @@ https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.25/reiserfsprogs-3.6.25.tar.xz libutil-linux-devel + e2fsprogs-devel diff --git a/hardware/disk/sg3_utils/pspec.xml b/hardware/disk/sg3_utils/pspec.xml index 98fa58328f..86cc351aee 100644 --- a/hardware/disk/sg3_utils/pspec.xml +++ b/hardware/disk/sg3_utils/pspec.xml @@ -14,7 +14,7 @@ library Utilities for devices that use SCSI command sets sg3_utils is a collection of Linux utilities for devices that use the SCSI command set. Includes utilities to copy data based on dd syntax and semantics, check INQUIRY data and VPD pages, check mode and log pages, spin up/down disks, do self tests and various other functions. - https://github.com/hreinecke/sg3_utils/archive/v1.42.tar.gz + https://github.com/hreinecke/sg3_utils/archive/v1.42.tar.gz diff --git a/hardware/disk/smartmontools/actions.py b/hardware/disk/smartmontools/actions.py index 8657c8026d..f37835c026 100644 --- a/hardware/disk/smartmontools/actions.py +++ b/hardware/disk/smartmontools/actions.py @@ -12,9 +12,14 @@ from pisi.actionsapi import get def setup(): shelltools.touch("ChangeLog") autotools.autoreconf("-fi") - autotools.configure("--with-libcap-ng=yes \ - --enable-drivedb \ - --with-systemdsystemunitdir=no") + autotools.configure("--prefix=/usr \ + --sbindir=/usr/bin \ + --sysconfdir=/etc \ + --with-drivedbdir \ + --with-libcap-ng=yes \ + --with-smartdscriptdir=/usr/share/smartmontools \ + --with-smartdplugindir=/usr/share/smartmontools/smartd_warning.d + --with-systemdsystemunitdir=no") def build(): autotools.make("CXXFLAGS='%s -fpie'" % get.CXXFLAGS()) diff --git a/hardware/disk/sshfs/actions.py b/hardware/disk/sshfs/actions.py index b0be2493a6..289903323a 100644 --- a/hardware/disk/sshfs/actions.py +++ b/hardware/disk/sshfs/actions.py @@ -8,7 +8,7 @@ from pisi.actionsapi import autotools from pisi.actionsapi import pisitools from pisi.actionsapi import get -WorkDir = "sshfs-fuse-%s" % get.srcVERSION() +#WorkDir = "sshfs-fuse-%s" % get.srcVERSION() def setup(): autotools.configure("--disable-sshnodelay")