Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/gtest/
Date: Tue, 12 Oct 2021 20:24:24
Message-Id: 1634070250.079aab7f39123f489a2b27ecc4e6e461fe9f74f9.sam@gentoo
1 commit: 079aab7f39123f489a2b27ecc4e6e461fe9f74f9
2 Author: Peter Levine <plevine457 <AT> gmail <DOT> com>
3 AuthorDate: Mon Oct 4 00:15:26 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 12 20:24:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=079aab7f
7
8 dev-cpp/gtest: bump 1.11.0
9
10 Package-Manager: Portage-3.0.23, Repoman-3.0.3
11 Signed-off-by: Peter Levine <plevine457 <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/22480
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 dev-cpp/gtest/Manifest | 1 +
16 dev-cpp/gtest/gtest-1.11.0.ebuild | 78 +++++++++++++++++++++++++++++++++++++++
17 2 files changed, 79 insertions(+)
18
19 diff --git a/dev-cpp/gtest/Manifest b/dev-cpp/gtest/Manifest
20 index 1c0e1e6d97a..3b3e722caa7 100644
21 --- a/dev-cpp/gtest/Manifest
22 +++ b/dev-cpp/gtest/Manifest
23 @@ -1 +1,2 @@
24 DIST gtest-1.10.0_p20200702.tar.gz 866900 BLAKE2B c162d47868583ba270675abe5df935b8f4b9a9c00dbdc80dd88afa7f2b98266640b32b2ea5e8f9f6d6227196b5d2f79dbfda4e9585106224e814cc1503cf777d SHA512 715d887b59b47d4691c7c90ef0cf0ffc3d1e758e500263c76b50fd506e90a9d1c390af745933cfe3f55e1edac5d72dccedef3cb9a50b71a5b796424471a3017b
25 +DIST gtest-1.11.0.tar.gz 886330 BLAKE2B d11fdd485f292d96508cbc27a9a444ab69b86571cc594298fd3f0e6d4bd8d6ec20dea848fe11be165d34054b2251ad377f0930f852914feaa1416ff156986a9c SHA512 6fcc7827e4c4d95e3ae643dd65e6c4fc0e3d04e1778b84f6e06e390410fe3d18026c131d828d949d2f20dde6327d30ecee24dcd3ef919e21c91e010d149f3a28
26
27 diff --git a/dev-cpp/gtest/gtest-1.11.0.ebuild b/dev-cpp/gtest/gtest-1.11.0.ebuild
28 new file mode 100644
29 index 00000000000..89518bffd1d
30 --- /dev/null
31 +++ b/dev-cpp/gtest/gtest-1.11.0.ebuild
32 @@ -0,0 +1,78 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +# Python is required for tests and some build tasks.
39 +PYTHON_COMPAT=( python3_{8..10} )
40 +
41 +CMAKE_ECLASS=cmake
42 +inherit cmake-multilib python-any-r1
43 +
44 +if [[ ${PV} == "9999" ]]; then
45 + inherit git-r3
46 + EGIT_REPO_URI="https://github.com/google/googletest"
47 +else
48 + if [[ -z ${GOOGLETEST_COMMIT} ]]; then
49 + SRC_URI="https://github.com/google/googletest/archive/refs/tags/release-${PV}.tar.gz
50 + -> ${P}.tar.gz"
51 + S="${WORKDIR}"/googletest-release-${PV}
52 + else
53 + SRC_URI="https://github.com/google/googletest/archive/${GOOGLETEST_COMMIT}.tar.gz
54 + -> ${P}.tar.gz"
55 + S="${WORKDIR}"/googletest-${GOOGLETEST_COMMIT}
56 + fi
57 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
58 +fi
59 +
60 +DESCRIPTION="Google C++ Testing Framework"
61 +HOMEPAGE="https://github.com/google/googletest"
62 +
63 +LICENSE="BSD"
64 +SLOT="0"
65 +IUSE="doc examples test"
66 +RESTRICT="!test? ( test )"
67 +
68 +BDEPEND="test? ( ${PYTHON_DEPS} )"
69 +
70 +PATCHES=(
71 + "${FILESDIR}"/${PN}-1.10.0_p20200702-increase-clone-stack-size.patch
72 +)
73 +
74 +pkg_setup() {
75 + use test && python-any-r1_pkg_setup
76 +}
77 +
78 +src_prepare() {
79 + cmake_src_prepare
80 +
81 + sed -i -e '/set(cxx_base_flags /s:-Werror::' \
82 + googletest/cmake/internal_utils.cmake || die "sed failed!"
83 +}
84 +
85 +multilib_src_configure() {
86 + local mycmakeargs=(
87 + -DBUILD_GMOCK=ON
88 + -DINSTALL_GTEST=ON
89 +
90 + # tests
91 + -Dgmock_build_tests=$(usex test)
92 + -Dgtest_build_tests=$(usex test)
93 + -DPYTHON_EXECUTABLE="${PYTHON}"
94 + )
95 + cmake_src_configure
96 +}
97 +
98 +multilib_src_install_all() {
99 + einstalldocs
100 +
101 + newdoc googletest/README.md README.googletest.md
102 + newdoc googlemock/README.md README.googlemock.md
103 +
104 + use doc && dodoc -r docs/.
105 +
106 + if use examples; then
107 + docinto examples
108 + dodoc googletest/samples/*.{cc,h}
109 + fi
110 +}