37 lines
721 B
Bash
37 lines
721 B
Bash
|
# Copyright 1999-2021 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=6
|
||
|
|
||
|
inherit rebar
|
||
|
|
||
|
DESCRIPTION="Erlang OAuth 2.0 implementation"
|
||
|
HOMEPAGE="https://github.com/processone/p1_oauth2"
|
||
|
SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
|
||
|
-> ${P}.tar.gz"
|
||
|
|
||
|
LICENSE="MIT"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
|
||
|
IUSE="test"
|
||
|
RESTRICT="!test? ( test )"
|
||
|
|
||
|
CDEPEND=">=dev-lang/erlang-20"
|
||
|
DEPEND="${CDEPEND}
|
||
|
test? (
|
||
|
>=dev-erlang/meck-0.8.7
|
||
|
>=dev-erlang/proper-1.3
|
||
|
)"
|
||
|
RDEPEND="${CDEPEND}"
|
||
|
|
||
|
DOCS=( CHANGELOG.md README.md )
|
||
|
|
||
|
src_prepare() {
|
||
|
rebar_src_prepare
|
||
|
rebar_remove_deps rebar.test.config
|
||
|
}
|
||
|
|
||
|
src_test() {
|
||
|
erebar -C rebar.test.config compile eunit
|
||
|
}
|