diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2020-12-12 21:44:34 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-12-16 08:20:47 +0000 |
commit | c913e888625bd8eec9b8314a3e6525cafdf66574 (patch) | |
tree | d1aedf0f63ad1a3dc5902f49ee8d93a36fcc0296 /app-crypt/nwipe | |
parent | app-text/nfoview: simplify ebuild (diff) | |
download | gentoo-c913e888625bd8eec9b8314a3e6525cafdf66574.tar.gz gentoo-c913e888625bd8eec9b8314a3e6525cafdf66574.tar.bz2 gentoo-c913e888625bd8eec9b8314a3e6525cafdf66574.zip |
app-crypt/nwipe: Bump to 0.30
Package-Manager: Portage-3.0.9, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-crypt/nwipe')
-rw-r--r-- | app-crypt/nwipe/Manifest | 1 | ||||
-rw-r--r-- | app-crypt/nwipe/nwipe-0.30.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/app-crypt/nwipe/Manifest b/app-crypt/nwipe/Manifest index 8c45d833b9cc..fbe43195a5d7 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 000000000000..ab47d6428c80 --- /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 +} |