Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cpputest/
Date: Sat, 03 Oct 2020 06:32:25
Message-Id: 1601706427.35cf3b9c6cf0cc42c7c83df4202939bbbccce387.gyakovlev@gentoo
1 commit: 35cf3b9c6cf0cc42c7c83df4202939bbbccce387
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Mon Sep 28 17:00:10 2020 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 3 06:27:07 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35cf3b9c
7
8 dev-util/cpputest: bump to 4.0
9
10 Closes: https://bugs.gentoo.org/724254
11 Closes: https://bugs.gentoo.org/727324
12 Package-Manager: Portage-3.0.4, Repoman-3.0.1
13 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
14 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
15
16 dev-util/cpputest/Manifest | 1 +
17 dev-util/cpputest/cpputest-4.0.ebuild | 25 +++++++++++++++++++++++++
18 2 files changed, 26 insertions(+)
19
20 diff --git a/dev-util/cpputest/Manifest b/dev-util/cpputest/Manifest
21 index 67b6d284fe0..05c8565c0db 100644
22 --- a/dev-util/cpputest/Manifest
23 +++ b/dev-util/cpputest/Manifest
24 @@ -1 +1,2 @@
25 DIST cpputest-3.8.tar.gz 2722956 BLAKE2B 1da16c06d242703462dcaf9c6c26eb875c2622bcce4113fd0b990805d06ee7401a6776d2f0451eda49e7914caa59a5665a92387684ffb6dbbe884cf0fe07bd86 SHA512 a9592bdc9ffab8b42026ef2010f504e7e37d77fc2f197f89d23f7c9285a101059a0ec66418b914db0383974616d31b26addd1938fb27f45c3e7d9496ed0a0fac
26 +DIST cpputest-4.0.tar.gz 1163749 BLAKE2B 2ae0f4658662ead0fe5a46a0ae521edf7677a7b64e3c7ce9bad374c4f953ea5a548cdfe1d9128821ab5031211c10f02d0728085e68db02e0d021ea16d8b38f1c SHA512 69f39fffdcd965c871e598118db38ddb74a3e75fd7a7965f8d236029fa891f6fcb6b671147c166ad08482bbd0737537fafe90aa8439a0ab62389f19150cc39d7
27
28 diff --git a/dev-util/cpputest/cpputest-4.0.ebuild b/dev-util/cpputest/cpputest-4.0.ebuild
29 new file mode 100644
30 index 00000000000..1288ed85d9d
31 --- /dev/null
32 +++ b/dev-util/cpputest/cpputest-4.0.ebuild
33 @@ -0,0 +1,25 @@
34 +# Copyright 1999-2020 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +inherit autotools
40 +
41 +DESCRIPTION="Unit testing and mocking framework for C/C++"
42 +HOMEPAGE="https://cpputest.github.io/ https://github.com/cpputest/cpputest"
43 +SRC_URI="https://github.com/cpputest/cpputest/releases/download/v${PV}/${P}.tar.gz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
48 +IUSE="test"
49 +RESTRICT="!test? ( test )"
50 +
51 +DEPEND="test? ( >=dev-cpp/gtest-1.8.0 )"
52 +
53 +DOCS=( AUTHORS README.md README_CppUTest_for_C.txt )
54 +
55 +src_prepare() {
56 + default
57 + eautoreconf
58 +}