From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8E217158064 for ; Fri, 3 May 2024 12:36:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B66F8E2AED; Fri, 3 May 2024 12:36:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8FE6AE2AED for ; Fri, 3 May 2024 12:36:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7BA73343088 for ; Fri, 3 May 2024 12:36:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A46DC1765 for ; Fri, 3 May 2024 12:36:17 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1714739602.5635a24b44a19a8a762d20554ff58da9e041b37b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/tree/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/tree/tree-2.1.1-r1.ebuild X-VCS-Directories: app-text/tree/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5635a24b44a19a8a762d20554ff58da9e041b37b X-VCS-Branch: master Date: Fri, 3 May 2024 12:36:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c34ede97-1d02-43d6-9aba-123ea25f9866 X-Archives-Hash: ebd4a6e4d7d5b61ddca532d947f0f730 commit: 5635a24b44a19a8a762d20554ff58da9e041b37b Author: Sam James gentoo org> AuthorDate: Fri May 3 12:32:55 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 3 12:33:22 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5635a24b app-text/tree: drop homebrew bash-completion >=app-shells/bash-completion-2.13.0 installs its own superior one, so go for that, rather than an old Gentoo-local one. Bug: https://bugs.gentoo.org/931129 Signed-off-by: Sam James gentoo.org> app-text/tree/tree-2.1.1-r1.ebuild | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/app-text/tree/tree-2.1.1-r1.ebuild b/app-text/tree/tree-2.1.1-r1.ebuild new file mode 100644 index 000000000000..1fb745f40e2f --- /dev/null +++ b/app-text/tree/tree-2.1.1-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs flag-o-matic + +DESCRIPTION="Lists directories recursively, and produces an indented listing of files" +HOMEPAGE="https://mama.indstate.edu/users/ice/tree/ https://gitlab.com/OldManProgrammer/unix-tree" +SRC_URI="https://gitlab.com/OldManProgrammer/unix-${PN}/-/archive/${PV}/unix-${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~x64-macos" + +S=${WORKDIR}/unix-${P} + +src_compile() { + append-lfs-flags + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS} ${CPPFLAGS}" \ + LDFLAGS="${LDFLAGS}" +} + +src_install() { + dobin tree + doman doc/tree*.1 + einstalldocs +}