Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cpptest/
Date: Sat, 29 Aug 2020 18:47:04
Message-Id: 1598726746.7b7d07f42362a9ba0fca0113a52ad605b63de317.soap@gentoo
1 commit: 7b7d07f42362a9ba0fca0113a52ad605b63de317
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 29 18:45:46 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 29 18:45:46 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b7d07f4
7
8 dev-util/cpptest: Remove old 1.1.2, 2.0.0
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 dev-util/cpptest/Manifest | 1 -
14 dev-util/cpptest/cpptest-1.1.2.ebuild | 30 ------------------------------
15 dev-util/cpptest/cpptest-2.0.0.ebuild | 27 ---------------------------
16 3 files changed, 58 deletions(-)
17
18 diff --git a/dev-util/cpptest/Manifest b/dev-util/cpptest/Manifest
19 index f7b8c32798c..0294c6290a7 100644
20 --- a/dev-util/cpptest/Manifest
21 +++ b/dev-util/cpptest/Manifest
22 @@ -1,2 +1 @@
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-1.1.2.ebuild b/dev-util/cpptest/cpptest-1.1.2.ebuild
27 deleted file mode 100644
28 index b12161051ac..00000000000
29 --- a/dev-util/cpptest/cpptest-1.1.2.ebuild
30 +++ /dev/null
31 @@ -1,30 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=4
36 -inherit eutils ltprune
37 -
38 -DESCRIPTION="Simple but powerful unit testing framework for C++"
39 -HOMEPAGE="http://cpptest.sourceforge.net/"
40 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="LGPL-2.1"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~arm ppc ppc64 x86"
45 -IUSE="doc"
46 -
47 -DEPEND="doc? ( app-doc/doxygen )"
48 -RDEPEND=""
49 -
50 -DOCS=( AUTHORS BUGS NEWS README )
51 -
52 -src_configure() {
53 - econf \
54 - $(use_enable doc) \
55 - --htmldir=/usr/share/doc/${PF}/html/
56 -}
57 -
58 -src_install() {
59 - default
60 - prune_libtool_files
61 -}
62
63 diff --git a/dev-util/cpptest/cpptest-2.0.0.ebuild b/dev-util/cpptest/cpptest-2.0.0.ebuild
64 deleted file mode 100644
65 index 3d5f2ce9f6a..00000000000
66 --- a/dev-util/cpptest/cpptest-2.0.0.ebuild
67 +++ /dev/null
68 @@ -1,27 +0,0 @@
69 -# Copyright 1999-2020 Gentoo Authors
70 -# Distributed under the terms of the GNU General Public License v2
71 -
72 -EAPI=7
73 -
74 -DESCRIPTION="Simple but powerful unit testing framework for C++"
75 -HOMEPAGE="https://github.com/cpptest/cpptest"
76 -SRC_URI="https://github.com/cpptest/cpptest/releases/download/${PV}/${P}.tar.bz2"
77 -
78 -LICENSE="LGPL-2.1"
79 -SLOT="1" # for soversion 1.x.x
80 -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
81 -IUSE="doc"
82 -
83 -DEPEND="doc? ( app-doc/doxygen )"
84 -RDEPEND="!dev-util/cpptest:0"
85 -
86 -DOCS=( AUTHORS BUGS NEWS README )
87 -
88 -src_configure() {
89 - econf $(use_enable doc)
90 -}
91 -
92 -src_install() {
93 - default
94 - find "${D}" -name '*.la' -delete || die
95 -}