From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C8EB758974 for ; Mon, 8 Feb 2016 09:05:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 454FC21C05B; Mon, 8 Feb 2016 09:05:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B118921C06E for ; Mon, 8 Feb 2016 09:04:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B65FE33BE93 for ; Mon, 8 Feb 2016 09:04:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 652C28F6 for ; Mon, 8 Feb 2016 09:04:56 +0000 (UTC) From: "Dirkjan Ochtman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dirkjan Ochtman" Message-ID: <1454922275.18371609d16cb8f26af16c07c242aa10f7254f41.djc@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/rebar/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/rebar/rebar-2.6.1.ebuild X-VCS-Directories: dev-util/rebar/ X-VCS-Committer: djc X-VCS-Committer-Name: Dirkjan Ochtman X-VCS-Revision: 18371609d16cb8f26af16c07c242aa10f7254f41 X-VCS-Branch: master Date: Mon, 8 Feb 2016 09:04:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 640df608-58e8-48b6-9597-bc2584bcb11e X-Archives-Hash: 321370f5524a478f1bf78ad611b32833 commit: 18371609d16cb8f26af16c07c242aa10f7254f41 Author: Dirkjan Ochtman gentoo org> AuthorDate: Mon Feb 8 09:02:53 2016 +0000 Commit: Dirkjan Ochtman gentoo org> CommitDate: Mon Feb 8 09:04:35 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18371609 dev-util/rebar: version bump to 2.6.1 Package-Manager: portage-2.2.26 dev-util/rebar/rebar-2.6.1.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-util/rebar/rebar-2.6.1.ebuild b/dev-util/rebar/rebar-2.6.1.ebuild new file mode 100644 index 0000000..bd9cf0c --- /dev/null +++ b/dev-util/rebar/rebar-2.6.1.ebuild @@ -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} +}