Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/gtest/
Date: Sat, 22 Sep 2018 07:07:34
Message-Id: 1537600032.134dcea356c7709f87a9f07a6337e5a2afc26147.mgorny@gentoo
1 commit: 134dcea356c7709f87a9f07a6337e5a2afc26147
2 Author: Peter Levine <plevine457 <AT> gmail <DOT> com>
3 AuthorDate: Tue Sep 18 21:52:54 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 22 07:07:12 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=134dcea3
7
8 dev-cpp/gtest: Version bump to 1.8.1
9
10 Reported-by: Arfrever Frehtes Taifersar Arahesis <arfrever.fta <AT> gmail.com>
11 Closes: https://bugs.gentoo.org/665650
12 Closes: https://github.com/gentoo/gentoo/pull/9867
13 Package-Manager: Portage-2.3.49, Repoman-2.3.10
14
15 dev-cpp/gtest/Manifest | 1 +
16 dev-cpp/gtest/gtest-1.8.1.ebuild | 74 ++++++++++++++++++++++++++++++++++++++++
17 2 files changed, 75 insertions(+)
18
19 diff --git a/dev-cpp/gtest/Manifest b/dev-cpp/gtest/Manifest
20 index 991727f4505..035005dab21 100644
21 --- a/dev-cpp/gtest/Manifest
22 +++ b/dev-cpp/gtest/Manifest
23 @@ -1,2 +1,3 @@
24 DIST gtest-1.7.0.tar.gz 1001582 BLAKE2B 3d10c1e502c2fac1500d07301031a9328b29027a3f9719137e09d2c47556cf52bbc978a8fb7b37330a94beafa27d24c3bfc247b2f0d51306b53f43e7ae2373b4 SHA512 a9f5c047b39efb2d11b55ee9913662ca402ac6837b3ad2d278ecfbd1caf32ed4546f169e3e92503d57bf3b62ccf89cd062da1c7ea3638aae98e868d2766363c3
25 DIST gtest-1.8.0.tar.gz 1281617 BLAKE2B ac052b4d0eb0d8ded03a8c7dff05177818627b8a51f2dbc2c162b2ee2a5d1323539e7d0d02236d9ebb799995e018f0171c2fdaeb4de3bb339548265e50de79e6 SHA512 1dbece324473e53a83a60601b02c92c089f5d314761351974e097b2cf4d24af4296f9eb8653b6b03b1e363d9c5f793897acae1f0c7ac40149216035c4d395d9d
26 +DIST gtest-1.8.1.tar.gz 992298 BLAKE2B 40ef3417fe424205c0617f07207347ce671ac87605f8ac9b8a333b0b06e3fbef9f556041ee324c18f957f3258ab9fe06704f31cdd038355fb7890180eb77ced1 SHA512 e6283c667558e1fd6e49fa96e52af0e415a3c8037afe1d28b7ff1ec4c2ef8f49beb70a9327b7fc77eb4052a58c4ccad8b5260ec90e4bceeac7a46ff59c4369d7
27
28 diff --git a/dev-cpp/gtest/gtest-1.8.1.ebuild b/dev-cpp/gtest/gtest-1.8.1.ebuild
29 new file mode 100644
30 index 00000000000..7a444173666
31 --- /dev/null
32 +++ b/dev-cpp/gtest/gtest-1.8.1.ebuild
33 @@ -0,0 +1,74 @@
34 +# Copyright 1999-2018 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI="6"
38 +
39 +# Python is required for tests and some build tasks.
40 +PYTHON_COMPAT=( python2_7 pypy )
41 +
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 + SRC_URI="https://github.com/google/googletest/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
49 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
50 + S="${WORKDIR}"/googletest-release-${PV}
51 +fi
52 +
53 +DESCRIPTION="Google C++ Testing Framework"
54 +HOMEPAGE="https://github.com/google/googletest"
55 +
56 +LICENSE="BSD"
57 +SLOT="0"
58 +IUSE="doc examples test"
59 +
60 +DEPEND="test? ( ${PYTHON_DEPS} )"
61 +RDEPEND="!dev-cpp/gmock"
62 +
63 +PATCHES=(
64 + "${FILESDIR}"/${PN}-9999-fix-gcc6-undefined-behavior.patch
65 + "${FILESDIR}"/${PN}-1.8.0-increase-clone-stack-size.patch
66 +)
67 +
68 +pkg_setup() {
69 + use test && python-any-r1_pkg_setup
70 +}
71 +
72 +src_prepare() {
73 + cmake-utils_src_prepare
74 +
75 + sed -i -e '/set(cxx_base_flags /s:-Werror::' \
76 + googletest/cmake/internal_utils.cmake || die "sed failed!"
77 +}
78 +
79 +multilib_src_configure() {
80 + local mycmakeargs=(
81 + -DBUILD_GMOCK=ON
82 + -DINSTALL_GTEST=ON
83 + -DBUILD_SHARED_LIBS=ON
84 +
85 + # tests
86 + -Dgmock_build_tests=$(usex test)
87 + -Dgtest_build_tests=$(usex test)
88 + -DPYTHON_EXECUTABLE="${PYTHON}"
89 + )
90 + cmake-utils_src_configure
91 +}
92 +
93 +multilib_src_install_all() {
94 + einstalldocs
95 +
96 + if use doc; then
97 + docinto googletest
98 + dodoc -r googletest/docs/.
99 + docinto googlemock
100 + dodoc -r googlemock/docs/.
101 + fi
102 +
103 + if use examples; then
104 + docinto examples
105 + dodoc googletest/samples/*.{cc,h}
106 + fi
107 +}