forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-benchmarks/stress-ng: bump to version 0.13.04
Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Conrad Kostecki <[email protected]>
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST stress-ng-0.13.03.tar.xz 578220 BLAKE2B b40e11a1a338de70f040fb3b0997f0fd101e00708c92c9137528c3c6914ce15251a06579df38d532b96e47149b0c39bc92e878ba53225f9a01e397d3376eff00 SHA512 78b05948b5a8622faba8ffb54f08a81c5ad31fcbbf060a95addaf4a5ec1605d3f190b1aebaa4b2b54315525e248289dcdbf16fdcf8395678fb33e74b22b0e7eb | ||
DIST stress-ng-0.13.04.tar.xz 580436 BLAKE2B c0aa542453fc0901f7cc6ad7500097df258c28cac2fe5136574b839abdbe349678d428571cb5eb1da1fb94b59a8ea23f20d96dba67c6210773f3bc8daf32fc3b SHA512 0d5dda9c7887cba9ce5b21d3a270e8c699df0d205f40ee2ccb5f45d49968feea850ed2e1008be2c3863a8d58f50d5a3e4327a4887ea68905e0355ae86101b48b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
inherit optfeature toolchain-funcs | ||
|
||
DESCRIPTION="Stress test for a computer system with various selectable ways" | ||
HOMEPAGE="https://kernel.ubuntu.com/~cking/stress-ng/" | ||
SRC_URI="https://kernel.ubuntu.com/~cking/tarballs/${PN}/${P}.tar.xz" | ||
|
||
LICENSE="GPL-2+" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" | ||
|
||
DEPEND=" | ||
dev-libs/libaio | ||
dev-libs/libbsd | ||
dev-libs/libgcrypt:0= | ||
sys-apps/attr | ||
sys-apps/keyutils:= | ||
sys-libs/libcap | ||
sys-libs/zlib | ||
virtual/libcrypt:= | ||
" | ||
|
||
RDEPEND="${DEPEND}" | ||
|
||
DOCS=( "README" "README.Android" "TODO" "syscalls.txt" ) | ||
|
||
src_compile() { | ||
export MAN_COMPRESS=0 | ||
export VERBOSE=1 | ||
tc-export CC | ||
|
||
default | ||
} | ||
|
||
pkg_postinst() { | ||
optfeature "AppArmor support" sys-libs/libapparmor | ||
optfeature "SCTP support" net-misc/lksctp-tools | ||
} |