From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 43FF315802F for ; Sat, 4 Mar 2023 20:15:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B5EDE07C7; Sat, 4 Mar 2023 20:15:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EC4A5E07C7 for ; Sat, 4 Mar 2023 20:15:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 939C4335CB1 for ; Sat, 4 Mar 2023 20:15:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C669A8BC for ; Sat, 4 Mar 2023 20:15:01 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1677960871.6900537c3a8a6f2bf42048a5d95688c2d5c9f655.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/stress/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-benchmarks/stress/Manifest app-benchmarks/stress/stress-1.0.5.ebuild X-VCS-Directories: app-benchmarks/stress/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 6900537c3a8a6f2bf42048a5d95688c2d5c9f655 X-VCS-Branch: master Date: Sat, 4 Mar 2023 20:15:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 84de8e1f-053c-42f7-96bf-ff047be6d8e6 X-Archives-Hash: 740e5f6279ba1e900a3b1704ac9a115c commit: 6900537c3a8a6f2bf42048a5d95688c2d5c9f655 Author: Conrad Kostecki gentoo org> AuthorDate: Sat Mar 4 20:14:31 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Mar 4 20:14:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6900537c app-benchmarks/stress: drop 1.0.5 Signed-off-by: Conrad Kostecki gentoo.org> app-benchmarks/stress/Manifest | 1 - app-benchmarks/stress/stress-1.0.5.ebuild | 28 ---------------------------- 2 files changed, 29 deletions(-) diff --git a/app-benchmarks/stress/Manifest b/app-benchmarks/stress/Manifest index a94d6306f29c..800001deaded 100644 --- a/app-benchmarks/stress/Manifest +++ b/app-benchmarks/stress/Manifest @@ -1,2 +1 @@ -DIST stress_1.0.5.orig.tar.gz 105766 BLAKE2B 7bc4a1d7739828ccd4b58c814e8ded42cddbd0b226bb29e916fe220835bcfa9dcdb86191bb321247aa98bd0e58791556713770bdeda5dad399aa61f2703a766c SHA512 8ae2b74213e2a6e7d17948b8277bdd6143c135a6cee64fb43d183b10134eaea761981e1d76af86ea4700b2d41598d5ca53b17755e61982ab50802297b139b805 DIST stress_1.0.7.orig.tar.gz 105784 BLAKE2B 9faacbd1bba441be219033d9a51cd970ecadeca4f8b6b637c932b74e8819fd81472164c8c63c606bbbe19b2e4b1b8af008456062a893caa275ecf4ad3207ed70 SHA512 93d5d8708a0abbc7d85585a37cd6085362d3dca7d49d2915c09e7bc151296c4023e2cedd5e190578f7540e666280ba16b4e9a7aa0133f35dde598446252fdccb diff --git a/app-benchmarks/stress/stress-1.0.5.ebuild b/app-benchmarks/stress/stress-1.0.5.ebuild deleted file mode 100644 index 2cf842fe3bf4..000000000000 --- a/app-benchmarks/stress/stress-1.0.5.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="A deliberately simple workload generator for POSIX systems" -HOMEPAGE="https://salsa.debian.org/debian/stress" -SRC_URI="mirror://debian/pool/main/s/${PN}/${PN}_${PV}.orig.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86" -IUSE="static" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - local myeconfargs=( - $(use_enable static) - ) - - econf "${myeconfargs[@]}" -}