dev-util/rebar: version bump to 2.6.1
authorDirkjan Ochtman <djc@gentoo.org>
Mon, 8 Feb 2016 09:02:53 +0000 (10:02 +0100)
committerDirkjan Ochtman <djc@gentoo.org>
Mon, 8 Feb 2016 09:04:35 +0000 (10:04 +0100)
Package-Manager: portage-2.2.26

dev-util/rebar/rebar-2.6.1.ebuild [new file with mode: 0644]

diff --git a/dev-util/rebar/rebar-2.6.1.ebuild b/dev-util/rebar/rebar-2.6.1.ebuild
new file mode 100644 (file)
index 0000000..bd9cf0c
--- /dev/null
@@ -0,0 +1,29 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit bash-completion-r1
+
+DESCRIPTION="A sophisticated build-tool for Erlang projects that follows OTP principles"
+HOMEPAGE="https://github.com/rebar/rebar"
+SRC_URI="https://github.com/rebar/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-lang/erlang"
+DEPEND="${RDEPEND}"
+
+src_test() {
+       emake xref
+}
+
+src_install() {
+       dobin rebar
+       dodoc rebar.config.sample THANKS
+       dobashcomp priv/shell-completion/bash/${PN}
+}