From 5d45b4187fcd7147d35bef30c74e0b7497578e2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakov=20Smoli=C4=87?= Date: Sun, 2 Feb 2025 01:53:51 +0100 Subject: [PATCH] app-crypt/nwipe: add 0.38 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakov Smolić --- app-crypt/nwipe/Manifest | 1 + app-crypt/nwipe/nwipe-0.38.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 app-crypt/nwipe/nwipe-0.38.ebuild diff --git a/app-crypt/nwipe/Manifest b/app-crypt/nwipe/Manifest index 88a94a7ab106c..23fa9b33ce049 100644 --- a/app-crypt/nwipe/Manifest +++ b/app-crypt/nwipe/Manifest @@ -1 +1,2 @@ DIST nwipe-0.37.tar.gz 7294007 BLAKE2B c179d5aab1478211c9160c1587df5c8bae4c8f9061ff52fa7071d9b1dbeecdb7752cde7e7bdf93634b274e0dadda6317705192018fe1d5c7a5408a36d75a9063 SHA512 6255e6ecb67b922da3c06be66903f67c59900f82353c386e76c571b233a32b6c6ec201ec4b9beebe8ec2a0b7dd74700e8e1c90e64643c4b4f96ba01c83b35f49 +DIST nwipe-0.38.tar.gz 7307445 BLAKE2B 12aba995025ed29209073f74fc0e7bbc30cd2776870c031414cce08ca28c1e00dd14b9137ae4c98981f17a993b71fff8e89a7658bc2fdc1b330eaddd00bc655c SHA512 3b9d9026c3f8069a323149b05faaf5e3fdc165698b4ac47eb84085e44cc26623c7c566cfac9913ccd06eadbb1a70f5bf0fd0693f53254526ee14af4262b8adcc diff --git a/app-crypt/nwipe/nwipe-0.38.ebuild b/app-crypt/nwipe/nwipe-0.38.ebuild new file mode 100644 index 0000000000000..d845e4e3bc8d7 --- /dev/null +++ b/app-crypt/nwipe/nwipe-0.38.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Securely erase disks using a variety of recognized methods" +HOMEPAGE="https://github.com/martijnvanbrummelen/nwipe/" +SRC_URI="https://github.com/martijnvanbrummelen/nwipe/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-libs/libconfig:= + sys-apps/hdparm + sys-block/parted + sys-libs/ncurses:= +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + eautoreconf +}