diff options
Diffstat (limited to 'app-crypt/scrypt')
-rw-r--r-- | app-crypt/scrypt/Manifest | 1 | ||||
-rw-r--r-- | app-crypt/scrypt/scrypt-1.3.2.ebuild | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/app-crypt/scrypt/Manifest b/app-crypt/scrypt/Manifest index 2f9633196614..6b44a1a73e92 100644 --- a/app-crypt/scrypt/Manifest +++ b/app-crypt/scrypt/Manifest @@ -1 +1,2 @@ DIST scrypt-1.3.1.tgz 394516 BLAKE2B 91faa22dc317927b92abe26c5e15cd52c409722716076c7cc502a0c6e4e84ceaaf60222b3ef141c6a209f36084df2d7f45d8f19482aa035c3e2442513c4283d9 SHA512 c76c29463d2a4db6b62283daca80bc4124a6272f37f983d472d44251b98da702f1edb16ad15058a8d0ea320c23bc1486892ab25d367d37ec77c38a55ad7e69fe +DIST scrypt-1.3.2.tgz 424414 BLAKE2B aac8dc8360652d5d4d3654d47de961eec99675ee20d8507abf1ffb4de0b7bc8f040cd58cabfd5c0b8c2c197b2302206ea2c747aee1f62a2fe3eaa64e108bce6e SHA512 5f2c4f74cec107b08675c5e287c151d633b3a02f12c71d9484ecb14750b3a45b90e2da9dae9090af59346518492aeab01c215961fd592c4f5e5b944f27d9afc7 diff --git a/app-crypt/scrypt/scrypt-1.3.2.ebuild b/app-crypt/scrypt/scrypt-1.3.2.ebuild new file mode 100644 index 000000000000..a383f68129a6 --- /dev/null +++ b/app-crypt/scrypt/scrypt-1.3.2.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A simple password-based encryption utility using scrypt key derivation function" +HOMEPAGE="http://www.tarsnap.com/scrypt.html" +SRC_URI="http://www.tarsnap.com/scrypt/${P}.tgz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DOCS=( FORMAT ) + +src_test() { + # There's an empty check target, so can't call default. + emake test +} |