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 9AB3C15800F for ; Sun, 12 Feb 2023 04:47:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB8B8E0843; Sun, 12 Feb 2023 04:47:04 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9C3F7E0843 for ; Sun, 12 Feb 2023 04:47:04 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B6AC933BF5D for ; Sun, 12 Feb 2023 04:47:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E1947D8 for ; Sun, 12 Feb 2023 04:47:02 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1676177206.540d42818dcfdfa3c9be9ac737601d79f4622c4d.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/dcfldd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/dcfldd/dcfldd-1.9-r1.ebuild X-VCS-Directories: sys-apps/dcfldd/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 540d42818dcfdfa3c9be9ac737601d79f4622c4d X-VCS-Branch: master Date: Sun, 12 Feb 2023 04:47:02 +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: aa226358-723b-4fd5-84af-f43df8bd3a1c X-Archives-Hash: a3657385bbc2ea925c5ea739ec392c6b commit: 540d42818dcfdfa3c9be9ac737601d79f4622c4d Author: Sebastian Pipping gentoo org> AuthorDate: Sun Feb 12 04:45:50 2023 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sun Feb 12 04:46:46 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=540d4281 sys-apps/dcfldd: Install shipped Bash completion Closes: https://bugs.gentoo.org/893940 Signed-off-by: Sebastian Pipping gentoo.org> sys-apps/dcfldd/dcfldd-1.9-r1.ebuild | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/sys-apps/dcfldd/dcfldd-1.9-r1.ebuild b/sys-apps/dcfldd/dcfldd-1.9-r1.ebuild new file mode 100644 index 000000000000..a5429c9cad6e --- /dev/null +++ b/sys-apps/dcfldd/dcfldd-1.9-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit autotools bash-completion-r1 + +DESCRIPTION="enhanced dd with features for forensics and security" +HOMEPAGE="https://github.com/resurrecting-open-source-projects/dcfldd" +SRC_URI="https://github.com/resurrecting-open-source-projects/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~riscv ~x86" +DOCS=( + AUTHORS + CONTRIBUTING.md + ChangeLog + NEWS + README.md +) + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + newbashcomp doc/dcfldd-bash_completion dcfldd +}