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 E1C10158015 for ; Sat, 23 Dec 2023 18:45:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0CB2A2BC09D; Sat, 23 Dec 2023 18:45:42 +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 4E0142BC09C for ; Sat, 23 Dec 2023 18:45:41 +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 63AD1342FFC for ; Sat, 23 Dec 2023 18:45:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9217F14AB for ; Sat, 23 Dec 2023 18:45:37 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1703357120.25814d5984571b24308c5942ab529947042dd2a0.jsmolic@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.35.ebuild X-VCS-Directories: app-crypt/nwipe/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 25814d5984571b24308c5942ab529947042dd2a0 X-VCS-Branch: master Date: Sat, 23 Dec 2023 18:45:37 +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: a600ed38-e86c-4628-892c-144cadbd1b86 X-Archives-Hash: 086fadb5bfa7b1568c234688404005a9 commit: 25814d5984571b24308c5942ab529947042dd2a0 Author: Jakov Smolić gentoo org> AuthorDate: Sat Dec 23 18:32:22 2023 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Sat Dec 23 18:45:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25814d59 app-crypt/nwipe: add 0.35 Signed-off-by: Jakov Smolić gentoo.org> app-crypt/nwipe/Manifest | 1 + app-crypt/nwipe/nwipe-0.35.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/app-crypt/nwipe/Manifest b/app-crypt/nwipe/Manifest index 82dc0693e1ce..5bd7b09b5986 100644 --- a/app-crypt/nwipe/Manifest +++ b/app-crypt/nwipe/Manifest @@ -1 +1,2 @@ DIST nwipe-0.34.tar.gz 6377241 BLAKE2B 1fb785b8f3911124c1982284792b943416c6a33a151fe17aadc851478c45a16d0f16881dc6c8ade2b6eaf06710be59bfb6de1d69fed8d4cf7c4442e0b36a6d60 SHA512 8a9a0bba0e888d2578f41c985ba35ecfb9920f32eca089a73c9926afa8538835682c7ada96a720d928bb0902668b774ebe88bb50c67545f55245623f7140e9c0 +DIST nwipe-0.35.tar.gz 7287854 BLAKE2B 86f9894405067518a0120b47ed31c06bfc12a2bcb22cfb7fee50a5668cedc8b0032caae7de30c840eba03542617e72736240c1c787ee3baf70e67c1ebb231574 SHA512 29032f8eaefa4f116edf19503c8af543a3b2aa011f153e0821aeab188a55b6dafdbfe2722990a66f96f3173a7ccb3e42d2ba063c3e245ae52795e0ef2e7c04b2 diff --git a/app-crypt/nwipe/nwipe-0.35.ebuild b/app-crypt/nwipe/nwipe-0.35.ebuild new file mode 100644 index 000000000000..d65ee9b2fa41 --- /dev/null +++ b/app-crypt/nwipe/nwipe-0.35.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2023 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-block/parted + sys-libs/ncurses:= +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + eautoreconf +}