Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-erlang/p1_oauth2/
Date: Tue, 17 May 2022 20:02:31
Message-Id: 1652817684.56d201115f6e16722539878bab60bf5546538b95.flow@gentoo
1 commit: 56d201115f6e16722539878bab60bf5546538b95
2 Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 17 17:41:27 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Tue May 17 20:01:24 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56d20111
7
8 dev-erlang/p1_oauth2: add 0.6.11
9
10 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
11
12 dev-erlang/p1_oauth2/Manifest | 1 +
13 dev-erlang/p1_oauth2/p1_oauth2-0.6.11.ebuild | 31 ++++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/dev-erlang/p1_oauth2/Manifest b/dev-erlang/p1_oauth2/Manifest
17 index 84b7fba4f6d2..68b00acde1b7 100644
18 --- a/dev-erlang/p1_oauth2/Manifest
19 +++ b/dev-erlang/p1_oauth2/Manifest
20 @@ -1 +1,2 @@
21 DIST p1_oauth2-0.6.10.tar.gz 214205 BLAKE2B 228a616473ff9c6d7ecd5f7aedad3a971fca2b811938382160c9fe24dc949b52c7c1b023343833cc218dc3269ae742a5617ecf6f831fb93616a200e6169eaecc SHA512 a32fdd8e9c85b1b5729f2dadc3f2f6c84479048d94fc41dbf241baac41c3ccd47b12b9e24dabbaf832ac9182f47673db068c55f92d1e750dba42309c0f8d0c25
22 +DIST p1_oauth2-0.6.11.tar.gz 214437 BLAKE2B fadea0a18bb526fc97d19ea6e85c3bb47431ae15d19a139c99cb8c05249398509a84c8ceff12efcda7917f0f4ef9b45c932839e7dfc1804bca8646516b149fe2 SHA512 c97fe256ba3d0c3c18d0ad14dd85f28bed7607b0aa8d56a23e1c87694a10669eb1cd6e0abafff7e366974b2160ef5eb8e65dadc60a85963e3aa4334252db8b6e
23
24 diff --git a/dev-erlang/p1_oauth2/p1_oauth2-0.6.11.ebuild b/dev-erlang/p1_oauth2/p1_oauth2-0.6.11.ebuild
25 new file mode 100644
26 index 000000000000..5529dc1a17da
27 --- /dev/null
28 +++ b/dev-erlang/p1_oauth2/p1_oauth2-0.6.11.ebuild
29 @@ -0,0 +1,31 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit rebar
36 +
37 +DESCRIPTION="Erlang OAuth 2.0 implementation"
38 +HOMEPAGE="https://github.com/processone/p1_oauth2"
39 +SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
40 + -> ${P}.tar.gz"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
45 +IUSE="test"
46 +RESTRICT="!test? ( test )"
47 +
48 +CDEPEND=">=dev-lang/erlang-17.1"
49 +DEPEND="${CDEPEND}
50 + test? (
51 + >=dev-erlang/meck-0.8.7
52 + >=dev-erlang/proper-1.3
53 + )"
54 +RDEPEND="${CDEPEND}"
55 +
56 +DOCS=( CHANGELOG.md README.md )
57 +
58 +src_prepare() {
59 + rebar_src_prepare
60 +}