Gentoo Archives: gentoo-commits

From: "Amadeusz Piotr Żołnowski" <aidecoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-erlang/p1_oauth2/
Date: Wed, 24 Oct 2018 21:54:26
Message-Id: 1540418034.eede150bda8fa32a248ddd74056aafda3d7ca252.aidecoe@gentoo
1 commit: eede150bda8fa32a248ddd74056aafda3d7ca252
2 Author: Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 24 21:12:59 2018 +0000
4 Commit: Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 24 21:53:54 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eede150b
7
8 dev-erlang/p1_oauth2: Bump version
9
10 Thanks to Rion <rion4ik <AT> gmail.com>.
11
12 Bug: https://bugs.gentoo.org/626260
13 Signed-off-by: Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo.org>
14
15 dev-erlang/p1_oauth2/Manifest | 1 +
16 dev-erlang/p1_oauth2/p1_oauth2-0.6.3.ebuild | 36 +++++++++++++++++++++++++++++
17 2 files changed, 37 insertions(+)
18
19 diff --git a/dev-erlang/p1_oauth2/Manifest b/dev-erlang/p1_oauth2/Manifest
20 index 6b5c307bfce..c6ff35c152f 100644
21 --- a/dev-erlang/p1_oauth2/Manifest
22 +++ b/dev-erlang/p1_oauth2/Manifest
23 @@ -1 +1,2 @@
24 DIST p1_oauth2-0.6.1.tar.gz 212804 BLAKE2B 571341aaa4d3a4bac6ac2f8f46d2e4b9caf5e00622a392635d79ff11b520a3cab71d360220c99a46035ce851974d975d69a71ac9b1be626c9b126941fc4a73cf SHA512 2509d48775579a26178fb5a082e628a8487c986b1b4d4abe974b653a1e0b7605bed934d59f6d62927582bdb95a53ba454816d326d99a77c5360928c4973ade4a
25 +DIST p1_oauth2-0.6.3.tar.gz 213860 BLAKE2B a610f7911ce46c30760dd8da42531ff1f4e4953f3158a42f360cec9090ca9901647bdedff5eacd7416e34bb64987cedcbb675c1c39de3a4172e337ec50c07495 SHA512 634606530f90810fb998baf26d14afc092699144506c9be771e74d5c965698d81b93bdc35ce53ff94d0b3ad1c4557a16660cfe74bc75586fbab2baa45b1d9c46
26
27 diff --git a/dev-erlang/p1_oauth2/p1_oauth2-0.6.3.ebuild b/dev-erlang/p1_oauth2/p1_oauth2-0.6.3.ebuild
28 new file mode 100644
29 index 00000000000..e5eb8b1ecc8
30 --- /dev/null
31 +++ b/dev-erlang/p1_oauth2/p1_oauth2-0.6.3.ebuild
32 @@ -0,0 +1,36 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +inherit rebar
39 +
40 +DESCRIPTION="Erlang OAuth 2.0 implementation"
41 +HOMEPAGE="https://github.com/processone/p1_oauth2"
42 +SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
43 + -> ${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
48 +IUSE="test"
49 +
50 +CDEPEND=">=dev-lang/erlang-17.1"
51 +DEPEND="${CDEPEND}
52 + test? (
53 + >=dev-erlang/meck-0.8.7
54 + >=dev-erlang/proper-1.1_p20150814
55 + )"
56 +RDEPEND="${CDEPEND}"
57 +
58 +DOCS=( CHANGELOG.md README.md )
59 +
60 +src_prepare() {
61 + rebar_src_prepare
62 + rebar_remove_deps rebar.test.config
63 + sed -e '/, warnings_as_errors/d' -i rebar.test.config || die
64 +}
65 +
66 +src_test() {
67 + erebar -C rebar.test.config compile eunit
68 +}