Gentoo Archives: gentoo-commits

From: Hanno Boeck <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-erlang/p1_oauth2/
Date: Sat, 31 Aug 2019 15:37:56
Message-Id: 1567265856.63a781de5dcc1316217eceb2bcbdfec06ca0a3c6.hanno@gentoo
1 commit: 63a781de5dcc1316217eceb2bcbdfec06ca0a3c6
2 Author: Hanno <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 31 15:37:36 2019 +0000
4 Commit: Hanno Boeck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 31 15:37:36 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63a781de
7
8 dev-erlang/p1_oauth2: Version bump
9
10 Signed-off-by: Hanno Boeck <hanno <AT> gentoo.org>
11 Package-Manager: Portage-2.3.74, Repoman-2.3.17
12
13 dev-erlang/p1_oauth2/Manifest | 1 +
14 dev-erlang/p1_oauth2/p1_oauth2-0.6.5.ebuild | 35 +++++++++++++++++++++++++++++
15 2 files changed, 36 insertions(+)
16
17 diff --git a/dev-erlang/p1_oauth2/Manifest b/dev-erlang/p1_oauth2/Manifest
18 index c6ff35c152f..f063a2f0eff 100644
19 --- a/dev-erlang/p1_oauth2/Manifest
20 +++ b/dev-erlang/p1_oauth2/Manifest
21 @@ -1,2 +1,3 @@
22 DIST p1_oauth2-0.6.1.tar.gz 212804 BLAKE2B 571341aaa4d3a4bac6ac2f8f46d2e4b9caf5e00622a392635d79ff11b520a3cab71d360220c99a46035ce851974d975d69a71ac9b1be626c9b126941fc4a73cf SHA512 2509d48775579a26178fb5a082e628a8487c986b1b4d4abe974b653a1e0b7605bed934d59f6d62927582bdb95a53ba454816d326d99a77c5360928c4973ade4a
23 DIST p1_oauth2-0.6.3.tar.gz 213860 BLAKE2B a610f7911ce46c30760dd8da42531ff1f4e4953f3158a42f360cec9090ca9901647bdedff5eacd7416e34bb64987cedcbb675c1c39de3a4172e337ec50c07495 SHA512 634606530f90810fb998baf26d14afc092699144506c9be771e74d5c965698d81b93bdc35ce53ff94d0b3ad1c4557a16660cfe74bc75586fbab2baa45b1d9c46
24 +DIST p1_oauth2-0.6.5.tar.gz 213847 BLAKE2B de1b9dc238efacf5682ad12b1b563fc311f1e0515673003286b31f42ebd33fb8dd9e384aed194047cd6ab38d4769ab128e8de5241004ce49f72d56ad9ca22d21 SHA512 5664aba423c85d90321533878b73e58b50d7ef3bc4183c8108c99e075ef4e75041eb28620de4dc14be23dfaac3623a858a9c8e191e54dae62eb9688ea0812312
25
26 diff --git a/dev-erlang/p1_oauth2/p1_oauth2-0.6.5.ebuild b/dev-erlang/p1_oauth2/p1_oauth2-0.6.5.ebuild
27 new file mode 100644
28 index 00000000000..ba3919e1090
29 --- /dev/null
30 +++ b/dev-erlang/p1_oauth2/p1_oauth2-0.6.5.ebuild
31 @@ -0,0 +1,35 @@
32 +# Copyright 1999-2019 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="Erlang OAuth 2.0 implementation"
40 +HOMEPAGE="https://github.com/processone/p1_oauth2"
41 +SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
42 + -> ${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
47 +IUSE="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 +}