Gentoo Archives: gentoo-commits

From: "Jakov Smolić" <jsmolic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tree/
Date: Wed, 06 Oct 2021 08:33:32
Message-Id: 1633509103.07f66a261302bf1c98da94a161c834d306438026.jsmolic@gentoo
1 commit: 07f66a261302bf1c98da94a161c834d306438026
2 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 6 08:31:07 2021 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 6 08:31:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07f66a26
7
8 dev-cpp/tree: drop 2.81
9
10 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
11
12 dev-cpp/tree/Manifest | 1 -
13 dev-cpp/tree/tree-2.81.ebuild | 40 ----------------------------------------
14 2 files changed, 41 deletions(-)
15
16 diff --git a/dev-cpp/tree/Manifest b/dev-cpp/tree/Manifest
17 index 1cf54214441..e15c6b6bc9e 100644
18 --- a/dev-cpp/tree/Manifest
19 +++ b/dev-cpp/tree/Manifest
20 @@ -1,2 +1 @@
21 -DIST tree-2.81.tar.gz 1167128 BLAKE2B ea92724b16fc7ea8a5f0036f5a7a57d000d66b332b4ba46139463f707f95922f38b1d4d56a6d2fca0a3c4ece8f11e28bbf4aa6bec5c5a7bc59ccaa36a01413d6 SHA512 85e910fdb19ffd03ae79302a95ebffdb44725fd9f291a61d6912f743b54fe9b3d1c863e00c7e75d238f428946809e42c7ae6379b1051688fb06ee6c6d761d294
22 DIST tree-3.17.tar.gz 1178425 BLAKE2B f59239b861c0495c48036d0fffa49370d4cd78a94bfc35348bbbe0232a3c1221293a23366a6289429adabcb00b21292288ce085fa54f74dc204537c95c5b7c37 SHA512 af11f693c13dd37dddf016751c0f975c21d7a5ad405879e18fbe5387400ee1fcfb42942ee8888efffcb0c985d7875f2698591139aeb18b4809e83e225a743112
23
24 diff --git a/dev-cpp/tree/tree-2.81.ebuild b/dev-cpp/tree/tree-2.81.ebuild
25 deleted file mode 100644
26 index 8bf33d70b23..00000000000
27 --- a/dev-cpp/tree/tree-2.81.ebuild
28 +++ /dev/null
29 @@ -1,40 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit toolchain-funcs
36 -
37 -DESCRIPTION="An STL-like tree class"
38 -HOMEPAGE="http://www.aei.mpg.de/~peekas/tree/"
39 -SRC_URI="http://www.aei.mpg.de/~peekas/tree/${P}.tar.gz"
40 -S="${WORKDIR}/${P}/src"
41 -
42 -LICENSE="|| ( GPL-2 GPL-3 )"
43 -SLOT="0"
44 -KEYWORDS="amd64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
45 -IUSE="doc"
46 -
47 -PATCHES=(
48 - "${FILESDIR}"/${P}-test.patch
49 - "${FILESDIR}"/${P}-gcc11.patch
50 -)
51 -
52 -src_configure() {
53 - tc-export CXX
54 -}
55 -
56 -src_install() {
57 - doheader tree.hh tree_util.hh
58 - dodoc tree_example.cc
59 -
60 - if use doc; then
61 - dodoc ../doc/treefig.*
62 - rm ../doc/treefig.* || die
63 -
64 - docinto html
65 - rm ../doc/{doxygen_tree.config,favicon.ico,tree.tex} || die
66 - dodoc -r ../doc/.
67 - fi
68 - docompress -x /usr/share/doc/${PF}
69 -}