Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cpptest/
Date: Mon, 07 Jan 2019 22:57:28
Message-Id: 1546901819.320111d412d7715c522790eaa1ddb832e1877341.sping@gentoo
1 commit: 320111d412d7715c522790eaa1ddb832e1877341
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 7 22:56:28 2019 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 7 22:56:59 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=320111d4
7
8 dev-util/cpptest: 2.0.0
9
10 Ping: https://github.com/cpptest/cpptest/issues/13
11 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
12 Package-Manager: Portage-2.3.50, Repoman-2.3.11
13
14 dev-util/cpptest/Manifest | 1 +
15 dev-util/cpptest/cpptest-2.0.0.ebuild | 29 +++++++++++++++++++++++++++++
16 2 files changed, 30 insertions(+)
17
18 diff --git a/dev-util/cpptest/Manifest b/dev-util/cpptest/Manifest
19 index 264667cb736..f7b8c32798c 100644
20 --- a/dev-util/cpptest/Manifest
21 +++ b/dev-util/cpptest/Manifest
22 @@ -1 +1,2 @@
23 DIST cpptest-1.1.2.tar.gz 458982 BLAKE2B dbb144196ec5726822f859397f5429e743bdc9bd840c2dab198f19512d2d0ff66b33e8b1018be2616944e300b0bc0e2fd247b7c7a5a290096f8d402592f1441b SHA512 da1030c69a5886e752b9ae08b65c501334c7d2d4abd2174190209ce11ed351239a615b9f7c5019ee601289523b2c21a1205d2042e59aea6c2882d77d636fc57a
24 +DIST cpptest-2.0.0.tar.bz2 440323 BLAKE2B 7d703a9a41c6fc355f97d2074b71fc5c700ee2483386984147c399c096eebeec7f2a980f0678e1a4d9979a7795d3f7ff7d70cbf8b483e055a420de985aa40f2e SHA512 41b5f7989198a79dca29f7d579c4d3918e5c3bbc0f91f77317ae074af8daaa8e5ee8add7c29c8e345cb95b08524839cecc7659a8d95ee95712e205b8838c5029
25
26 diff --git a/dev-util/cpptest/cpptest-2.0.0.ebuild b/dev-util/cpptest/cpptest-2.0.0.ebuild
27 new file mode 100644
28 index 00000000000..8369dad2328
29 --- /dev/null
30 +++ b/dev-util/cpptest/cpptest-2.0.0.ebuild
31 @@ -0,0 +1,29 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +DESCRIPTION="Simple but powerful unit testing framework for C++"
38 +HOMEPAGE="https://github.com/cpptest/cpptest"
39 +SRC_URI="https://github.com/cpptest/cpptest/releases/download/${PV}/${P}.tar.bz2"
40 +
41 +LICENSE="LGPL-2.1"
42 +SLOT="1" # for soversion 1.x.x
43 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
44 +IUSE="doc"
45 +
46 +DEPEND="doc? ( app-doc/doxygen )"
47 +RDEPEND="!dev-util/cpptest:0"
48 +
49 +DOCS=( AUTHORS BUGS NEWS README )
50 +
51 +src_configure() {
52 + econf \
53 + $(use_enable doc) \
54 + --htmldir=/usr/share/doc/${PF}/html/
55 +}
56 +
57 +src_install() {
58 + default
59 + find "${D}" -name '*.la' -delete || die
60 +}