Package Details: stress-ng 0.17.06-1

Git Clone URL: https://aur.archlinux.org/stress-ng.git (read-only, click to copy)
Package Base: stress-ng
Description: Software to stress test a computer system in various selectable ways
Upstream URL: https://github.com/ColinIanKing/stress-ng
Licenses: GPL-2.0-only
Submitter: sergej
Maintainer: iyanmv
Last Packager: iyanmv
Votes: 33
Popularity: 0.84
First Submitted: 2014-08-12 10:21 (UTC)
Last Updated: 2024-03-06 11:54 (UTC)

Dependencies (23)

Required by (1)

Sources (1)

Latest Comments

1 2 Next › Last »

MarsSeed commented on 2022-03-19 23:27 (UTC) (edited on 2022-03-19 23:27 (UTC) by MarsSeed)

Also worth mentioning: intel-ipsec-mb has been orphaned and needs update. Could you maybe adopt it for a version bump?

MarsSeed commented on 2022-03-19 23:25 (UTC)

Please kindly fix: upstream URL is gone (404).

iamkaant commented on 2021-10-22 11:18 (UTC) (edited on 2021-10-22 11:19 (UTC) by iamkaant)

I was able to install stress-ng using the following PKGBUILD. You need to download archive from Github and place it into the same directory with PKGBUILD.

# Maintainer: Thomas Wucher <arch (at) thomaswucher (dot) de>
pkgname=stress-ng
pkgver=0.13.05
pkgrel=1
pkgdesc="stress-ng will stress test a computer system in various selectable ways"
arch=('i686' 'x86_64' 'armv7h' 'armv6h' 'aarch64')
url="http://kernel.ubuntu.com/~cking/${pkgname}/"
license=('GPL')
depends=()
depends_x86_64=(intel-ipsec-mb)
source=("stress-ng-master.zip")
sha256sums=('09137c01ac4e8bd9e16c829c2fa2b6a9478454b9440899ce7415c6883555aad0')

build() {
unzip "${source}"
  cd "stress-ng-master"

  make
}

package() {
  cd "stress-ng-master"

  make DESTDIR="${pkgdir}/" install
}

bezerk commented on 2021-10-17 10:24 (UTC)

Please update as upstream URL has moved (https://github.com/ColinIanKing/stress-ng) and latest release is 0.13.05

torvic9 commented on 2021-09-16 12:38 (UTC)

Missing makedep: aur/intel-ipsec-mb

This is not a hard dependency, please put it into optdepends.

vith commented on 2021-04-01 14:02 (UTC)

Missing makedep: aur/intel-ipsec-mb

~> stress-ng --ipsec-mb 6
stress-ng: info:  [49811] ipsec_mb: stressor will be skipped, CPU needs to be an x86-64 and a recent IPSec MB library is required.
stress-ng: info:  [49811] defaulting to a 86400 second (1 day, 0.00 secs) run per stressor
stress-ng: error: [49811] No stress workers invoked (one or more were unsupported)

Installing intel-ipsec-mb and doing a clean rebuild of stress-ng fixed this for me.

EarthMind commented on 2019-03-23 08:37 (UTC)

Updated PKGBUILD: https://gist.github.com/IsaakGroepT/955b03cf91bcf364894a69cbca36c812

thomaswucher commented on 2018-08-18 08:30 (UTC)

Thanks for reporting @asbachb. Should be working again with the lastest version of stress-ng!

asbachb commented on 2018-08-09 09:46 (UTC) (edited on 2018-08-09 09:47 (UTC) by asbachb)

I'm not able to build this package:

In file included from stress-access.c:25:
stress-ng.h:2925:8: error: redefinition of ‘struct statx_timestamp’
 struct statx_timestamp {
        ^~~~~~~~~~~~~~~
In file included from /usr/include/sys/stat.h:446,
                 from /usr/include/bsd/stdlib.h:50,
                 from stress-ng.h:85,
                 from stress-access.c:25:
/usr/include/bits/statx.h:25:8: note: originally defined here
 struct statx_timestamp
        ^~~~~~~~~~~~~~~
make[1]: *** [Makefile:323: stress-access.o] Error 1
make[1]: Leaving directory '/home/asbachb/.cache/pacaur/stress-ng/src/stress-ng-0.09.31'
make: *** [Makefile:310: all_config] Error 2
==> ERROR: A failure occurred in build().
    Aborting...
:: failed to build stress-ng package(s)

grisu48 commented on 2017-04-05 11:33 (UTC)

Thanks @thomaswucher, I redownloaded it and now it builds!