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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1C0EE1382C5 for ; Wed, 16 Dec 2020 08:21:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 187DFE0948; Wed, 16 Dec 2020 08:21:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F3BD6E0948 for ; Wed, 16 Dec 2020 08:21:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8DB6B34027D for ; Wed, 16 Dec 2020 08:21:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EBAFE49 for ; Wed, 16 Dec 2020 08:21:23 +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: <1608106847.c913e888625bd8eec9b8314a3e6525cafdf66574.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/nwipe/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/nwipe/Manifest app-crypt/nwipe/nwipe-0.30.ebuild X-VCS-Directories: app-crypt/nwipe/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c913e888625bd8eec9b8314a3e6525cafdf66574 X-VCS-Branch: master Date: Wed, 16 Dec 2020 08:21:23 +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: 82d01b13-34e1-436e-8714-bd7352ccd257 X-Archives-Hash: 4dabb0a3498a6d0686c0bc5a5ae9fd33 commit: c913e888625bd8eec9b8314a3e6525cafdf66574 Author: Jakov Smolic sartura hr> AuthorDate: Sat Dec 12 20:44:34 2020 +0000 Commit: Sam James gentoo org> CommitDate: Wed Dec 16 08:20:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c913e888 app-crypt/nwipe: Bump to 0.30 Package-Manager: Portage-3.0.9, Repoman-3.0.1 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: Sam James gentoo.org> app-crypt/nwipe/Manifest | 1 + app-crypt/nwipe/nwipe-0.30.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/app-crypt/nwipe/Manifest b/app-crypt/nwipe/Manifest index 8c45d833b9c..fbe43195a5d 100644 --- a/app-crypt/nwipe/Manifest +++ b/app-crypt/nwipe/Manifest @@ -1 +1,2 @@ DIST nwipe-0.28.tar.gz 849147 BLAKE2B de81c526edc9ce106d48297796e1d42689bafae20be8ac20f6a8eb6474c8202dffdfbad2f91c8282bf5f747921b90402a3a84e411d8a8b2adb0c2e785bfaf315 SHA512 2b6cb6dbcbb51960f726d8ec6c1629fb4675af4b3f7b39ee1fc91244fc9391f4ea23bae5c8794cc92a675ce202be60df900658b6d9a95b5bb399c0e6f009ce69 +DIST nwipe-0.30.tar.gz 6358657 BLAKE2B 69fdcfaacb32aacc27b375a793bff5b7014979c8097ef3b48c2c307e4bc3a828de7c01b6a58e46346dc58a1b4beee4a408074706175098c364dff7ecf67771d3 SHA512 b6d86d78dafbe6c5e27b00b183673dc77dedcf849ecd169b616c90bcda5180bc10fe072580c13f027abaa5fd840e73034ac75af75fe1cf6eb0756273bf46975f diff --git a/app-crypt/nwipe/nwipe-0.30.ebuild b/app-crypt/nwipe/nwipe-0.30.ebuild new file mode 100644 index 00000000000..ab47d6428c8 --- /dev/null +++ b/app-crypt/nwipe/nwipe-0.30.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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=" + sys-block/parted + sys-libs/ncurses:=" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + eautoreconf +}