Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-go/siphash/
Date: Fri, 08 Feb 2019 15:36:23
Message-Id: 1549640176.be5f5ae7bcbb23c22691451021cda16a6c2074f3.marecki@gentoo
1 commit: be5f5ae7bcbb23c22691451021cda16a6c2074f3
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 8 15:24:58 2019 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 8 15:36:16 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be5f5ae7
7
8 dev-go/siphash: bump to 1.2.1 and EAPI 7
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 dev-go/siphash/Manifest | 1 +
14 dev-go/siphash/siphash-1.2.1.ebuild | 23 +++++++++++++++++++++++
15 2 files changed, 24 insertions(+)
16
17 diff --git a/dev-go/siphash/Manifest b/dev-go/siphash/Manifest
18 index c062986e6e9..5b0d6f3c253 100644
19 --- a/dev-go/siphash/Manifest
20 +++ b/dev-go/siphash/Manifest
21 @@ -1,2 +1,3 @@
22 DIST siphash-1.0.0.tar.gz 4462 BLAKE2B 2939eee829189db0939e2a0ff15701e7bc20b34213a5ea7b0e268a19d8eeb4618b26c11c537fd2902ce7bf3d573845a899f002155274a5172b67472879768cc5 SHA512 e52dc9857974ab362f2d7b2f7389644fbc07e7bb5507a93f138b3f692c1065303846611bb51b3d9c637d851a4d20cc20af146719a553801a8f7e17ec900a736a
23 DIST siphash-1.1.0.tar.gz 10543 BLAKE2B 50f1125024d37c0692616271c60d48c10584fbf1ea52cd6a7d48fba127d0d34561898ef0c507d62570112419265daf98c893eafd93f0c4f19de04a4facabe469 SHA512 f8892d5638417c610a1e06a4f3417438a4cc87f9ed8b432540a1b2fca8fe2a2feed395538f8cfc2b9663b5870a0f91c645aaa68119db603fc05e769d5f3e102b
24 +DIST siphash-1.2.1.tar.gz 10729 BLAKE2B 445e7839565224045ecb920787b7b75441fce6b028c22af6cbc498820e53c174f81851aff4e390f6d318557b720b4f32332b82f9ce4b4ba3a8725d74866a635f SHA512 bb59a152322350ce4d88f3a8795fcb319621f0c5b2e535f251e7c159ea574b22678f0e29c6dc0fde08ff1be628cd7c76534e902e3f1d332009031cae01491e11
25
26 diff --git a/dev-go/siphash/siphash-1.2.1.ebuild b/dev-go/siphash/siphash-1.2.1.ebuild
27 new file mode 100644
28 index 00000000000..19d1c036774
29 --- /dev/null
30 +++ b/dev-go/siphash/siphash-1.2.1.ebuild
31 @@ -0,0 +1,23 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit golang-build golang-vcs-snapshot
38 +
39 +EGO_SRC=github.com/dchest/siphash
40 +EGO_PN=${EGO_SRC}/...
41 +EGIT_COMMIT="v${PV}"
42 +SRC_URI="https://github.com/dchest/siphash/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +DESCRIPTION="Go implementation of SipHash-2.4"
45 +HOMEPAGE="https://github.com/dchest/siphash"
46 +
47 +KEYWORDS="~amd64 ~arm ~x86"
48 +
49 +LICENSE="CC0-1.0"
50 +SLOT="0"
51 +IUSE=""
52 +
53 +DEPEND=""
54 +RDEPEND=""