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/tclap/
Date: Mon, 28 Dec 2020 08:22:05
Message-Id: 1609143717.fbc37760b3f416fad14fda6dc7dc467dd0747ced.sam@gentoo
1 commit: fbc37760b3f416fad14fda6dc7dc467dd0747ced
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 28 08:21:57 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 28 08:21:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbc37760
7
8 dev-cpp/tclap: cleanup old (EAPI 5)
9
10 Package-Manager: Portage-3.0.9, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-cpp/tclap/Manifest | 1 -
14 dev-cpp/tclap/tclap-1.2.1.ebuild | 24 ------------------------
15 2 files changed, 25 deletions(-)
16
17 diff --git a/dev-cpp/tclap/Manifest b/dev-cpp/tclap/Manifest
18 index 95f59399a2f..a38364264aa 100644
19 --- a/dev-cpp/tclap/Manifest
20 +++ b/dev-cpp/tclap/Manifest
21 @@ -1,2 +1 @@
22 -DIST tclap-1.2.1.tar.gz 442387 BLAKE2B 413d77f59224dd7751621f32a5712178c4954cb532095203a1eb839c97d20e8651f94f90d4961a47f654d5b478946fb988db66df0d17c8230fde0b771af77405 SHA512 8bd6ee724600880840048c7b36f02d31b1aa4910b17f80fb04aef89b1f1917856d9979ec488edbd457b66d9d689aea97540abb842a8b902bbd75c66a6e07b9b1
23 DIST tclap-1.2.2.tar.gz 231714 BLAKE2B 94fc3d5253c08a305e5f75f6b4b7ab556e94980193502b64665ff828609cde20f340e3fe18cef12011da07ae2db2c2bb52a08f112d052d74c45be8290d525092 SHA512 516ec17f82a61277922bc8c0ed66973300bf42a738847fbbd2912c6405c34f94a13e47dc964854a5b26a9a9f1f518cce682ca54e769d6016851656c647866107
24
25 diff --git a/dev-cpp/tclap/tclap-1.2.1.ebuild b/dev-cpp/tclap/tclap-1.2.1.ebuild
26 deleted file mode 100644
27 index f499c9d0373..00000000000
28 --- a/dev-cpp/tclap/tclap-1.2.1.ebuild
29 +++ /dev/null
30 @@ -1,24 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="5"
35 -inherit eutils
36 -
37 -DESCRIPTION="Simple templatized C++ library for parsing command line arguments"
38 -HOMEPAGE="http://tclap.sourceforge.net"
39 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="MIT"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~arm arm64 ppc x86 ~amd64-linux"
44 -IUSE="doc"
45 -
46 -DEPEND="doc? ( app-doc/doxygen )"
47 -
48 -src_configure() {
49 - econf $(use_enable doc doxygen)
50 -}
51 -
52 -src_install() {
53 - emake DESTDIR="${D}" docdir="${EPREFIX}/usr/share/doc/${PF}/html" install
54 -}