Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/scrypt/
Date: Mon, 14 Sep 2020 18:29:33
Message-Id: 1600107992.3e1ed5d50ce0a8d75be0755b5243043ba44504e8.sam@gentoo
1 commit: 3e1ed5d50ce0a8d75be0755b5243043ba44504e8
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Mon Aug 31 17:58:11 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 14 18:26:32 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e1ed5d5
7
8 app-crypt/scrypt: bump to 1.3.1, add tests
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
12 Closes: https://github.com/gentoo/gentoo/pull/17350
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 app-crypt/scrypt/Manifest | 1 +
16 app-crypt/scrypt/scrypt-1.3.1.ebuild | 22 ++++++++++++++++++++++
17 2 files changed, 23 insertions(+)
18
19 diff --git a/app-crypt/scrypt/Manifest b/app-crypt/scrypt/Manifest
20 index ec7b1fd64f8..879079184f0 100644
21 --- a/app-crypt/scrypt/Manifest
22 +++ b/app-crypt/scrypt/Manifest
23 @@ -1 +1,2 @@
24 DIST scrypt-1.3.0.tgz 380332 BLAKE2B 4bb2c5b911cd25e80444e7dd6381692a3ddd3dcd3a5f4bcda14c8cc4169f332f2c617175bfd222f03d8e48a3eefd9d01b2d7c3fd6b712b3266b2cc75bee8396b SHA512 199f58adb5231f1ad585dbe8f64d6c54920cee201bd7703bcfc7e64917bf8647f9e35b3835b78c41210fd9af5223a79938f2495e4b48e6a62bfe8721d82492c2
25 +DIST scrypt-1.3.1.tgz 394516 BLAKE2B 91faa22dc317927b92abe26c5e15cd52c409722716076c7cc502a0c6e4e84ceaaf60222b3ef141c6a209f36084df2d7f45d8f19482aa035c3e2442513c4283d9 SHA512 c76c29463d2a4db6b62283daca80bc4124a6272f37f983d472d44251b98da702f1edb16ad15058a8d0ea320c23bc1486892ab25d367d37ec77c38a55ad7e69fe
26
27 diff --git a/app-crypt/scrypt/scrypt-1.3.1.ebuild b/app-crypt/scrypt/scrypt-1.3.1.ebuild
28 new file mode 100644
29 index 00000000000..8cf33735143
30 --- /dev/null
31 +++ b/app-crypt/scrypt/scrypt-1.3.1.ebuild
32 @@ -0,0 +1,22 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +DESCRIPTION="A simple password-based encryption utility using scrypt key derivation function"
39 +HOMEPAGE="http://www.tarsnap.com/scrypt.html"
40 +SRC_URI="http://www.tarsnap.com/scrypt/${P}.tgz"
41 +
42 +LICENSE="BSD-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +DOCS=( FORMAT )
47 +
48 +IUSE="test"
49 +RESTRICT="!test? ( test )"
50 +
51 +src_test() {
52 + default
53 + emake test
54 +}