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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7D0B1158092 for ; Mon, 20 Sep 2021 10:06:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A9E52E08F1; Mon, 20 Sep 2021 10:06:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E2B87E08F7 for ; Mon, 20 Sep 2021 10:06:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8AD21342EC5 for ; Mon, 20 Sep 2021 10:06:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 07ECDEE for ; Mon, 20 Sep 2021 10:06:04 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1632132192.2d38f4c4ae36b0b861deeb27df482471efd6afff.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/benchmark/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/benchmark/benchmark-1.5.3.ebuild dev-cpp/benchmark/benchmark-1.5.5.ebuild X-VCS-Directories: dev-cpp/benchmark/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 2d38f4c4ae36b0b861deeb27df482471efd6afff X-VCS-Branch: master Date: Mon, 20 Sep 2021 10:06:04 +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: 2ec36932-1a00-4ccb-8f45-29552a391694 X-Archives-Hash: 6a39e88e7dd28093002fcb1b1f2dc551 commit: 2d38f4c4ae36b0b861deeb27df482471efd6afff Author: Marek Szuba gentoo org> AuthorDate: Mon Sep 20 10:03:12 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Mon Sep 20 10:03:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d38f4c4 dev-cpp/benchmark: drop 1.5.3, 1.5.5 Signed-off-by: Marek Szuba gentoo.org> dev-cpp/benchmark/benchmark-1.5.3.ebuild | 28 ---------------------------- dev-cpp/benchmark/benchmark-1.5.5.ebuild | 28 ---------------------------- 2 files changed, 56 deletions(-) diff --git a/dev-cpp/benchmark/benchmark-1.5.3.ebuild b/dev-cpp/benchmark/benchmark-1.5.3.ebuild deleted file mode 100644 index 1463b00dc41..00000000000 --- a/dev-cpp/benchmark/benchmark-1.5.3.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="A microbenchmark support library" -HOMEPAGE="https://github.com/google/benchmark" -SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~hppa ~ppc64 ~x86" -IUSE="debug test" -RESTRICT="!test? ( test )" - -src_configure() { - local mycmakeargs=( - -DBENCHMARK_ENABLE_TESTING=$(usex test) - -DBENCHMARK_ENABLE_GTEST_TESTS=OFF - -DBENCHMARK_ENABLE_ASSEMBLY_TESTS=OFF - ) - - use debug || append-cppflags -DNDEBUG - - cmake_src_configure -} diff --git a/dev-cpp/benchmark/benchmark-1.5.5.ebuild b/dev-cpp/benchmark/benchmark-1.5.5.ebuild deleted file mode 100644 index fc246f0b80a..00000000000 --- a/dev-cpp/benchmark/benchmark-1.5.5.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="A microbenchmark support library" -HOMEPAGE="https://github.com/google/benchmark" -SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~hppa ~ppc64 ~riscv ~x86" -IUSE="debug test" -RESTRICT="!test? ( test )" - -src_configure() { - local mycmakeargs=( - -DBENCHMARK_ENABLE_TESTING=$(usex test) - -DBENCHMARK_ENABLE_GTEST_TESTS=OFF - -DBENCHMARK_ENABLE_ASSEMBLY_TESTS=OFF - ) - - use debug || append-cppflags -DNDEBUG - - cmake_src_configure -}