Gentoo Archives: gentoo-commits

From: Jonas Stein <jstein@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/tree/
Date: Fri, 04 Feb 2022 20:00:51
Message-Id: 1644004827.fe0770f094322342a26ee3d12b4da813fd35fc65.jstein@gentoo
1 commit: fe0770f094322342a26ee3d12b4da813fd35fc65
2 Author: Jonas Stein <jstein <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 4 19:59:56 2022 +0000
4 Commit: Jonas Stein <jstein <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 4 20:00:27 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe0770f0
7
8 app-text/tree: bump to 2.0.1
9
10 Version bump to 2.0.1
11 EAPI bump
12 Closes: https://bugs.gentoo.org/832466
13 Package-Manager: Portage-3.0.30, Repoman-3.0.3
14 Signed-off-by: Jonas Stein <jstein <AT> gentoo.org>
15
16 app-text/tree/Manifest | 1 +
17 app-text/tree/tree-2.0.1.ebuild | 41 +++++++++++++++++++++++++++++++++++++++++
18 2 files changed, 42 insertions(+)
19
20 diff --git a/app-text/tree/Manifest b/app-text/tree/Manifest
21 index 22f905698518..c24567515554 100644
22 --- a/app-text/tree/Manifest
23 +++ b/app-text/tree/Manifest
24 @@ -1 +1,2 @@
25 DIST tree-1.8.0.tgz 50286 BLAKE2B 51a27500b89a46add6e792d446b465696d2b34339bbd06f03baff9ce589131b5d82c414849f891dbb79a3f3cfb23b89336e783ad23b84c1fb5415a13fb9488cd SHA512 3f657a6278ec5eab2fccab39dfd69bf9376811189a368b5e3213dc900b90a4e7a4961fc58eb80ad2efd5b40d2fbd0146ec59f30fe0bba576f93519214f240695
26 +DIST tree-2.0.1.tgz 57213 BLAKE2B 977f3bd606881f92f7e39fb167205b468f77408a2fa3ff14c20eeab0e6f194115d2d41a3919751c9c9d103ae185dc231710a464f0c57ea244e8a410782503d6f SHA512 11a45136d62ee7b4acdb599025ddddc250f3b95c46c94cea132bdc226357561bbae3ed874a99e554d2e01a93eaac639fb89d8a2539964ce788540ac3537f0e4c
27
28 diff --git a/app-text/tree/tree-2.0.1.ebuild b/app-text/tree/tree-2.0.1.ebuild
29 new file mode 100644
30 index 000000000000..3abae6ee3bd9
31 --- /dev/null
32 +++ b/app-text/tree/tree-2.0.1.ebuild
33 @@ -0,0 +1,41 @@
34 +# Copyright 1999-2022 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=8
38 +inherit toolchain-funcs flag-o-matic bash-completion-r1
39 +
40 +DESCRIPTION="Lists directories recursively, and produces an indented listing of files"
41 +HOMEPAGE="http://mama.indstate.edu/users/ice/tree/"
42 +SRC_URI="ftp://mama.indstate.edu/linux/tree/${P}.tgz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
47 +IUSE=""
48 +
49 +RDEPEND=""
50 +DEPEND=""
51 +
52 +src_prepare() {
53 + sed -i -e 's:LINUX:__linux__:' tree.c || die
54 + if use !elibc_glibc ; then
55 + # 433972, also previously done only for elibc_uclibc
56 + sed -i -e '/^OBJS=/s/$/ strverscmp.o/' Makefile || die
57 + fi
58 + default
59 +}
60 +
61 +src_compile() {
62 + append-lfs-flags
63 + emake \
64 + CC="$(tc-getCC)" \
65 + CFLAGS="${CFLAGS} ${CPPFLAGS}" \
66 + LDFLAGS="${LDFLAGS}"
67 +}
68 +
69 +src_install() {
70 + dobin tree
71 + doman doc/tree*.1
72 + einstalldocs
73 + newbashcomp "${FILESDIR}"/${PN}.bashcomp ${PN}
74 +}