Gentoo Archives: gentoo-commits

From: "Hanno Böck" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-erlang/fast_tls/
Date: Wed, 01 Apr 2020 09:27:50
Message-Id: 1585733262.967e45debf663656564d09ba1a871524fe6af4d4.hanno@gentoo
1 commit: 967e45debf663656564d09ba1a871524fe6af4d4
2 Author: Hanno Böck <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 1 09:26:14 2020 +0000
4 Commit: Hanno Böck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 1 09:27:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=967e45de
7
8 dev-erlang/fast_tls: Version bump
9
10 Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
11 Package-Manager: Portage-2.3.96, Repoman-2.3.22
12
13 dev-erlang/fast_tls/Manifest | 1 +
14 dev-erlang/fast_tls/fast_tls-1.1.4.ebuild | 24 ++++++++++++++++++++++++
15 2 files changed, 25 insertions(+)
16
17 diff --git a/dev-erlang/fast_tls/Manifest b/dev-erlang/fast_tls/Manifest
18 index fda9a0dedc3..dc77391d542 100644
19 --- a/dev-erlang/fast_tls/Manifest
20 +++ b/dev-erlang/fast_tls/Manifest
21 @@ -1,2 +1,3 @@
22 DIST fast_tls-1.0.26.tar.gz 76348 BLAKE2B 3016d26724119a2b0b6e4ce9691ceeca7009ee758465f7d7203cab526c9cf588cefd859cb452d7f28877a2d3cf4eef26f9941bccb7aee4794006d9c0f4e8561e SHA512 3be4ed4a346c2d20f7a9d080a12e98fcf180c2f25df7a505a798ca8581aee74c4dc2f92b74c1a6866d6b13e65940cf0adfaff3cceccb0fe9fb3f375a3ebcfcd8
23 DIST fast_tls-1.1.2.tar.gz 80657 BLAKE2B 44df81fca2e2a3dac8b4c9dac2506d313aea7d1a75a05b1cc1bd42e237c6ed951306e2acf7169538e3d0e68463fa8142f4d57776a8c86abdbd17f6973600f79e SHA512 79027ba6d80cb6b2bc0d6cd92d3889fa13e7ee746db20582517fc0ce36173b112805a94568a89d718166dfa4b41cd49bf8a6bc505979d4b25a389e87fdc3e4cb
24 +DIST fast_tls-1.1.4.tar.gz 80739 BLAKE2B dcfdf3f894d3d72d587a861a65f7c2c4ab2ec0f72accf274c385a5dab0622d4ab32e9acfee8ce29b9d2082112d496e93a770014e220dc974aadfe0344ab5ef6a SHA512 9bef899ce35d1022c3aaf894dea6e6b53a78fa266d58b07a77a01ad8f3658a5c3d8d2eea5284c4bbcce7726bf46760cec857eea2d11f7cdb4f08741d4dd1295c
25
26 diff --git a/dev-erlang/fast_tls/fast_tls-1.1.4.ebuild b/dev-erlang/fast_tls/fast_tls-1.1.4.ebuild
27 new file mode 100644
28 index 00000000000..cff158b7bfc
29 --- /dev/null
30 +++ b/dev-erlang/fast_tls/fast_tls-1.1.4.ebuild
31 @@ -0,0 +1,24 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +inherit rebar
38 +
39 +DESCRIPTION="TLS/SSL native driver for Erlang and Elixir"
40 +HOMEPAGE="https://github.com/processone/fast_tls"
41 +SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
42 + -> ${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
47 +IUSE="libressl"
48 +
49 +DEPEND=">=dev-erlang/p1_utils-1.0.18
50 + >=dev-lang/erlang-17.1:=
51 + !libressl? ( dev-libs/openssl:0= )
52 + libressl? ( dev-libs/libressl:0= )"
53 +RDEPEND="${DEPEND}"
54 +
55 +DOCS=( CHANGELOG.md README.md )