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/p1_oauth2/
Date: Tue, 13 Oct 2020 09:56:44
Message-Id: 1602582997.ab77382fc4e372dcddc9d196b3650b822219477d.hanno@gentoo
1 commit: ab77382fc4e372dcddc9d196b3650b822219477d
2 Author: Hanno Böck <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 13 09:56:37 2020 +0000
4 Commit: Hanno Böck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 13 09:56:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab77382f
7
8 dev-erlang/p1_oauth2: Bump
9
10 Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
11 Package-Manager: Portage-3.0.8, Repoman-3.0.1
12
13 dev-erlang/p1_oauth2/Manifest | 1 +
14 dev-erlang/p1_oauth2/p1_oauth2-0.6.7.ebuild | 36 +++++++++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/dev-erlang/p1_oauth2/Manifest b/dev-erlang/p1_oauth2/Manifest
18 index 1a7930537b7..48a6cf24b28 100644
19 --- a/dev-erlang/p1_oauth2/Manifest
20 +++ b/dev-erlang/p1_oauth2/Manifest
21 @@ -1 +1,2 @@
22 DIST p1_oauth2-0.6.6.tar.gz 213866 BLAKE2B 2b7ff13697658c6ab31a2cab60100758d965ae0f3cbeb878539e42210e54e7cf33a458c645e432790f79ba3fa92ab35a5d6d6136edc14369ac6d8872e16d7f69 SHA512 9680bc96608bc486165d5f77cf6e92e5f9257e0dbea718c739563556c2b485f67152dcd99cbe228addd34b33b2dd6cc9eacc3827f269412f705acd14b2522952
23 +DIST p1_oauth2-0.6.7.tar.gz 213885 BLAKE2B 42f363b3afec9368957bd788f43359a40a5929b7efb22078681caa8827fdb315f4b0063c3004b92bd92da2664d37b860d606e8c14124fe3d214fed2219e98117 SHA512 485db5926f11759ee447e40d2d2e3a9c66f949510b40adeb0c90ab9deac500dd01178e9b65cea6044e389af3881ad3a300222bd879b69b3a55d84ba3d718a166
24
25 diff --git a/dev-erlang/p1_oauth2/p1_oauth2-0.6.7.ebuild b/dev-erlang/p1_oauth2/p1_oauth2-0.6.7.ebuild
26 new file mode 100644
27 index 00000000000..42c445437f3
28 --- /dev/null
29 +++ b/dev-erlang/p1_oauth2/p1_oauth2-0.6.7.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit rebar
37 +
38 +DESCRIPTION="Erlang OAuth 2.0 implementation"
39 +HOMEPAGE="https://github.com/processone/p1_oauth2"
40 +SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
41 + -> ${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
46 +IUSE="test"
47 +RESTRICT="!test? ( test )"
48 +
49 +CDEPEND=">=dev-lang/erlang-17.1"
50 +DEPEND="${CDEPEND}
51 + test? (
52 + >=dev-erlang/meck-0.8.7
53 + >=dev-erlang/proper-1.3
54 + )"
55 +RDEPEND="${CDEPEND}"
56 +
57 +DOCS=( CHANGELOG.md README.md )
58 +
59 +src_prepare() {
60 + rebar_src_prepare
61 + rebar_remove_deps rebar.test.config
62 +}
63 +
64 +src_test() {
65 + erebar -C rebar.test.config compile eunit
66 +}