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 4F8D213933E for ; Sun, 18 Jul 2021 11:06:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 818BBE0C63; Sun, 18 Jul 2021 11:06:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4190AE0C63 for ; Sun, 18 Jul 2021 11:06:20 +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 1F00B342B32 for ; Sun, 18 Jul 2021 11:06:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 85B4A78A for ; Sun, 18 Jul 2021 11:06:17 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1626606362.bfc0a78fa7c0913651a9745c98931c476f7ce3ce.soap@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.31.ebuild X-VCS-Directories: app-crypt/nwipe/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: bfc0a78fa7c0913651a9745c98931c476f7ce3ce X-VCS-Branch: master Date: Sun, 18 Jul 2021 11:06: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: 5a366aab-57c7-4042-9cab-1de04edfd8cd X-Archives-Hash: 9f2cfd127be8f8c6eed2da3f0d68b8ab commit: bfc0a78fa7c0913651a9745c98931c476f7ce3ce Author: Jakov Smolic sartura hr> AuthorDate: Sun Jul 18 11:06:02 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jul 18 11:06:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfc0a78f app-crypt/nwipe: Version bump to 0.31 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> app-crypt/nwipe/Manifest | 1 + app-crypt/nwipe/nwipe-0.31.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/app-crypt/nwipe/Manifest b/app-crypt/nwipe/Manifest index e022763bbd4..25c2f60c5cf 100644 --- a/app-crypt/nwipe/Manifest +++ b/app-crypt/nwipe/Manifest @@ -1 +1,2 @@ DIST nwipe-0.30.tar.gz 6358657 BLAKE2B 69fdcfaacb32aacc27b375a793bff5b7014979c8097ef3b48c2c307e4bc3a828de7c01b6a58e46346dc58a1b4beee4a408074706175098c364dff7ecf67771d3 SHA512 b6d86d78dafbe6c5e27b00b183673dc77dedcf849ecd169b616c90bcda5180bc10fe072580c13f027abaa5fd840e73034ac75af75fe1cf6eb0756273bf46975f +DIST nwipe-0.31.tar.gz 6360907 BLAKE2B 4e58cb24c16014044268f2abf32133221a94570986b6cee6c1df8be72dbb65a6c8a3e238918b44db873f3501fa217a4926a0ca6e401fe4e7ec1dd0c9b0c4a5e9 SHA512 1a7c30faff69a840f29097d86d9c2551843ad03afbd8c049ae61a836eb5a19934db02e2fde83427859280a2299f996c40510b7ffa22836f49b8da94aabe911f7 diff --git a/app-crypt/nwipe/nwipe-0.31.ebuild b/app-crypt/nwipe/nwipe-0.31.ebuild new file mode 100644 index 00000000000..b5a3312a3fe --- /dev/null +++ b/app-crypt/nwipe/nwipe-0.31.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2021 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=" + sys-block/parted + sys-libs/ncurses:= +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + eautoreconf +}