diff options
author | William Breathitt Gray <vilhelm.gray@gmail.com> | 2020-09-11 09:47:32 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-09-17 19:57:55 +0000 |
commit | 0eb7af30348058de3d9ddfb39aa1a9550d0d9955 (patch) | |
tree | 31c5b61a724e9aa51fd8367f75bacece34234b7f /dev-cpp | |
parent | sys-kernel/gentoo-kernel-bin: Bump to 5.8.10 (diff) | |
download | gentoo-0eb7af30348058de3d9ddfb39aa1a9550d0d9955.tar.gz gentoo-0eb7af30348058de3d9ddfb39aa1a9550d0d9955.tar.bz2 gentoo-0eb7af30348058de3d9ddfb39aa1a9550d0d9955.zip |
dev-cpp/benchmark: Version bump to 1.5.2
Closes: https://bugs.gentoo.org/741660
Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/17503
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp')
-rw-r--r-- | dev-cpp/benchmark/Manifest | 1 | ||||
-rw-r--r-- | dev-cpp/benchmark/benchmark-1.5.2.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/dev-cpp/benchmark/Manifest b/dev-cpp/benchmark/Manifest index 1bc43e7976a0..654804a904fe 100644 --- a/dev-cpp/benchmark/Manifest +++ b/dev-cpp/benchmark/Manifest @@ -1 +1,2 @@ DIST benchmark-1.5.1.tar.gz 154896 BLAKE2B cb8d74b3e6662e35ea12809d8b62d1e3a6849668840c84697e7f4b2d29eaf68688bb1cda6f43c170e70366de88a93af79bb709d55dfc8d79140c11a31855a46b SHA512 1e8782ab6846b8b29c5eea41ed1ba19dd92a46a135cf74acdc588e2cd5ef05581c644d20fc0d6403456d65417538e1db80109ae87989601298b2fc56ae3c3161 +DIST benchmark-1.5.2.tar.gz 160235 BLAKE2B af14235d174e39b8bbb0a44960834b7d13b1aed6cd4494efa9eb58d32c051efdf244258a33b83b82ad82aa69917356c35ccb470caea838cb6fd7eda37f0f80f6 SHA512 a071613f3af669296aa613e0e64726bdcf27cc3db331d8003f49164581cd6935a86641ec435118ea590a9d722a926d3fef740e938e1a5f6eba8e2a5a615da1b0 diff --git a/dev-cpp/benchmark/benchmark-1.5.2.ebuild b/dev-cpp/benchmark/benchmark-1.5.2.ebuild new file mode 100644 index 000000000000..c64fe45b19ae --- /dev/null +++ b/dev-cpp/benchmark/benchmark-1.5.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 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 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +src_configure() { + local mycmakeargs=( + -DBENCHMARK_ENABLE_TESTING=$(usex test) + -DBENCHMARK_ENABLE_GTEST_TESTS=OFF + -DBENCHMARK_ENABLE_ASSEMBLY_TESTS=OFF + ) + + cmake_src_configure +} |